Browse Source

publish muk_web_theme - 12.0

pull/35/head
MuK IT GmbH 5 years ago
parent
commit
64b80408cf
  1. 2
      muk_web_theme/__manifest__.py
  2. 7
      muk_web_theme/static/src/scss/form_view.scss
  3. 6
      muk_web_theme/static/src/scss/variables.scss

2
muk_web_theme/__manifest__.py

@ -20,7 +20,7 @@
{
"name": "MuK Backend Theme",
"summary": "Odoo 12.0 community backend theme",
"version": "12.0.1.1.5",
"version": "12.0.1.1.6",
"category": "Themes/Backend",
"license": "AGPL-3",
"author": "MuK IT",

7
muk_web_theme/static/src/scss/form_view.scss

@ -118,19 +118,20 @@
}
.mk_chatter_position_sided {
@include media-breakpoint-up(xl) {
@include media-breakpoint-up(xxl, $o-extra-grid-breakpoints) {
.o_form_view:not(.o_form_nosheet) {
display: flex;
flex-flow: row nowrap;
height: 100%;
.o_form_sheet_bg {
min-width: $mk-form-min-width;
flex: 1 1 auto;
overflow: auto;
}
.o_chatter {
border-left: 1px solid gray('400');
min-width: $mk-chatter-width;
max-width: 30%;
min-width: $mk-chatter-min-width;
max-width: $mk-chatter-max-width;
flex: 1 1 auto;
overflow: auto;
.o_followers_title_box {

6
muk_web_theme/static/src/scss/variables.scss

@ -46,7 +46,9 @@ $mk-sidebar-large-width: 146px;
$mk-sidebar-small-width: 46px;
//----------------------------------------------------------
// Chatter
// Sided Chatter
//----------------------------------------------------------
$mk-chatter-width: 550px;
$mk-form-min-width: 835px;
$mk-chatter-min-width: 550px;
$mk-chatter-max-width: 600px;
Loading…
Cancel
Save