From d02b86375058252a1fa4b6485af046a7e555f6ef Mon Sep 17 00:00:00 2001 From: "Yasmin Seidel (JasminDreasond)" Date: Fri, 27 Sep 2024 23:44:28 -0300 Subject: [PATCH] catppuccin theme --> audio player fixed. --- mods/themes/catppuccin/theme.scss | 32 +++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/mods/themes/catppuccin/theme.scss b/mods/themes/catppuccin/theme.scss index 5b8203cb7..bb2d8eaf2 100644 --- a/mods/themes/catppuccin/theme.scss +++ b/mods/themes/catppuccin/theme.scss @@ -308,10 +308,14 @@ /* Media Audio fix */ .r-howler { + button:hover { + background: var(--surface0); + } + /* Progress Bar */ .player-progress { &::-moz-range-progress { - background: var(--bg-primary); + background: var(--blue); } } @@ -319,19 +323,27 @@ .volume-control { .audio-bar { &::-moz-range-thumb { - background: var(--bg-primary); + background: var(--text); } &::-moz-range-track { - background: var(--bg-primary-border); + background: var(--subtext1); } &::-moz-range-progress { - background: var(--bg-primary); + background: var(--blue); } } } } + + .vjs-progress-control { + .vjs-progress-holder { + .vjs-play-progress { + background: var(--blue) !important; + } + } + } } .catppuccin-theme-frappe, @@ -411,6 +423,18 @@ } .catppuccin-theme-latte { + /* Media Audio fix */ + .r-howler { + /* Volume Ranger */ + .volume-control { + .audio-bar { + &::-moz-range-track { + background: var(--bg-input); + } + } + } + } + #settings-base #setting-tab .nav-link:hover { background-color: #ccd0da !important; }