mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-06 15:33:02 +00:00
33 lines
648 B
SCSS
33 lines
648 B
SCSS
/* Dash */
|
|
|
|
$dash_placeholder_size: 32px;
|
|
|
|
#dash {
|
|
.empty-dash-drop-target {
|
|
width: $dash_placeholder_size;
|
|
height: $dash_placeholder_size;
|
|
}
|
|
}
|
|
|
|
// OSD Tooltip
|
|
.dash-label {
|
|
color: $light_alt_fg_color;
|
|
background-color: rgba(black, 0.75);
|
|
border-radius: $bt_radius;
|
|
padding: $base_padding $base_padding * 2;
|
|
margin: $base_padding;
|
|
box-shadow: none !important;
|
|
border: none !important;
|
|
text-align: center;
|
|
-y-offset: $base_margin * 2; // distance from the dash edge
|
|
-x-offset: 8px;
|
|
@include font(body-1);
|
|
}
|
|
|
|
// Show apps button
|
|
.show-apps {
|
|
@if $showapps_button == "bigsur" {
|
|
@extend %show_apps_bigsur;
|
|
}
|
|
}
|