Skip to content

Commit

Permalink
[FIX] website, *: enforce correct UI text-muted color
Browse files Browse the repository at this point in the history
* 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 #28666
  • Loading branch information
qsm-odoo committed Nov 14, 2018
1 parent aa18aaa commit 6b9625e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down
1 change: 1 addition & 0 deletions addons/website/static/src/scss/website.ui.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6b9625e

Please sign in to comment.