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',
'version': '17.0.1.0.0',
'version': '17.0.1.0.1',
'category': 'Discuss',
'summary': """Advanced odoo chatter view.""",
'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>
#### 11.12.2023
#### Version 17.0.1.0.0
#### 30.05.2024
#### Version 17.0.1.0.1
#### ADD
- 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;
border-radius: 50%;
width: 55px;
@ -9,17 +9,16 @@
.o-mail-Form-chatter {
width: 80px !important;
height: calc(100vh - 35px);
background-color: white;
position: fixed;
top: 35px;
right: 0;
align-items: flex-start;
justify-content: center;
width: 80px !important;
height: calc(100vh - 35px);
background-color: white;
right: 0;
align-items: flex-start;
justify-content: center;
position: absolute;
}
@media screen and (max-width: 767.98px){
@media screen and (max-width: 767.98px) {
.o-mail-Form-chatter {
width: 100% !important;
height: unset;
@ -29,15 +28,15 @@
}
}
.chatter-remove-position{
.chatter-remove-position {
position: relative !important;
}
.o_form_sheet_bg{
.o_form_sheet_bg {
width: calc(100vw - 80px);
}
.o_ChatterContainer{
.o_ChatterContainer {
display: grid;
justify-content: center;
padding-bottom: 80px;
@ -46,45 +45,56 @@
}
.hide {
display: none;
display: none;
}
.icon:hover + .hide {
display: block;
display: block;
}
.o_form_editable {
flex-direction: row!important;
flex-direction: row !important;
}
@media(max-width:768px){
@media (max-width: 768px) {
.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;
margin-top: 22px;
padding-bottom: initial;
}
.icon {
margin-left: 48px;
width: 457px;
}
.hide {
margin-top: 62px;
margin-left: -53px;
}
.chatter-remove-position .o_ChatterContainer{
.chatter-remove-position .o_ChatterContainer {
display: unset !important;
}
}
.o_form_statusbar{
.o_form_statusbar {
width: calc(100vw - 120px);
}
.o_form_view .o_form_sheet_bg{
.o_form_view .o_form_sheet_bg {
max-width: unset !important;
}
.o_form_sheet{
.o_form_sheet {
margin: 1rem auto !important;
max-width: 1543px;
}
.o_form_view .o_form_renderer {
position: relative;
}
Loading…
Cancel
Save