39301a744e
- remove tiled preview corners; merge with misc.scss - sync general label styles from libadwaita - use variables in ibus css - remove redundant spacing variable as its equal to padding - use more global styles in screenshot css - tidy up entry styles - cleanup the networks dialog stylesheet - make colours less dark - cleanup the popover stylesheet - cleanup the mixins for tiles and overview icons - adjust the button style definitions on checked style - add osd button definitions Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2172>
26 lines
656 B
SCSS
26 lines
656 B
SCSS
/* Workspace Switcher */
|
|
|
|
$ws_indicator_height: $large_icon_size;
|
|
$ws_dot_active: $ws_indicator_height / 3;
|
|
$ws_dot_inactive: $ws_indicator_height / 6;
|
|
|
|
.workspace-switcher {
|
|
@extend %osd_panel;
|
|
margin-bottom: 4em;
|
|
spacing: $base_padding * 2;
|
|
padding: $base_padding * 2 $base_padding * 3;
|
|
}
|
|
|
|
.ws-switcher-indicator {
|
|
background-color: transparentize($osd_fg_color,0.5);
|
|
padding: $ws_dot_inactive / 2;
|
|
margin: ($ws_indicator_height - $ws_dot_inactive) / 2;
|
|
border-radius: $ws_indicator_height;
|
|
|
|
&:active {
|
|
background-color: $osd_fg_color;
|
|
padding: $ws_dot_active / 2;
|
|
margin: ($ws_indicator_height - $ws_dot_active) / 2;
|
|
}
|
|
}
|