beb77f5824
- Fixing things where the wrong colors bleed through or the colors are inconsistent. - expand colors definitions for system colours - add overrides to styles for overview and lockscreen - update drawing functions to better use new colours - rework entry drawing css Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2515>
21 lines
296 B
SCSS
21 lines
296 B
SCSS
/* Entries */
|
|
|
|
StEntry {
|
|
@extend %entry;
|
|
|
|
StIcon.capslock-warning {
|
|
icon-size: $base_icon_size;
|
|
warning-color: $warning_color;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
StIcon.peek-password {
|
|
icon-size: $base_icon_size;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
StLabel.hint-text {
|
|
margin-left: 2px;
|
|
}
|
|
}
|