aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/stylesheets
diff options
context:
space:
mode:
authorManeraKai <manerakai@protonmail.com>2023-05-18 11:45:46 +0300
committerManeraKai <manerakai@protonmail.com>2023-05-18 11:45:46 +0300
commit00dadbe7669e6826ae68da43ea990ec61a7c5857 (patch)
treeaa9e68420831157e9f26dd05275d92b259eaedf5 /src/pages/stylesheets
parentAdded Jitsi https://github.com/libredirect/browser_extension/issues/695 (diff)
downloadlibredirect-00dadbe7669e6826ae68da43ea990ec61a7c5857.zip
Made side bar links dim when disabled https://github.com/libredirect/browser_extension/issues/705
Diffstat (limited to 'src/pages/stylesheets')
-rw-r--r--src/pages/stylesheets/styles.css15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/pages/stylesheets/styles.css b/src/pages/stylesheets/styles.css
index a0fc432e..02ef9b40 100644
--- a/src/pages/stylesheets/styles.css
+++ b/src/pages/stylesheets/styles.css
@@ -50,6 +50,15 @@ div.some-block input[type="checkbox"] {
text-decoration: none;
width: min-content;
color: var(--text);
+ transition: .1s;
+}
+
+.title:hover {
+ opacity: 1 !important;
+}
+
+.title:hover a {
+ color: var(--active);
}
img,
@@ -147,7 +156,11 @@ section.links a {
}
section.links a:hover,
-section.links a.selected {
+section.links .selected {
+ opacity: 1 !important;
+}
+
+section.links .selected a {
color: var(--active);
}