diff options
author | metamuffin <metamuffin@disroot.org> | 2024-03-16 18:26:36 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-03-16 18:26:36 +0100 |
commit | ae8bed70a17eaf8308486aa060cade89d283c6d8 (patch) | |
tree | 96c1a67a34fcf41cf61a8f6c5b72a01af4c038f0 /web/style | |
parent | 6aeb71ffb5158fd05c956f5b9088e5082cbdbd7c (diff) | |
download | jellything-ae8bed70a17eaf8308486aa060cade89d283c6d8.tar jellything-ae8bed70a17eaf8308486aa060cade89d283c6d8.tar.bz2 jellything-ae8bed70a17eaf8308486aa060cade89d283c6d8.tar.zst |
player: show chapters
Diffstat (limited to 'web/style')
-rw-r--r-- | web/style/js-player.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/web/style/js-player.css b/web/style/js-player.css index e2c5c10..2dedb9c 100644 --- a/web/style/js-player.css +++ b/web/style/js-player.css @@ -236,3 +236,18 @@ ul.jsp-track-list li.active { font-size: large; width: 20em; } + +.jsp-chapter { + position: absolute; + height: var(--csize); + padding-left: 2px; + border-left: 2px solid rgba(255, 161, 55, 0.548); +} +.jsp-chapter p { + font-size: small; + text-overflow: ellipsis; + overflow: visible; + overflow: hidden; + white-space: nowrap; + width: 100%; +} |