mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-07 16:03:03 +00:00
44 lines
880 B
SCSS
44 lines
880 B
SCSS
![]() |
/* Dash */
|
||
|
|
||
|
$dash_placeholder_size: 32px;
|
||
|
|
||
|
#dash {
|
||
|
@include fontsize($base_font_size - 2);
|
||
|
|
||
|
.empty-dash-drop-target {
|
||
|
width: $dash_placeholder_size;
|
||
|
height: $dash_placeholder_size;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// OSD Tooltip
|
||
|
.dash-label {
|
||
|
color: rgba(white, 0.9);
|
||
|
background-color: rgba(#222, 0.95);
|
||
|
border-radius: $bt_radius;
|
||
|
padding: $base_padding $base_padding * 2;
|
||
|
box-shadow: none;
|
||
|
border: none;
|
||
|
text-align: center;
|
||
|
-y-offset: $base_margin * 3; // distance from the dash edge
|
||
|
-x-offset: 8px;
|
||
|
}
|
||
|
|
||
|
// Show apps button
|
||
|
.show-apps .show-apps-icon {
|
||
|
color: transparent;
|
||
|
background-image: url("assets/view-app-grid.svg");
|
||
|
background-size: contain;
|
||
|
}
|
||
|
|
||
|
.show-apps .overview-icon {
|
||
|
color: transparent;
|
||
|
}
|
||
|
|
||
|
.show-apps:hover .show-apps-icon,
|
||
|
.show-apps:active .show-apps-icon,
|
||
|
.show-apps:checked .show-apps-icon,
|
||
|
.show-apps:focus .show-apps-icon {
|
||
|
color: transparent;
|
||
|
}
|