]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
add css custom properties for the left menu
authorRigel Kent <sendmemail@rigelk.eu>
Tue, 11 Sep 2018 20:55:41 +0000 (22:55 +0200)
committerRigel Kent <sendmemail@rigelk.eu>
Thu, 13 Sep 2018 12:33:17 +0000 (14:33 +0200)
client/src/app/menu/menu.component.scss
client/src/sass/application.scss
client/src/sass/include/_variables.scss

index 0f98da0e29e450dd89c98554a3d6fa3f369e76c3..3e072279f1b66bd603c38679fbaff3b636d0c114 100644 (file)
 }
 
 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;
index 8d2bfb0776353154b343beab3c9afe7fab459d89..caf039b6d4feaaa80e5f910514068b6e7b3235f9 100644 (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};
index 3514bdb9baca63d123dad981f1f48cf0891a03cb..fdf33b12a9b36ec0181998df2b2950754d695338 100644 (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)