Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-01-10 11:16:55 +0300
committerJoas Schilling <coding@schilljs.com>2020-01-10 11:16:55 +0300
commit60acb45a334d7a554f5738c801560ca6deb47bef (patch)
treeb2e595b45b552beebff379ad5a2a58aef7e5c905 /css
parenta1d02c2f3e12648822540a6897969363949f9f42 (diff)
Override more colors with theming and dark mode
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'css')
-rw-r--r--css/At.scss21
1 files changed, 15 insertions, 6 deletions
diff --git a/css/At.scss b/css/At.scss
index afb2ebff2..4443fa18b 100644
--- a/css/At.scss
+++ b/css/At.scss
@@ -61,8 +61,8 @@
}
}
.atwho-cur {
- // background: #44a8f2;
- background: #5BB8FF;
+ // background: #44a8f2;
+ background: #5BB8FF;
color: white;
}
@@ -130,14 +130,23 @@
height: 32px;
}
+ // Override all colors with our theming and dark mode
.atwho-view {
background: var(--color-main-background);
color: var(--color-main-text);
- }
+ box-shadow: 0 0 5px var(--color-box-shadow);
- .atwho-cur {
- background: var(--color-primary);
- color: var(--color-primary-text);
+ &::-webkit-scrollbar-track {
+ background-color: var(--color-background-dark);
+ }
+ &::-webkit-scrollbar-thumb {
+ background-color: var(--color-background-darker);
+ }
+
+ .atwho-cur {
+ background: var(--color-primary);
+ color: var(--color-primary-text);
+ }
}
}