fix caret styles
Cause the reset at the end overrides it, so move it after
This commit is contained in:
parent
e06e29eeab
commit
fee7bf492e
2 changed files with 8 additions and 10 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue