diff options
author | metamuffin <metamuffin@disroot.org> | 2023-10-01 18:36:32 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-10-01 18:36:32 +0200 |
commit | 86d21ecd6dd39e3fa73cbed3ce347d6cf51239b5 (patch) | |
tree | 33f81cd77fbc6f63f158f7bd047461a5950b65b5 /web/js-player.css | |
parent | 3c1c3325ecebd6f5c7bc33a107c6efc4cda8b3ea (diff) | |
download | jellything-86d21ecd6dd39e3fa73cbed3ce347d6cf51239b5.tar jellything-86d21ecd6dd39e3fa73cbed3ce347d6cf51239b5.tar.bz2 jellything-86d21ecd6dd39e3fa73cbed3ce347d6cf51239b5.tar.zst |
jlhs forward playback works
Diffstat (limited to 'web/js-player.css')
-rw-r--r-- | web/js-player.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/web/js-player.css b/web/js-player.css index d6daa03..24adf5a 100644 --- a/web/js-player.css +++ b/web/js-player.css @@ -39,6 +39,7 @@ } .jsp .jsp-pri { + position: relative; flex-grow: 1; padding: 0px; display: inline-block; @@ -47,9 +48,17 @@ height: var(--csize); } .jsp .jsp-pri-current { + z-index: 101; + position: absolute; height: var(--csize); background-color: #ffffff20; } +.jsp .jsp-pri-buffered { + z-index: 100; + position: absolute; + height: var(--csize); + background-color: #08fa0018; +} .jsp-overlay { position: absolute; bottom: var(--csize); |