55d85cd55b
Only the area used by favorite apps can be used as drop targets, it is not possible to add new favorites between the running apps at the end. While that behavior makes sense, it is currently impossible to distinguish the two areas with confusing results. Address this by adding a visual separator between favorites and running apps. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1606>
63 lines
1.3 KiB
SCSS
63 lines
1.3 KiB
SCSS
/* Dash */
|
|
|
|
$dash_placeholder_size: 32px;
|
|
$dash_spacing: $base_padding + 4px;
|
|
$dash_border_radius: $modal_radius * 1.5;
|
|
|
|
#dash {
|
|
@extend %overview_panel;
|
|
@include fontsize($base_font_size - 2);
|
|
margin: $base_margin * 4 $base_margin * 2;
|
|
padding: ($dash_spacing / 2) 0;
|
|
|
|
border-radius: $dash_border_radius;
|
|
|
|
.placeholder {
|
|
// background-image: url("resource:///org/gnome/shell/theme/dash-placeholder.svg");
|
|
background-image:none;
|
|
background-size: contain;
|
|
height: $dash_placeholder_size;
|
|
}
|
|
|
|
.empty-dash-drop-target {
|
|
width: $dash_placeholder_size;
|
|
height: $dash_placeholder_size;
|
|
}
|
|
}
|
|
|
|
// Dash Items
|
|
.dash-item-container > StWidget {
|
|
padding: ($dash_spacing / 2) $dash_spacing;
|
|
}
|
|
|
|
.dash-separator {
|
|
width: 1px;
|
|
background-color: transparentize($osd_fg_color,0.7);
|
|
}
|
|
|
|
// OSD Tooltip
|
|
.dash-label {
|
|
background-color: transparentize($osd_bg_color,0.05);
|
|
border-radius: $base_border_radius + 2px;
|
|
border:none;
|
|
box-shadow:0 0 0 1px $osd_outer_borders_color;
|
|
color: $osd_fg_color;
|
|
padding: $base_padding $base_padding + 2px;
|
|
text-align: center;
|
|
-y-offset: $base_margin * 3; // distance from the dash edge
|
|
}
|
|
|
|
// Show apps button
|
|
.show-apps {
|
|
@include overview-icon($osd_fg_color);
|
|
|
|
&:focus,
|
|
&:checked {
|
|
.overview-icon {
|
|
background-color: transparentize($osd_bg_color,0.5);
|
|
color: $fg_color;
|
|
}
|
|
}
|
|
}
|
|
|