diff options
Diffstat (limited to 'public/assets/css/audioplayer.css')
| -rw-r--r-- | public/assets/css/audioplayer.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/public/assets/css/audioplayer.css b/public/assets/css/audioplayer.css index 49a2809..2728c16 100644 --- a/public/assets/css/audioplayer.css +++ b/public/assets/css/audioplayer.css @@ -31,6 +31,9 @@ transition: 0.2s cubic-bezier(0, 0, 1, 1); opacity: 0; } +.player.unloaded { + pointer-events: none; +} .player.active { opacity: 1; } @@ -43,8 +46,8 @@ display: flex; flex-direction: column; padding: 1rem; + border-radius: 0.25rem; } - .player .controls { background: linear-gradient(-90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)); } @@ -63,6 +66,11 @@ display: flex; justify-content: center; align-items: center; + transition: opacity 0.1s; + opacity: 0.9; +} +.player .icon:hover { + opacity: 1; } .player .pos { flex: 1; |
