33 lines
648 B
SCSS
Raw Normal View History

2021-04-08 22:59:05 +08:00
/* Dash */
$dash_placeholder_size: 32px;
#dash {
.empty-dash-drop-target {
width: $dash_placeholder_size;
height: $dash_placeholder_size;
}
}
// OSD Tooltip
.dash-label {
2021-05-24 19:34:56 +08:00
color: $light_alt_fg_color;
background-color: rgba(black, 0.75);
2021-04-08 22:59:05 +08:00
border-radius: $bt_radius;
padding: $base_padding $base_padding * 2;
2024-04-27 18:57:21 +08:00
margin: $base_padding;
box-shadow: none !important;
border: none !important;
2021-04-08 22:59:05 +08:00
text-align: center;
2024-04-27 18:57:21 +08:00
-y-offset: $base_margin * 2; // distance from the dash edge
2021-04-08 22:59:05 +08:00
-x-offset: 8px;
2021-05-07 10:20:20 +08:00
@include font(body-1);
2021-04-08 22:59:05 +08:00
}
2021-04-21 18:40:03 +08:00
// Show apps button
.show-apps {
@if $showapps_button == "bigsur" {
@extend %show_apps_bigsur;
}
2021-04-08 22:59:05 +08:00
}