2019-12-18 16:25:03 -05:00
|
|
|
/* Workspace Switcher */
|
2021-12-28 08:46:54 -05:00
|
|
|
|
2022-02-07 13:22:40 -05:00
|
|
|
$ws_indicator_height: $large_icon_size;
|
2022-01-25 19:33:21 -05:00
|
|
|
$ws_dot_active: $ws_indicator_height / 3;
|
|
|
|
$ws_dot_inactive: $ws_indicator_height / 6;
|
2019-12-18 16:25:03 -05:00
|
|
|
|
|
|
|
.workspace-switcher {
|
2022-01-25 19:33:21 -05:00
|
|
|
@extend %osd_panel;
|
2022-02-07 13:22:40 -05:00
|
|
|
margin-bottom: 4em;
|
|
|
|
spacing: $base_padding * 2;
|
|
|
|
padding: $base_padding * 2 $base_padding * 3;
|
2019-12-19 15:56:45 -05:00
|
|
|
}
|
2019-12-18 16:25:03 -05:00
|
|
|
|
2022-01-25 19:26:44 -05:00
|
|
|
.ws-switcher-indicator {
|
2022-01-25 19:33:21 -05:00
|
|
|
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;
|
2019-12-18 16:25:03 -05:00
|
|
|
|
2022-01-25 19:26:44 -05:00
|
|
|
&:active {
|
2022-01-25 19:33:21 -05:00
|
|
|
background-color: $osd_fg_color;
|
|
|
|
padding: $ws_dot_active / 2;
|
|
|
|
margin: ($ws_indicator_height - $ws_dot_active) / 2;
|
2022-01-25 19:26:44 -05:00
|
|
|
}
|
2019-12-18 16:25:03 -05:00
|
|
|
}
|