]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/menu/menu.component.scss
move theme toggle icon to the right
[github/Chocobozzz/PeerTube.git] / client / src / app / menu / menu.component.scss
index f8c7d8519e96a2a5f0e914607aed521527be38df..592860e122da09b730a0b0ac9f9d182135020c28 100644 (file)
@@ -6,21 +6,25 @@
   height: calc(100vh - #{$header-height});
   padding: 0;
   width: $menu-width;
+  z-index: 10000;
 }
 
 menu {
-  background-color: $black-background;
+  background-color: $menu-background;
   margin: 0;
   padding: 0;
   height: 100%;
   white-space: nowrap;
   text-overflow: ellipsis;
   overflow: hidden;
-  z-index: 1000;
   color: $menu-color;
-  overflow-y: auto;
   display: flex;
   flex-direction: column;
+  width: 100%;
+
+  &:focus, &:hover {
+    overflow-y: auto;
+  }
 
   .top-menu {
     flex-grow: 1;
@@ -118,7 +122,7 @@ menu {
     a {
       display: flex;
       align-items: center;
-      padding-left: $menu-left-padding;
+      padding-left: $menu-lateral-padding;
       color: $menu-color;
       cursor: pointer;
       height: 40px;
@@ -186,10 +190,11 @@ menu {
   }
 
   .footer {
-    margin-bottom: 15px;
-    padding-left: $menu-left-padding;
+    padding-bottom: 15px;
+    padding-left: $menu-lateral-padding;
+    padding-right: $menu-lateral-padding;
 
-    .language {
+    .language, .color-palette {
       display: inline-block;
       color: $menu-bottom-color;
       cursor: pointer;
@@ -209,6 +214,16 @@ menu {
           background-image: url('../../assets/images/menu/language.png');
         }
 
+        &.icon-moonsun  {
+          margin-left: 10px;
+          position: relative;
+          top: -1px;
+          width: 24px;
+          height: 24px;
+
+          background-image: url('../../assets/images/menu/moonsun.svg');
+        }
+
         &:hover {
           opacity: 1;
         }
@@ -216,3 +231,13 @@ menu {
     }
   }
 }
+
+@media screen and (max-width: 400px) {
+  .menu-wrapper {
+    width: 100% !important;
+  }
+
+  .top-menu {
+    width: 100%;
+  }
+}