90786509bb
.shell-link, .lowres-icon and .icon-dropshadow could be used globally. For the icon shadow classes, they're used by officially supported extensions.[1] [1] https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/168 https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/938
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 2px rgba(black, 0.4);
|
|
}
|