ea73e4f1e9
- clean out unused colors; add desaturated light color - remove long unused drawing functions; add high contrast color mixin - de-duplicate and move common colors to a default-colors stylesheet - rework how HighContrast is defined; clean up HC cruft - bring over named color defines and other colors from libadwaita - change how panel colors are defined Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3097>
28 lines
516 B
SCSS
28 lines
516 B
SCSS
// Links
|
|
.shell-link {
|
|
color: $link_color;
|
|
|
|
&:hover {
|
|
color: lighten($link_color, 10%);
|
|
}
|
|
}
|
|
|
|
// Outline for low res icons
|
|
.lowres-icon {
|
|
icon-shadow: 0 1px 2px rgba(black, 0.3);
|
|
}
|
|
|
|
// Dropshadow for large icons
|
|
.icon-dropshadow {
|
|
icon-shadow: 0 1px 5px rgba(black, 0.8);
|
|
|
|
@if $contrast == 'high' {
|
|
icon-shadow: none;
|
|
background-color: $osd_bg_color;
|
|
padding: $base_padding * 2;
|
|
border-radius: $modal_radius;
|
|
border: 2px solid $hc_inset_color;
|
|
margin: $base_padding * 3;
|
|
}
|
|
}
|