diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-27 22:25:17 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-27 22:25:17 +1100 |
| commit | fee7bf492eec2baed1afe65868d7a4a7cc05330a (patch) | |
| tree | 4bbb4d356fda1509ff500704475fa4733131887f | |
| parent | sideright: imperial weather (diff) | |
| download | caelestia-shell-fee7bf492eec2baed1afe65868d7a4a7cc05330a.tar.gz caelestia-shell-fee7bf492eec2baed1afe65868d7a4a7cc05330a.tar.bz2 caelestia-shell-fee7bf492eec2baed1afe65868d7a4a7cc05330a.zip | |
fix caret styles
Cause the reset at the end overrides it, so move it after
| -rw-r--r-- | scss/widgets.scss | 10 | ||||
| -rw-r--r-- | style.scss | 8 |
2 files changed, 8 insertions, 10 deletions
diff --git a/scss/widgets.scss b/scss/widgets.scss index 9d57964..856960f 100644 --- a/scss/widgets.scss +++ b/scss/widgets.scss @@ -3,16 +3,6 @@ @use "lib"; @use "font"; -* { - selection { - background-color: color.change(scheme.$overlay2, $alpha: 0.3); - } - - & { - caret-color: scheme.$rosewater; - } -} - label.icon { @include font.icon; } @@ -1,3 +1,6 @@ +@use "sass:color"; +@use "scss/scheme"; + // Common widgets @use "scss/widgets"; @@ -11,4 +14,9 @@ * { all: unset; // Remove GTK theme styles + caret-color: scheme.$rosewater; + + selection { + background-color: color.change(scheme.$overlay2, $alpha: 0.3); + } } |