df9129b2a0
Use a bit less margin at the top and add some margin at the bottom of the search entry. This should ensure the search entry is closer to the panel than to the workspaces and avoid associating the workspace thumbnails with the search instead of the window picker. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1702>
38 lines
900 B
SCSS
38 lines
900 B
SCSS
// Search entry
|
|
|
|
$search_entry_width: 320px;
|
|
$search_entry_height: 36px;
|
|
|
|
%search_entry,
|
|
.search-entry {
|
|
width: $search_entry_width;
|
|
padding: $base_padding+1 $base_padding+3;
|
|
border-radius: $search_entry_height * 0.5; // half the height
|
|
color: transparentize($fg_color,0.3);
|
|
background-color: $bg_color;
|
|
border-color: $borders_color;
|
|
margin-top: $base_spacing * 2;
|
|
margin-bottom: $base_spacing;
|
|
|
|
&:hover {
|
|
background-color: $hover_bg_color;
|
|
border-color: $hover_borders_color;
|
|
color: $hover_fg_color;
|
|
}
|
|
|
|
&:focus {
|
|
padding: $base_padding $base_padding+2; // 1px less to account for wider border
|
|
border-width: 2px;
|
|
border-style: solid;
|
|
border-color: $selected_bg_color;
|
|
color: $fg_color;
|
|
box-shadow: inset 0 1px 2px 1px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.search-entry-icon {
|
|
icon-size: $base_icon_size;
|
|
padding: 0 4px;
|
|
color: inherit;
|
|
}
|
|
}
|