745667a825
- updated mixin for tile_button - dropped the overview_button mixin - minor changes to dash, appDisplay and switcherPopup JS to accommodate new stylesheet - new focus style for all tile buttons - improved high contrast style support for app grid and dash - renamed some style-classes - tidied up dash stylesheet Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3017>
84 lines
1.9 KiB
SCSS
84 lines
1.9 KiB
SCSS
/* Dash */
|
|
|
|
// uses system colors
|
|
$dash_background_color: $system_overlay_bg_color;
|
|
|
|
$dash_placeholder_size: 32px;
|
|
$dash_padding: $base_padding * 1.5;
|
|
$dash_edge_offset: $base_margin * 3;
|
|
$dash_border_radius: $modal_radius + $dash_padding;
|
|
|
|
// container for the dash
|
|
#dash {
|
|
margin-top: $dash_edge_offset;
|
|
|
|
// background behind item container
|
|
.dash-background {
|
|
background-color: $dash_background_color;
|
|
border-radius: $dash_border_radius;
|
|
border: 2px solid transparent;
|
|
padding: $dash_padding * 2 $dash_padding; // padding is uneven
|
|
|
|
@if $is_highcontrast {
|
|
border-color: $hc_inset_color;
|
|
}
|
|
}
|
|
|
|
// items on the dash
|
|
.dash-item-container {
|
|
|
|
.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;
|
|
}
|
|
|
|
// app icons
|
|
.overview-tile {
|
|
// inherits styles from _app-grid.css
|
|
}
|
|
|
|
// button to show app grid
|
|
.show-apps {
|
|
@include tile_button($system_fg_color);
|
|
}
|
|
|
|
.show-apps, .overview-tile {
|
|
margin: $base_margin * 0.5;
|
|
padding: $base_padding;
|
|
border-radius: $base_border_radius * 2;}
|
|
}
|
|
|
|
// separator between pinned and running apps
|
|
.dash-separator {
|
|
width: 1px;
|
|
margin-left:$base_margin;
|
|
margin-right:$base_margin;
|
|
background-color: $system_borders_color;
|
|
|
|
@if $is_highcontrast {
|
|
width: 2px;
|
|
background-color: $hc_inset_color;
|
|
}
|
|
}
|
|
|
|
// make sure all dash components have same margin from screen edge
|
|
.dash-separator,
|
|
.dash-background,
|
|
.dash-item-container {
|
|
margin-bottom: $dash_edge_offset;
|
|
}
|
|
}
|
|
|
|
// OSD Tooltip
|
|
.dash-label {
|
|
@extend %tooltip;
|
|
-y-offset: $base_margin * 2; // distance from the dash edge
|
|
}
|