44 lines
880 B
SCSS
Raw Normal View History

2021-04-08 22:59:05 +08:00
/* 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;
}