add css custom properties for the left menu

pull/941/head
Rigel Kent 2018-09-11 22:55:41 +02:00
parent 6f0c46be8c
commit 1d9d9cfdcf
No known key found for this signature in database
GPG Key ID: EA12971B0E438F36
3 changed files with 8 additions and 4 deletions

View File

@ -10,14 +10,14 @@
}
menu {
background-color: $menu-background;
background-color: var(--menuBackgroundColor);
margin: 0;
padding: 0;
height: 100%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
color: $menu-color;
color: var(--menuForegroundColor);
display: flex;
flex-direction: column;
width: 100%;
@ -52,7 +52,7 @@ menu {
.logged-in-username {
font-size: 16px;
font-weight: $font-semibold;
color: $menu-color;
color: var(--menuForegroundColor);
cursor: pointer;
@include disable-default-a-behaviour;
@ -124,7 +124,7 @@ menu {
display: flex;
align-items: center;
padding-left: $menu-lateral-padding;
color: $menu-color;
color: var(--menuForegroundColor);
cursor: pointer;
height: 40px;
font-size: 16px;

View File

@ -26,6 +26,8 @@ body {
--mainHoverColor: #{$orange-hoover-color};
--mainBackgroundColor: #{$bg-color};
--mainForegroundColor: #{$fg-color};
--menuBackgroundColor: #{$menu-background};
--menuForegroundColor: #{$menu-color};
--submenuColor: #{$sub-menu-color};
--inputColor: #{$input-background-color};
--inputPlaceholderColor: #{$input-placeholder-color};

View File

@ -58,6 +58,8 @@ $variables: (
--mainHoverColor: var(--mainHoverColor),
--mainBackgroundColor: var(--mainBackgroundColor),
--mainForegroundColor: var(--mainForegroundColor),
--menuBackgroundColor: var(--menuBackgroundColor),
--menuForegroundColor: var(--menuForegroundColor),
--submenuColor: var(--submenuColor),
--inputColor: var(--inputColor),
--inputPlaceholderColor: var(--inputPlaceholderColor)