diff options
author | Chocobozzz <me@florianbigard.com> | 2021-04-08 15:11:22 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-04-08 15:12:14 +0200 |
commit | b9244002fcc48dda7f3a588980d910a40429238f (patch) | |
tree | 9c786f0a75d8f75247233b8d7b246c9331f1698c /client | |
parent | 1afb3c474ae1194748a6fba901058c720e01be0c (diff) | |
download | PeerTube-b9244002fcc48dda7f3a588980d910a40429238f.tar.gz PeerTube-b9244002fcc48dda7f3a588980d910a40429238f.tar.zst PeerTube-b9244002fcc48dda7f3a588980d910a40429238f.zip |
Fix embed playlist menu background on focus
Diffstat (limited to 'client')
-rw-r--r-- | client/src/sass/player/playlist.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/sass/player/playlist.scss b/client/src/sass/player/playlist.scss index cf125a562..ebbed02d9 100644 --- a/client/src/sass/player/playlist.scss +++ b/client/src/sass/player/playlist.scss | |||
@@ -5,7 +5,8 @@ $playlist-menu-width: 350px; | |||
5 | right: 0; | 5 | right: 0; |
6 | height: 100%; | 6 | height: 100%; |
7 | width: $playlist-menu-width; | 7 | width: $playlist-menu-width; |
8 | background: rgba(0, 0, 0, 0.8); | 8 | // !important to prevent none background set on focus |
9 | background: rgba(0, 0, 0, 0.8) !important; | ||
9 | z-index: 101; | 10 | z-index: 101; |
10 | transition: right 0.2s; | 11 | transition: right 0.2s; |
11 | overflow-y: scroll; | 12 | overflow-y: scroll; |