Browse Source

May 30: [FIX] Bug Fixed 'advanced_chatter_view'

pull/317/head
RisvanaCybro 11 months ago
parent
commit
ea2e04e0c7
  1. 2
      advanced_chatter_view/__manifest__.py
  2. 4
      advanced_chatter_view/doc/RELEASE_NOTES.md
  3. 56
      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

56
advanced_chatter_view/static/src/css/chatter_topbar.css

@ -1,4 +1,4 @@
.icon{ .icon {
background-color: #F8F8F8; background-color: #F8F8F8;
border-radius: 50%; border-radius: 50%;
width: 55px; width: 55px;
@ -9,17 +9,16 @@
.o-mail-Form-chatter { .o-mail-Form-chatter {
width: 80px !important; width: 80px !important;
height: calc(100vh - 35px); height: calc(100vh - 35px);
background-color: white; background-color: white;
position: fixed; right: 0;
top: 35px; align-items: flex-start;
right: 0; justify-content: center;
align-items: flex-start; position: absolute;
justify-content: center;
} }
@media screen and (max-width: 767.98px){ @media screen and (max-width: 767.98px) {
.o-mail-Form-chatter { .o-mail-Form-chatter {
width: 100% !important; width: 100% !important;
height: unset; height: unset;
@ -29,15 +28,15 @@
} }
} }
.chatter-remove-position{ .chatter-remove-position {
position: relative !important; position: relative !important;
} }
.o_form_sheet_bg{ .o_form_sheet_bg {
width: calc(100vw - 80px); width: calc(100vw - 80px);
} }
.o_ChatterContainer{ .o_ChatterContainer {
display: grid; display: grid;
justify-content: center; justify-content: center;
padding-bottom: 80px; padding-bottom: 80px;
@ -46,45 +45,56 @@
} }
.hide { .hide {
display: none; display: none;
} }
.icon:hover + .hide { .icon:hover + .hide {
display: block; display: block;
} }
.o_form_editable { .o_form_editable {
flex-direction: row!important; flex-direction: row !important;
} }
@media(max-width:768px){ @media (max-width: 768px) {
.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