X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fmenu%2Fmenu.component.scss;h=c36a7aa36c89590780d9f2bf9c6a96eb88c3fbab;hb=c9ffd53217e69395c303ba36532a6eef39645e4e;hp=2c21067334ceb67663598dce4349a9d30b40bd15;hpb=26c6ee80d0fecfce595e8970f15717560b4f4ceb;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/menu/menu.component.scss b/client/src/app/menu/menu.component.scss index 2c2106733..c36a7aa36 100644 --- a/client/src/app/menu/menu.component.scss +++ b/client/src/app/menu/menu.component.scss @@ -1,3 +1,6 @@ +@import '_variables'; +@import '_mixins'; + menu { background-color: $black-background; margin: 0; @@ -9,10 +12,6 @@ menu { z-index: 1000; color: $menu-color; - @media screen and (max-width: 550px) { - font-size: 90%; - } - .logged-in-block { height: 100px; background-color: rgba(255, 255, 255, 0.15); @@ -21,18 +20,32 @@ menu { justify-content: center; margin-bottom: 35px; + img { + @include avatar(34px); + + margin-left: 20px; + margin-right: 10px; + } + .logged-in-info { flex-grow: 1; - margin-left: 40px; .logged-in-username { font-size: 16px; font-weight: $font-semibold; + color: $menu-color; + cursor: pointer; + + @include disable-default-a-behaviour; } .logged-in-email { font-size: 13px; color: #C6C6C6; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 140px; } } @@ -49,22 +62,26 @@ menu { .button-block { margin: 30px 25px 35px 25px; - .login-button, .create-account-button { - font-weight: $font-semibold; - font-size: 15px; - height: $button-height; - line-height: $button-height; - width: 190px; - border-radius: 3px; - text-align: center; - - &.login-button { - background-color: $orange-color; - margin-bottom: 10px; - } + .login-button { + @include peertube-button-link; + @include orange-button; + + display: block; + width: 100%; + margin-bottom: 10px; + } + + .create-account-button { + @include peertube-button-link; - &.create-account-button { - background-color: rgba(255, 255, 255, 0.25); + display: block; + width: 100%; + + color: #fff; + background-color: rgba(255, 255, 255, 0.25); + + &:hover { + background-color: rgba(255, 255, 255, 0.28); } } } @@ -74,26 +91,36 @@ menu { font-weight: $font-bold; // Bold font-size: 13px; margin-bottom: 25px; + margin-left: 26px; } .panel-block { margin-bottom: 45px; - margin-left: 26px; a { display: flex; + align-items: center; + padding-left: 26px; + color: $menu-color; + cursor: pointer; + height: 40px; + font-size: 16px; + transition: background-color .1s ease-in-out; + @include disable-default-a-behaviour; + + &:hover { + background-color: rgba(255, 255, 255, 0.15); + } .icon { - width: 22px; - height: 22px; - display: inline-block; + @include icon(22px); + margin-right: 18px; - background-size: contain; &.icon-videos-trending { position: relative; top: -2px; - background-image: url('../../assets/menu/trending.svg'); + background-image: url('../../assets/images/menu/trending.svg'); } &.icon-videos-recently-added { @@ -101,28 +128,31 @@ menu { height: 23px; position: relative; top: -1px; - background-image: url('../../assets/menu/recently-added.svg'); + background-image: url('../../assets/images/menu/recently-added.svg'); + } + + &.icon-videos-local { + width: 23px; + height: 23px; + position: relative; + top: -1px; + background-image: url('../../assets/images/menu/home.svg'); } &.icon-administration { width: 23px; height: 23px; - background-image: url('../../assets/menu/administration.svg'); + background-image: url('../../assets/images/menu/administration.svg'); } - } - } - } - a { - color: $menu-color; - height: 22px; - line-height: 22px; - display: block; - font-size: 16px; - cursor: pointer; - margin-bottom: 15px; + &.icon-about { + width: 23px; + height: 23px; - @include disable-default-a-behaviour; + background-image: url('../../assets/images/menu/about.svg'); + } + } + } } }