2019-12-18 21:25:03 +00:00
|
|
|
/* Dash */
|
|
|
|
|
2021-01-21 22:02:00 +00:00
|
|
|
$dash_background_color: #3b3b3b;
|
2019-12-18 21:25:03 +00:00
|
|
|
$dash_placeholder_size: 32px;
|
2021-02-04 17:27:30 +00:00
|
|
|
$dash_padding: $base_padding + 4px; // 10px
|
|
|
|
$dash_spacing: $base_padding / 4;
|
|
|
|
|
2021-02-09 18:57:55 +00:00
|
|
|
$dash_bottom_margin: $base_margin * 4;
|
2021-02-04 17:27:30 +00:00
|
|
|
|
2019-12-18 21:25:03 +00:00
|
|
|
$dash_border_radius: $modal_radius * 1.5;
|
|
|
|
|
|
|
|
#dash {
|
2019-12-19 16:09:33 +00:00
|
|
|
@include fontsize($base_font_size - 2);
|
2021-05-04 13:24:01 +00:00
|
|
|
margin-top: $base_spacing * 3;
|
2021-02-04 17:27:30 +00:00
|
|
|
padding: 0 $dash_padding;
|
2019-12-18 21:25:03 +00:00
|
|
|
|
2019-12-19 15:38:27 +00:00
|
|
|
.placeholder {
|
|
|
|
// background-image: url("resource:///org/gnome/shell/theme/dash-placeholder.svg");
|
|
|
|
background-image:none;
|
|
|
|
background-size: contain;
|
|
|
|
height: $dash_placeholder_size;
|
|
|
|
}
|
2019-12-18 21:25:03 +00:00
|
|
|
|
2019-12-19 15:38:27 +00:00
|
|
|
.empty-dash-drop-target {
|
|
|
|
width: $dash_placeholder_size;
|
|
|
|
height: $dash_placeholder_size;
|
|
|
|
}
|
2019-12-18 21:25:03 +00:00
|
|
|
|
2021-02-04 17:27:30 +00:00
|
|
|
.overview-icon {
|
|
|
|
padding: $dash_padding / 2;
|
2021-02-04 12:26:23 +00:00
|
|
|
}
|
2019-12-18 21:25:03 +00:00
|
|
|
}
|
|
|
|
|
2021-02-09 18:57:55 +00:00
|
|
|
.dash-background {
|
|
|
|
background-color: $dash_background_color;
|
|
|
|
margin-bottom: $dash_bottom_margin;
|
|
|
|
padding: $dash_padding;
|
|
|
|
border-radius: $dash_border_radius;
|
|
|
|
}
|
|
|
|
|
2021-02-04 17:27:30 +00:00
|
|
|
// Dash Items
|
2021-02-09 18:57:55 +00:00
|
|
|
.dash-item-container .app-well-app, .show-apps {
|
2021-02-17 00:46:04 +00:00
|
|
|
padding: $dash_padding $dash_spacing $dash_padding + $dash_bottom_margin;
|
2021-02-04 12:26:23 +00:00
|
|
|
}
|
2021-02-04 17:27:30 +00:00
|
|
|
|
|
|
|
.dash-separator {
|
|
|
|
width: 1px;
|
2021-02-09 18:57:55 +00:00
|
|
|
margin: 0 ($dash_spacing + ($dash_padding / 2)) $dash_bottom_margin;
|
2021-02-04 17:27:30 +00:00
|
|
|
background-color: transparentize($osd_fg_color,0.7);
|
2021-01-28 22:24:44 +00:00
|
|
|
}
|
|
|
|
|
2019-12-18 21:25:03 +00:00
|
|
|
// OSD Tooltip
|
|
|
|
.dash-label {
|
2019-12-19 15:38:27 +00:00
|
|
|
color: $osd_fg_color;
|
2021-02-16 00:28:00 +00:00
|
|
|
background-color: $osd_bg_color;
|
|
|
|
border-radius: 99px;
|
|
|
|
padding: $base_padding $base_padding * 2;
|
2019-12-19 15:38:27 +00:00
|
|
|
text-align: center;
|
2020-12-11 12:47:28 +00:00
|
|
|
-y-offset: $base_margin * 3; // distance from the dash edge
|
2019-12-18 21:25:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Show apps button
|
|
|
|
.show-apps {
|
2020-01-25 08:53:17 +00:00
|
|
|
@include overview-icon($osd_fg_color);
|
2019-12-18 21:25:03 +00:00
|
|
|
|
2019-12-19 19:11:59 +00:00
|
|
|
&:focus,
|
2020-01-25 08:53:17 +00:00
|
|
|
&:checked {
|
2019-12-19 19:11:59 +00:00
|
|
|
.overview-icon {
|
2021-01-05 12:57:25 +00:00
|
|
|
background-color: transparentize($osd_bg_color,0.5);
|
2019-12-19 19:11:59 +00:00
|
|
|
color: $fg_color;
|
|
|
|
}
|
2019-12-19 15:38:27 +00:00
|
|
|
}
|
2019-12-18 21:25:03 +00:00
|
|
|
}
|