0173a6646f
Increase the app icon dropshadow to separate the icon from the window thumbnail. The shadow change is global, but due to perfomance implications, the icon-dropshadow class is only used on the thumbnail view. Fixes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3670 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1656>
19 lines
287 B
SCSS
19 lines
287 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);
|
|
}
|