]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/menu/menu.component.scss
Merge remote-tracking branch 'weblate/develop' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / menu / menu.component.scss
index f30b8941391b76446aa31b7fe8902e1ccb0e92f4..8a8094fbbbc751c321c516d16fb1d987bffc12b3 100644 (file)
 @import '_variables';
 @import '_mixins';
 
+$menu-link-icon-size: 22px;
+$menu-link-icon-margin-right: 18px;
+
+@mixin menu-link {
+  display: flex;
+  align-items: center;
+  padding-left: $menu-lateral-padding;
+  color: pvar(--menuForegroundColor);
+  cursor: pointer;
+  font-size: 16px;
+  white-space: normal;
+  word-break: break-word;
+  padding-right: 20px;
+  transition: background-color .1s ease-in-out;
+
+  &.active {
+    background-color: rgba(255, 255, 255, 0.15);
+  }
+
+  &:hover, &.focus-visible {
+    background-color: rgba(255, 255, 255, 0.10);
+  }
+
+  my-global-icon {
+    @include apply-svg-color(#808080);
+
+    display: flex;
+    width: $menu-link-icon-size;
+    height: $menu-link-icon-size;
+    margin-right: $menu-link-icon-margin-right;
+  }
+}
+
 .menu-wrapper {
   position: fixed;
   height: calc(100vh - #{$header-height});
   padding: 0;
   width: $menu-width;
-  z-index: 10000;
+  z-index: z(menu);
+  scrollbar-color: pvar(--actionButtonColor) pvar(--menuBackgroundColor);
 }
 
 menu {
-  background-color: var(--menuBackgroundColor);
-  margin: 0;
-  padding: 0;
-  height: 100%;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  overflow: auto;
-  color: var(--menuForegroundColor);
+  @include ellipsis;
+
+  background-color: pvar(--menuBackgroundColor);
+  color: pvar(--menuForegroundColor);
+
   display: flex;
   flex-direction: column;
+  height: 100%;
   width: 100%;
+  margin: 0;
+  padding: 0;
 
   &:focus, &:hover {
     overflow-y: auto;
   }
 
-  .top-menu {
-    flex-grow: 1;
-    width: $menu-width;
+  @media not all and (hover: hover) and (pointer: fine) {
+    overflow-y: auto;
   }
 
-  .logged-in-block {
-    height: 100px;
-    background-color: rgba(255, 255, 255, 0.15);
+  &.is-logged-in {
+    .panel-block {
+      margin-bottom: 20px;
+    }
+
+    .block-title {
+      margin-bottom: 15px;
+    }
+  }
+}
+
+.top-menu {
+  flex-grow: 1;
+  width: $menu-width;
+}
+
+.logged-in-block {
+  margin-bottom: 20px;
+  background-color: rgba(255, 255, 255, 0.15);
+
+  > div:first-child {
+    height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
-    margin-bottom: 35px;
 
     .logged-in-info {
+      @include ellipsis;
+
       flex-grow: 1;
 
-      .logged-in-username {
+      .logged-in-display-name {
         font-size: 16px;
         font-weight: $font-semibold;
-        color: var(--menuForegroundColor);
+        color: pvar(--menuForegroundColor);
         cursor: pointer;
 
         @include disable-default-a-behaviour;
       }
 
-      .logged-in-email {
+      .logged-in-username {
+        @include ellipsis;
+
         font-size: 13px;
         color: #C6C6C6;
-        white-space: nowrap;
-        overflow: hidden;
-        text-overflow: ellipsis;
         max-width: 140px;
+        cursor: pointer;
       }
     }
 
     .logged-in-more {
       margin-right: 20px;
 
-      .glyphicon {
+      my-global-icon.dropdown-toggle {
         cursor: pointer;
-        font-size: 18px;
 
         &::after {
           border: none;
         }
+
+        ::ng-deep {
+          @include apply-svg-color(pvar(--menuForegroundColor));
+        }
       }
     }
   }
 
-  .button-block {
-    margin: 30px 25px 35px 25px;
+  .logged-in-menu {
+    display: flex;
+    flex-direction: column;
+    align-items: flex-start;
+    border-top: 1px solid var(--greyForegroundColor);
 
-    .login-button {
-      @include peertube-button-link;
-      @include orange-button;
+    a {
+      @include menu-link;
+      @include disable-default-a-behaviour;
 
-      display: block;
+      $icon-size: 13px;
+      $additional-margin: ($menu-link-icon-size - $icon-size) / 2;
+
+      font-size: 14px;
       width: 100%;
-      margin-bottom: 10px;
-    }
+      min-height: 35px;
 
-    .create-account-button {
-      @include peertube-button-link;
+      my-global-icon {
+        width: $icon-size;
+        height: $icon-size;
 
-      display: block;
-      width: 100%;
+        // Keep aligned with other icons
+        margin-left: $additional-margin;
 
-      color: #fff;
-      background-color: rgba(255, 255, 255, 0.25);
+        &[iconName="channel"] {
+          margin-top: -2px;
+        }
+      }
 
-      &:hover {
-        background-color: rgba(255, 255, 255, 0.28);
+      &.active,
+      &:hover,
+      &:focus-visible {
+        my-global-icon {
+          @include apply-svg-color(var(--mainBackgroundColor));
+        }
+      }
+
+      &.active {
+        $border-left-width: 4px;
+
+        font-weight: $font-semibold;
+        border-left: $border-left-width solid var(--mainColor);
+
+        my-global-icon {
+          margin-left: $additional-margin - $border-left-width;
+        }
       }
     }
   }
+}
+
+.login-buttons-block {
+  margin: 30px 25px 35px 25px;
+
+  .login-button {
+    @include peertube-button-link;
+    @include orange-button;
+
+    display: block;
+    width: 100%;
+    margin-bottom: 10px;
+  }
+
+  .create-account-button {
+    @include peertube-button-link;
+
+    display: block;
+    width: 100%;
+
+    color: #fff;
+    background-color: rgba(255, 255, 255, 0.25);
+
+    &:hover {
+      background-color: rgba(255, 255, 255, 0.28);
+    }
+  }
+}
+
+.in-my-library,
+.on-instance,
+.footer-block {
+  margin-bottom: 15px;
 
   .block-title {
     text-transform: uppercase;
@@ -108,144 +220,145 @@ menu {
     font-size: 13px;
     margin-bottom: 25px;
     margin-left: 26px;
-  }
-
-  .panel-block {
-    margin-bottom: 45px;
-
-    a {
-      display: flex;
-      align-items: center;
-      padding-left: $menu-lateral-padding;
-      color: var(--menuForegroundColor);
-      cursor: pointer;
-      height: 40px;
-      font-size: 16px;
-      transition: background-color .1s ease-in-out;
-      @include disable-default-a-behaviour;
-
-      &.active {
-        background-color: rgba(255, 255, 255, 0.15);
-      }
 
-      &:hover, &.focus-visible {
-        background-color: rgba(255, 255, 255, 0.10);
-      }
+    @include ellipsis;
 
-      .icon {
-        @include icon(22px);
+    margin-right: 30px;
+  }
 
-        margin-right: 18px;
+  a {
+    @include menu-link;
+    @include disable-default-a-behaviour;
 
-        &.icon-videos-subscriptions {
-          position: relative;
-          top: -1px;
-          background-image: url('../../assets/images/menu/subscriptions.svg');
-        }
+    min-height: 40px;
 
-        &.icon-videos-overview {
-          position: relative;
-          background-image: url('../../assets/images/menu/globe.svg');
-        }
+    my-global-icon {
+      &[iconName="playlists"] {
+        height: 24px;
+        width: 24px;
 
-        &.icon-videos-trending {
-          position: relative;
-          top: -1px;
-          background-image: url('../../assets/images/menu/trending.svg');
-        }
+        margin-right: 16px;
+      }
 
-        &.icon-videos-recently-added {
-          width: 23px;
-          height: 23px;
-          background-image: url('../../assets/images/menu/recently-added.svg');
-        }
+      &[iconName="videos"] {
+        position: relative;
+        right: -1px;
+      }
+    }
+  }
+}
 
-        &.icon-videos-local {
-          width: 23px;
-          height: 23px;
+.footer {
+  width: $menu-width;
+  padding-bottom: 15px;
 
-          position: relative;
-          top: -1px;
+  .bottom-links {
+    display: flex;
+    flex-direction: column;
+    padding: 0 $menu-lateral-padding;
+  }
 
-          background-image: url('../../assets/images/menu/home.svg');
-        }
+  $footer-links-base-opacity: .8;
 
-        &.icon-administration {
-          width: 23px;
-          height: 23px;
+  .footer-links {
+    &, > div {
+      display: flex;
+      flex-wrap: wrap;
+    }
 
-          background-image: url('../../assets/images/menu/administration.svg');
-        }
+    a, span[role=button] {
+      display: inline-block;
+      text-decoration: none;
+      color: pvar(--mainBackgroundColor);
+      opacity: $footer-links-base-opacity;
+      white-space: nowrap;
+      font-size: 90%;
+      font-weight: 500;
+      line-height: 1.4rem;
+      margin-right: 8px;
+
+      &.inline-global-icon {
+        display: inline-flex;
+        align-items: center;
+        white-space: nowrap;
+        height: 1.4rem;
 
-        &.icon-about  {
-          width: 23px;
-          height: 23px;
+        my-global-icon {
+          @include apply-svg-color(pvar(--mainBackgroundColor));
 
-          background-image: url('../../assets/images/menu/about.svg');
+          display: flex;
+          width: auto;
+          height: 90%;
+          margin-right: .2rem;
         }
       }
     }
   }
 
-  .footer {
-    padding-bottom: 15px;
-    padding-left: $menu-lateral-padding;
-    padding-right: $menu-lateral-padding;
-    width: $menu-width;
+  .footer-copyleft small a {
+    @include disable-default-a-behaviour;
 
-    .language, .shortcuts, .color-palette {
-      display: inline-block;
-      color: $menu-bottom-color;
-      cursor: pointer;
-      font-size: 12px;
-      font-weight: $font-semibold;
-
-      .icon {
-        @include disable-outline;
-        @include icon(28px);
-        opacity: 0.9;
-
-        &.icon-language  {
-          position: relative;
-          top: -1px;
-          width: 28px;
-          height: 24px;
-
-          background-image: url('../../assets/images/menu/language.png');
-        }
+    color: pvar(--mainBackgroundColor);
+    opacity: $footer-links-base-opacity - .2;
+  }
+}
 
-        &.icon-shortcuts  {
-          position: relative;
-          top: -1px;
-          width: 24px;
-          height: 24px;
+.dropdown {
+  z-index: #{z('menu') + 1} !important;
+}
 
-          background-image: url('../../assets/images/menu/keyboard.png');
-          background-color: #fff;
-          filter: invert(100%);
-        }
+.dropdown-menu {
+  width: calc(100% + 40px);
+}
 
-        &.icon-moonsun  {
-          margin-left: 10px;
-          position: relative;
-          top: -1px;
-          width: 24px;
-          height: 24px;
+.dropdown-item {
+  @include dropdown-with-icon-item;
 
-          background-image: url('../../assets/images/menu/moonsun.svg');
-        }
+  cursor: pointer;
+  display: flex;
+  align-items: center;
 
-        &:hover {
-          opacity: 1;
-        }
-      }
+  i.glyphicon-menu-right {
+    opacity: .4;
+  }
+
+  my-global-icon {
+    &[iconName="cog"],
+    &[iconName="sign-out"] {
+      position: relative;
+      right: -2px;
+      height: 20px;
+      width: 20px;
+    }
+  }
+
+  my-global-icon.not-displayed {
+    display: none;
+  }
+
+  &:hover {
+    my-global-icon.hover-display-toggle.not-displayed {
+      display: inherit;
+    }
+    my-global-icon.hover-display-toggle {
+      display: none;
     }
   }
 }
 
+.more-settings {
+  text-transform: uppercase;
+  font-size: 80%;
+  color: #6c757d;
+}
+
 @media screen and (max-width: $mobile-view) {
   .menu-wrapper {
     width: 100% !important;
+
+    menu {
+      overflow-y: auto;
+    }
   }
 
   .top-menu, .footer {