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>
47 lines
1.0 KiB
SCSS
47 lines
1.0 KiB
SCSS
/* Window Picker */
|
|
$window_close_button_color: transparentize(lighten($system_bg_color, 7%), .02);
|
|
|
|
// Window picker
|
|
.window-picker {
|
|
// Space between window thumbnails
|
|
spacing: $base_padding;
|
|
}
|
|
|
|
// Window titles
|
|
.window-caption {
|
|
@extend %tooltip;
|
|
}
|
|
|
|
// Close button
|
|
.window-close {
|
|
background-color: $window_close_button_color;
|
|
color: $system_fg_color;
|
|
border-radius: $forced_circular_radius;
|
|
box-shadow: 0 2px 4px 0 $shadow_color;
|
|
padding: $base_padding * 0.5;
|
|
height: $large_icon_size;
|
|
width: $large_icon_size;
|
|
transition-duration: 100ms;
|
|
|
|
& StIcon { icon-size: $medium_icon_size; }
|
|
|
|
&:hover {
|
|
background-color: lighten($window_close_button_color, 7%);
|
|
}
|
|
|
|
&:active {
|
|
background-color: lighten($window_close_button_color, 13%);
|
|
}
|
|
|
|
@if $is_highcontrast {
|
|
border:2px solid $hc_inset_color;
|
|
}
|
|
}
|
|
|
|
.workspace-background {
|
|
// keep in sync with BACKGROUND_CORNER_RADIUS_PIXELS in workspace.js
|
|
border-radius: 30px;
|
|
background-color: $invisible_occluded_bg_color;
|
|
box-shadow: 0 4px 16px 4px $shadow_color;
|
|
}
|