gnome-shell-dark-theme/gnome-shell-sass/widgets/_base.scss

23 lines
346 B
SCSS
Raw Normal View History

// Links
.shell-link {
color: $link_color;
&:hover {
2024-09-19 20:40:52 -04:00
color: st-lighten($link_color, 10%);
}
}
// Outline for low res icons
.lowres-icon {
2024-03-25 13:34:36 -04:00
icon-shadow: 0 1px 2px rgba(black, 0.2);
}
// Dropshadow for large icons
.icon-dropshadow {
2024-03-25 13:34:36 -04:00
icon-shadow: 0 2px 4px rgba(black, 0.4);
@if $contrast == 'high' {
icon-shadow: none;
}
}