Browse Source

May 30: [FIX] Bug Fixed 'advanced_chatter_view'

pull/317/head
RisvanaCybro 1 year ago
parent
commit
ea2e04e0c7
  1. 2
      advanced_chatter_view/__manifest__.py
  2. 4
      advanced_chatter_view/doc/RELEASE_NOTES.md
  3. 14
      advanced_chatter_view/static/src/css/chatter_topbar.css

2
advanced_chatter_view/__manifest__.py

@ -21,7 +21,7 @@
############################################################################# #############################################################################
{ {
'name': 'Advanced Chatter View', 'name': 'Advanced Chatter View',
'version': '17.0.1.0.0', 'version': '17.0.1.0.1',
'category': 'Discuss', 'category': 'Discuss',
'summary': """Advanced odoo chatter view.""", 'summary': """Advanced odoo chatter view.""",
'description': """This module is used to view advanced chatter.""", 'description': """This module is used to view advanced chatter.""",

4
advanced_chatter_view/doc/RELEASE_NOTES.md

@ -1,6 +1,6 @@
## Module <advanced_chatter_view> ## Module <advanced_chatter_view>
#### 11.12.2023 #### 30.05.2024
#### Version 17.0.1.0.0 #### Version 17.0.1.0.1
#### ADD #### ADD
- Initial commit for Advanced Chatter View - Initial commit for Advanced Chatter View

14
advanced_chatter_view/static/src/css/chatter_topbar.css

@ -12,11 +12,10 @@
width: 80px !important; width: 80px !important;
height: calc(100vh - 35px); height: calc(100vh - 35px);
background-color: white; background-color: white;
position: fixed;
top: 35px;
right: 0; right: 0;
align-items: flex-start; align-items: flex-start;
justify-content: center; justify-content: center;
position: absolute;
} }
@media screen and (max-width: 767.98px) { @media screen and (max-width: 767.98px) {
@ -52,6 +51,7 @@
.icon:hover + .hide { .icon:hover + .hide {
display: block; display: block;
} }
.o_form_editable { .o_form_editable {
flex-direction: row !important; flex-direction: row !important;
} }
@ -60,31 +60,41 @@
.o_form_editable { .o_form_editable {
flex-direction: column !important; flex-direction: column !important;
} }
.o-mail-Form-chatter:not(.o-aside):not(.o-full-width) .o_ChatterContainer { .o-mail-Form-chatter:not(.o-aside):not(.o-full-width) .o_ChatterContainer {
display: flex; display: flex;
margin-top: 22px; margin-top: 22px;
padding-bottom: initial; padding-bottom: initial;
} }
.icon { .icon {
margin-left: 48px; margin-left: 48px;
width: 457px; width: 457px;
} }
.hide { .hide {
margin-top: 62px; margin-top: 62px;
margin-left: -53px; margin-left: -53px;
} }
.chatter-remove-position .o_ChatterContainer { .chatter-remove-position .o_ChatterContainer {
display: unset !important; display: unset !important;
} }
} }
.o_form_statusbar { .o_form_statusbar {
width: calc(100vw - 120px); width: calc(100vw - 120px);
} }
.o_form_view .o_form_sheet_bg { .o_form_view .o_form_sheet_bg {
max-width: unset !important; max-width: unset !important;
} }
.o_form_sheet { .o_form_sheet {
margin: 1rem auto !important; margin: 1rem auto !important;
max-width: 1543px; max-width: 1543px;
} }
.o_form_view .o_form_renderer {
position: relative;
}
Loading…
Cancel
Save