From 82af5034a64df7eb3ba19cd5e38ce9aafbd808ba Mon Sep 17 00:00:00 2001 From: MuK IT GmbH Date: Mon, 10 Dec 2018 12:17:07 +0000 Subject: [PATCH] publish muk_web_theme - 12.0 --- muk_web_theme/__manifest__.py | 2 +- muk_web_theme/static/src/scss/form_view.scss | 11 +++++++---- muk_web_theme/static/src/scss/variables.scss | 8 +++++++- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/muk_web_theme/__manifest__.py b/muk_web_theme/__manifest__.py index 833029b..4987239 100644 --- a/muk_web_theme/__manifest__.py +++ b/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.4", + "version": "12.0.1.1.5", "category": "Themes/Backend", "license": "AGPL-3", "author": "MuK IT", diff --git a/muk_web_theme/static/src/scss/form_view.scss b/muk_web_theme/static/src/scss/form_view.scss index 879d9b6..406114f 100644 --- a/muk_web_theme/static/src/scss/form_view.scss +++ b/muk_web_theme/static/src/scss/form_view.scss @@ -124,15 +124,18 @@ flex-flow: row nowrap; height: 100%; .o_form_sheet_bg { - flex: 1 1 65%; + flex: 1 1 auto; overflow: auto; } .o_chatter { border-left: 1px solid gray('400'); - flex: 1 1 35%; - max-width: 40%; - min-width: 30%; + min-width: $mk-chatter-width; + max-width: 30%; + flex: 1 1 auto; overflow: auto; + .o_followers_title_box { + margin-left: 0; + } } } } diff --git a/muk_web_theme/static/src/scss/variables.scss b/muk_web_theme/static/src/scss/variables.scss index 81f2abd..b722e50 100644 --- a/muk_web_theme/static/src/scss/variables.scss +++ b/muk_web_theme/static/src/scss/variables.scss @@ -43,4 +43,10 @@ $font-family-sans-serif: 'Roboto'; //---------------------------------------------------------- $mk-sidebar-large-width: 146px; -$mk-sidebar-small-width: 46px; \ No newline at end of file +$mk-sidebar-small-width: 46px; + +//---------------------------------------------------------- +// Chatter +//---------------------------------------------------------- + +$mk-chatter-width: 550px; \ No newline at end of file