mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-08 00:13:02 +00:00
24 lines
460 B
SCSS
24 lines
460 B
SCSS
// links
|
|
.shell-link {
|
|
border-radius: $bt_radius;
|
|
color: $link_color;
|
|
&:hover {
|
|
color: $link_color;
|
|
background-color: rgba($link_color, $lower_opacity / 2);
|
|
}
|
|
&:active {
|
|
color: $link_color;
|
|
background-color: rgba($link_color, $lower_opacity);
|
|
}
|
|
}
|
|
|
|
// 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);
|
|
}
|