From 6b9625e0980ca25163ac2f21157aed4e08f1c1cf Mon Sep 17 00:00:00 2001 From: qsm-odoo <qsm@odoo.com> Date: Wed, 14 Nov 2018 10:59:34 +0000 Subject: [PATCH] [FIX] website, *: enforce correct UI text-muted color * web_editor - Restore the preservation of Odoo text-muted color (the rule became !important with BS4 and had thus to become !important in the preservation mixin). - Preserve base design in the "new content" menu (which now uses text-muted). Indeed, in some themes, the "new content" links were not even visible anymore. closes odoo/odoo#28666 --- addons/web_editor/static/src/scss/web_editor.variables.scss | 2 +- addons/website/static/src/scss/website.ui.scss | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/web_editor/static/src/scss/web_editor.variables.scss b/addons/web_editor/static/src/scss/web_editor.variables.scss index 6c4336581a9f..9bb6b705c8d6 100644 --- a/addons/web_editor/static/src/scss/web_editor.variables.scss +++ b/addons/web_editor/static/src/scss/web_editor.variables.scss @@ -71,7 +71,7 @@ $o-we-switch-inactive-color: $o-we-color-paper !default; color: $o-we-color-divider; .text-muted { - color: $o-we-color-text-normal; + color: $o-we-color-text-normal !important; } } diff --git a/addons/website/static/src/scss/website.ui.scss b/addons/website/static/src/scss/website.ui.scss index 1d1c42203b49..d9554a20a1c0 100644 --- a/addons/website/static/src/scss/website.ui.scss +++ b/addons/website/static/src/scss/website.ui.scss @@ -298,6 +298,7 @@ body .modal { } #o_new_content_menu_choices { + @include o-w-preserve-base; @include o-position-absolute($o-navbar-height, 0, 0, 0); position: fixed; display: flex; -- GitLab