From 5a00e43fc3c2a4bb57765a91b5d2a5b1f5bc1185 Mon Sep 17 00:00:00 2001 From: MuK IT GmbH Date: Sat, 22 Jun 2019 09:54:22 +0000 Subject: [PATCH] publish muk_web_theme - 12.0 --- muk_web_theme/__manifest__.py | 2 +- muk_web_theme/static/src/scss/list_view.scss | 6 ++++-- muk_web_theme/static/src/scss/variables.scss | 8 +++++++- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/muk_web_theme/__manifest__.py b/muk_web_theme/__manifest__.py index eefeeac..bd1ee42 100644 --- a/muk_web_theme/__manifest__.py +++ b/muk_web_theme/__manifest__.py @@ -19,7 +19,7 @@ { "name": "MuK Backend Theme", "summary": "Odoo Community Backend Theme", - "version": "12.0.1.5.6", + "version": "12.0.1.5.7", "category": "Themes/Backend", "license": "AGPL-3", "author": "MuK IT", diff --git a/muk_web_theme/static/src/scss/list_view.scss b/muk_web_theme/static/src/scss/list_view.scss index f6e448d..6aff11b 100644 --- a/muk_web_theme/static/src/scss/list_view.scss +++ b/muk_web_theme/static/src/scss/list_view.scss @@ -18,7 +18,7 @@ **********************************************************************************/ .o_list_view.table { - overflow: hidden; + overflow-x: hidden; } .o_list_view.table, @@ -61,7 +61,6 @@ } .o_list_view tfoot { - background-color: $o-brand-odoo; color: white; cursor: default; font-weight: normal; @@ -72,11 +71,14 @@ overflow-x: initial; > .o_list_view { thead, thead tr:nth-child(1) th { + border-bottom: solid 1px gray('300'); + background-color: white; position: sticky; z-index: 1; top: 0; } tfoot, tfoot tr:nth-child(1) td { + background-color: $o-list-footer-bg-color; position: sticky; bottom: 0; } diff --git a/muk_web_theme/static/src/scss/variables.scss b/muk_web_theme/static/src/scss/variables.scss index cb0c50c..7410d27 100644 --- a/muk_web_theme/static/src/scss/variables.scss +++ b/muk_web_theme/static/src/scss/variables.scss @@ -51,4 +51,10 @@ $mk-sidebar-small-width: 46px; $mk-form-min-width: 835px; $mk-chatter-min-width: 550px; -$mk-chatter-max-width: 600px; \ No newline at end of file +$mk-chatter-max-width: 600px; + +//---------------------------------------------------------- +// List View +//---------------------------------------------------------- + +$o-list-footer-bg-color: $o-brand-odoo; \ No newline at end of file