X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fsass%2Fplayer%2Fplaylist.scss;h=f7e67ba16d2287da35e5574efbd2a9859b14f081;hb=62ddc31a9e4b92d7d27898ccfc363f68ab044139;hp=544d45a481e00b9e082cabdd9363c769babf2558;hpb=56674bb9f81775ff85115e7daa7d9be0db95c001;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/sass/player/playlist.scss b/client/src/sass/player/playlist.scss index 544d45a48..f7e67ba16 100644 --- a/client/src/sass/player/playlist.scss +++ b/client/src/sass/player/playlist.scss @@ -1,3 +1,7 @@ +@use '_variables' as *; +@use '_mixins' as *; +@use './_player-variables' as *; + $playlist-menu-width: 350px; .vjs-playlist-menu { @@ -5,9 +9,11 @@ $playlist-menu-width: 350px; right: 0; height: 100%; width: $playlist-menu-width; - background: rgba(0, 0, 0, 0.8); + // !important to prevent none background set on focus + background: rgba(0, 0, 0, 0.8) !important; z-index: 101; transition: right 0.2s; + overflow-y: scroll; // Hidden right: -$playlist-menu-width; @@ -38,14 +44,14 @@ $playlist-menu-width: 350px; } .cross { + mask-image: url('#{$assets-path}/images/feather/x.svg'); + -webkit-mask-image: url('#{$assets-path}/images/feather/x.svg'); + cursor: pointer; width: 20px; height: 20px; - mask-image: url('#{$assets-path}/images/feather/x.svg'); - -webkit-mask-image: url('#{$assets-path}/images/feather/x.svg'); - background-color: white; + background-color: #fff; mask-size: cover; - -webkit-mask-size: cover; } } } @@ -80,18 +86,18 @@ $playlist-menu-width: 350px; right: 0; top: 0; z-index: 100; - padding: 1em; + padding: $dock-padding; cursor: pointer; } .vjs-playlist-icon { - width: 22px; - height: 22px; mask-image: url('#{$assets-path}/images/feather/list.svg'); -webkit-mask-image: url('#{$assets-path}/images/feather/list.svg'); - background-color: white; + + width: 22px; + height: 22px; + background-color: #fff; mask-size: cover; - -webkit-mask-size: cover; margin-bottom: 3px; } @@ -131,9 +137,9 @@ $playlist-menu-width: 350px; } .item-player { - display: none; - @include play-icon(20px, 16px); + + display: none; } &.vjs-selected { @@ -165,14 +171,20 @@ $playlist-menu-width: 350px; @include ellipsis; font-size: 13px; - margin-bottom: 5px; + margin-bottom: 3px; } - .channel { + .channel, + .timestamps { @include ellipsis; font-size: 11px; color: #bfbfbf; } + + .timestamps { + font-size: 10px; + margin-top: 3px; + } } }