]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/menu/menu.component.scss
Merge branch 'release/4.0.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / menu / menu.component.scss
index a95a80af6851207fd32f799ff0132afc92096f04..f0919ed289d1930ec8eeb743948e74254a4e17e6 100644 (file)
@@ -1,36 +1,43 @@
-@import '_variables';
-@import '_mixins';
+@use 'sass:math';
+@use '_variables' as *;
+@use '_mixins' as *;
 
 $menu-link-icon-size: 22px;
 $menu-link-icon-margin-right: 18px;
+$footer-links-base-opacity: .8;
+
+.menu-link {
+  @include disable-default-a-behaviour;
+  @include padding-left($menu-lateral-padding);
+  @include padding-right(20px);
 
-@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;
+  line-height: $line-height-normal;
 
   &.active {
     background-color: rgba(255, 255, 255, 0.15);
   }
 
-  &:hover, &.focus-visible {
-    background-color: rgba(255, 255, 255, 0.10);
+  &:hover,
+  &.focus-visible {
+    background-color: rgba(255, 255, 255, 0.1);
   }
 
   my-global-icon {
     @include apply-svg-color(#808080);
+    @include margin-right($menu-link-icon-margin-right);
 
     display: flex;
     width: $menu-link-icon-size;
     height: $menu-link-icon-size;
-    margin-right: $menu-link-icon-margin-right;
   }
 }
 
@@ -56,7 +63,8 @@ menu {
   margin: 0;
   padding: 0;
 
-  &:focus, &:hover {
+  &:focus,
+  &:hover {
     overflow-y: auto;
   }
 
@@ -88,219 +96,246 @@ menu {
     height: 80px;
     display: flex;
     align-items: center;
-    justify-content: center;
+    justify-content: left;
+  }
+}
 
-    .logged-in-info {
-      @include ellipsis;
+my-notification {
+  @include margin-left(auto);
+  @include margin-right(15px);
+}
 
-      flex-grow: 1;
+.logged-in-more {
+  @mixin display-hints($is-mobile: false) {
+    background-color: rgba(255, 255, 255, 0.15);
 
-      .logged-in-display-name {
-        font-size: 16px;
-        font-weight: $font-semibold;
-        color: pvar(--menuForegroundColor);
-        cursor: pointer;
+    @if $is-mobile {
+      .dropdown-toggle-indicator {
+        display: inherit !important;
+      }
 
-        @include disable-default-a-behaviour;
+      .dropdown-toggle {
+        max-width: 88% !important;
       }
+    }
+  }
 
-      .logged-in-username {
-        @include ellipsis;
+  $main-radius: 25px;
 
-        font-size: 13px;
-        color: #C6C6C6;
-        max-width: 140px;
-        cursor: pointer;
-      }
+  @include margin-left(13px);
+
+  flex: 1;
+  border-radius: $main-radius;
+  transition: all .1s ease-in-out;
+  cursor: pointer;
+  line-height: 1;
+
+  &.show {
+    background-color: rgba(255, 255, 255, 0.2);
+    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .325);
+  }
+
+  &:hover {
+    @include display-hints;
+  }
+
+  /* smartphones and touchscreens */
+  @media (hover: none) and (pointer: coarse) {
+    @include display-hints($is-mobile: true);
+
+    /* fill space when on mobile */
+    max-width: calc(100% - 80px);
+
+    .dropdown-toggle {
+      max-width: 100%;
     }
 
-    .logged-in-more {
-      margin-right: 20px;
+    .logged-in-info {
+      max-width: calc(100% - 45px) !important;
+    }
+  }
 
-      my-global-icon.dropdown-toggle {
-        cursor: pointer;
+  .dropdown-toggle-indicator {
+    position: relative;
+    width: 0;
+    display: none;
 
-        &::after {
-          border: none;
-        }
+    span {
+      position: absolute;
+      right: -35px;
+      top: -8px;
+      color: #808080;
+      width: $main-radius;
+    }
+  }
 
-        ::ng-deep {
-          @include apply-svg-color(pvar(--menuForegroundColor));
-        }
-      }
+  .dropdown-toggle {
+    &::after {
+      border: 0;
     }
   }
 
-  .logged-in-menu {
+  .dropdown-toggle:first-child {
     display: flex;
-    flex-direction: column;
-    align-items: flex-start;
-    border-top: 1px solid var(--greyForegroundColor);
+    align-items: center;
+    padding: 5px 7px;
+    border-radius: $main-radius;
+  }
+}
 
-    a {
-      @include menu-link;
-      @include disable-default-a-behaviour;
+my-actor-avatar {
+  @include margin-right(10px);
+}
 
-      $icon-size: 13px;
-      $additional-margin: ($menu-link-icon-size - $icon-size) / 2;
+.logged-in-info {
+  max-width: 105px;
 
-      font-size: 14px;
-      width: 100%;
-      min-height: 35px;
+  flex-grow: 1;
+}
 
-      my-global-icon {
-        width: $icon-size;
-        height: $icon-size;
+.logged-in-display-name,
+.logged-in-username {
+  @include ellipsis;
+}
 
-        // Keep aligned with other icons
-        margin-left: $additional-margin;
+.logged-in-display-name {
+  @include disable-default-a-behaviour;
 
-        &[iconName="channel"] {
-          margin-top: -2px;
-        }
-      }
+  font-size: 16px;
+  font-weight: $font-semibold;
+  color: pvar(--menuForegroundColor);
+}
+
+.logged-in-username {
+  font-size: 13px;
+  color: #C6C6C6;
+  margin-top: 3px;
+}
+
+.logged-in-menu {
+  display: flex;
+  flex-direction: column;
+  align-items: flex-start;
+  border-top: 1px solid var(--greyForegroundColor);
+  line-height: $line-height-normal;
+
+  a {
+    $icon-size: 13px;
+    $additional-margin: math.div($menu-link-icon-size - $icon-size, 2);
 
-      &.active,
-      &:hover,
-      &:focus-visible {
-        my-global-icon {
-          @include apply-svg-color(var(--mainBackgroundColor));
-        }
+    font-size: 14px;
+    width: 100%;
+    min-height: 35px;
+
+    my-global-icon {
+      // Keep aligned with other icons
+      @include margin-left($additional-margin);
+
+      width: $icon-size;
+      height: $icon-size;
+    }
+
+    &.active,
+    &:hover,
+    &:focus-visible {
+      my-global-icon {
+        @include apply-svg-color(var(--menuForegroundColor));
       }
+    }
 
-      &.active {
-        $border-left-width: 4px;
+    &.active {
+      $border-left-width: 4px;
 
-        font-weight: $font-semibold;
-        border-left: $border-left-width solid var(--mainColor);
+      font-weight: $font-semibold;
+      border-left: $border-left-width solid var(--mainColor);
 
-        my-global-icon {
-          margin-left: $additional-margin - $border-left-width;
-        }
+      my-global-icon {
+        @include margin-left($additional-margin - $border-left-width);
       }
     }
   }
 }
 
 .login-buttons-block {
-  margin: 30px 25px 35px 25px;
-
-  .login-button {
-    @include peertube-button-link;
-    @include orange-button;
+  margin: 30px 25px 35px;
 
+  > a {
     display: block;
     width: 100%;
-    margin-bottom: 10px;
-  }
-
-  .create-account-button {
-    @include peertube-button-link;
 
-    display: block;
-    width: 100%;
+    &:not(:last-child) {
+      margin-bottom: 10px;
+    }
+  }
+}
 
-    color: #fff;
-    background-color: rgba(255, 255, 255, 0.25);
+.create-account-button {
+  color: #fff;
+  background-color: rgba(255, 255, 255, 0.25);
 
-    &:hover {
-      background-color: rgba(255, 255, 255, 0.28);
-    }
+  &:hover {
+    background-color: rgba(255, 255, 255, 0.28);
   }
 }
 
-.in-my-account,
-.on-instance,
+.menu-block,
 .footer-block {
   margin-bottom: 15px;
 
   .block-title {
+    @include ellipsis;
+    @include margin-left(26px);
+    @include margin-right(30px);
+
     text-transform: uppercase;
     font-weight: $font-bold; // Bold
     font-size: 13px;
     margin-bottom: 25px;
-    margin-left: 26px;
-
-    @include ellipsis;
-
-    margin-right: 30px;
   }
 
   a {
-    @include menu-link;
-    @include disable-default-a-behaviour;
-
     min-height: 40px;
-
-    my-global-icon {
-      &[iconName="playlists"] {
-        height: 24px;
-        width: 24px;
-
-        margin-right: 16px;
-      }
-
-      &[iconName="videos"] {
-        position: relative;
-        right: -1px;
-      }
-    }
   }
 }
 
 .footer {
   width: $menu-width;
   padding-bottom: 15px;
+}
 
-  .bottom-links {
+.footer-bottom {
+  display: flex;
+  flex-direction: column;
+  padding: 0 $menu-lateral-padding;
+}
+
+.footer-links {
+  &,
+  > div {
     display: flex;
-    flex-direction: column;
-    padding: 0 $menu-lateral-padding;
+    flex-wrap: wrap;
   }
 
-  $footer-links-base-opacity: .8;
-
-  .footer-links {
-    &, > div {
-      display: flex;
-      flex-wrap: wrap;
-    }
-
-    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;
-
-        my-global-icon {
-          @include apply-svg-color(pvar(--mainBackgroundColor));
-
-          display: flex;
-          width: auto;
-          height: 90%;
-          margin-right: .2rem;
-        }
-      }
-    }
+  a,
+  span[role=button] {
+    @include margin-right(8px);
+
+    display: inline-block;
+    text-decoration: none;
+    color: pvar(--menuForegroundColor);
+    opacity: $footer-links-base-opacity;
+    white-space: nowrap;
+    font-size: 90%;
+    font-weight: 500;
+    line-height: 1.4rem;
   }
+}
 
-  .footer-copyleft small a {
-    @include disable-default-a-behaviour;
+.footer-copyleft small a {
+  @include disable-default-a-behaviour;
 
-    color: pvar(--mainBackgroundColor);
-    opacity: $footer-links-base-opacity - .2;
-  }
+  color: pvar(--menuForegroundColor);
+  opacity: $footer-links-base-opacity - .2;
 }
 
 .dropdown {
@@ -322,27 +357,14 @@ menu {
     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 {
+    .hover-display-toggle {
       display: none;
     }
+
+    .hover-display-toggle[hidden] {
+      display: inherit !important;
+    }
   }
 }
 
@@ -352,72 +374,53 @@ menu {
   color: #6c757d;
 }
 
-.icon {
-  @include disable-outline;
-  @include icon($menu-link-icon-size);
-  opacity: 0.8;
-
-  &.icon-shortcuts  {
-    position: relative;
-    top: -1px;
-    margin-right: 10px;
+@media screen and (max-width: $mobile-view) {
+  .menu-wrapper {
+    width: 100% !important;
 
-    background-image: url('../../assets/images/misc/keyboard.png');
+    menu {
+      overflow-y: auto;
+    }
   }
-}
-
-input[type=checkbox]{
-  position: absolute;
-  visibility: hidden;
-}
 
-label {
-  cursor: pointer;
-  text-indent: -9999px;
-  width: 35px;
-  height: 20px;
-  background: #cccccc;
-  display: block;
-  border-radius: 100px;
-  position: relative;
-  margin: 0;
+  .top-menu,
+  .footer {
+    width: 100% !important;
+  }
 
-  &:after {
-    content: '';
-    position: absolute;
-    top: 3px;
-    left: 3px;
-    width: 14px;
-    height: 14px;
-    background: pvar(--mainBackgroundColor);
-    border-radius: 50%;
-    transition: 0.3s ease-out;
+  .dropdown-menu {
+    width: calc(100vw - 30px);
   }
 
-  &:active:after {
-    width: 40px;
+  .dropdown-item:hover,
+  .dropdown-item:active {
+    &.settings-sensitive my-global-icon ::ng-deep svg {
+      margin-top: 0 !important;
+    }
   }
 }
 
-input:checked + label {
-  background: pvar(--mainColor);
+my-global-icon {
+  &[iconName=playlists] {
+    @include margin-right(16px);
 
-  &:after {
-    left: calc(100% - 3px);
-    transform: translateX(-100%);
+    height: 24px;
+    width: 24px;
   }
-}
 
-@media screen and (max-width: $mobile-view) {
-  .menu-wrapper {
-    width: 100% !important;
+  &[iconName=videos] {
+    position: relative;
+    right: -1px;
+  }
 
-    menu {
-      overflow-y: auto;
-    }
+  &[iconName=channel] {
+    margin-top: -2px;
   }
 
-  .top-menu, .footer {
-    width: 100% !important;
+  &[iconName='sign-out'] {
+    position: relative;
+    right: -2px;
+    height: 20px;
+    width: 20px;
   }
 }