summaryrefslogtreecommitdiffstats
path: root/assets
diff options
context:
space:
mode:
authorsyeopite <syeopite@syeopite.dev>2021-03-13 10:57:27 -0800
committersyeopite <syeopite@syeopite.dev>2021-03-13 10:57:27 -0800
commit48a3c3a0c13c6bd0b7bec916ebac1c0f5bcd2e38 (patch)
treeecdbaf70a2ef0c093f8f529d82edd6bd80968db9 /assets
parentfab9ae64a072167bbd6f934c87e06e965bcbec89 (diff)
downloadinvidious-48a3c3a0c13c6bd0b7bec916ebac1c0f5bcd2e38.tar.gz
invidious-48a3c3a0c13c6bd0b7bec916ebac1c0f5bcd2e38.tar.bz2
invidious-48a3c3a0c13c6bd0b7bec916ebac1c0f5bcd2e38.zip
Add hover state to filter UI
Diffstat (limited to 'assets')
-rw-r--r--assets/css/default.css9
1 files changed, 6 insertions, 3 deletions
diff --git a/assets/css/default.css b/assets/css/default.css
index 18b7d7ad..a76ecd48 100644
--- a/assets/css/default.css
+++ b/assets/css/default.css
@@ -495,7 +495,8 @@ video.video-js {
*/
.light-theme a:hover,
-.light-theme a:active {
+.light-theme a:active,
+.light-theme summary:hover {
color: #075A9E !important;
}
@@ -521,7 +522,8 @@ video.video-js {
@media (prefers-color-scheme: light) {
.no-theme a:hover,
- .no-theme a:active {
+ .no-theme a:active,
+ .no-theme summary:hover {
color: #075A9E !important;
}
@@ -551,7 +553,8 @@ video.video-js {
*/
.dark-theme a:hover,
-.dark-theme a:active {
+.dark-theme a:active,
+.dark-theme summary:hover {
color: rgb(0, 182, 240);
}