Integrate light theme's `menu-2ndlvl-color` using a media query

This commit is contained in:
Johannes Meyer 2021-06-23 11:37:10 +02:00
parent ff4dafe091
commit 8bb50b3725
3 changed files with 2 additions and 3 deletions

View File

@ -114,6 +114,7 @@
--menu-search-hover-bg-color: darken(#DEECF1, 20%); --menu-search-hover-bg-color: darken(#DEECF1, 20%);
--menu-active-bg-color: #EDF7FC; --menu-active-bg-color: #EDF7FC;
--menu-active-hover-bg-color: darken(#EDF7FC, 20%); --menu-active-hover-bg-color: darken(#EDF7FC, 20%);
--menu-2ndlvl-color: #7E8182;
--text-color: #535353; --text-color: #535353;
--text-color-light: fade(#535353, 75%); --text-color-light: fade(#535353, 75%);

View File

@ -139,7 +139,7 @@
line-height: 1.833em; // 22px line-height: 1.833em; // 22px
> a { > a {
color: @menu-2ndlvl-color; .var(color, menu-2ndlvl-color);
font-size: @font-size-small; font-size: @font-size-small;
padding: 0.364em 0.545em 0.364em (@icon-width + .75em)/@font-size-small; padding: 0.364em 0.545em 0.364em (@icon-width + .75em)/@font-size-small;
} }

View File

@ -5,7 +5,5 @@
@gray-lighter: #EEEEEE; @gray-lighter: #EEEEEE;
@gray-lightest: #F7F7F7; @gray-lightest: #F7F7F7;
@menu-2ndlvl-color: #7E8182;
@low-sat-blue: #DEECF1; @low-sat-blue: #DEECF1;
@low-sat-blue-dark: #c0cccd; @low-sat-blue-dark: #c0cccd;