diff options
author | Jakub Steiner <jimmac@gmail.com> | 2021-02-22 14:58:58 +0100 |
---|---|---|
committer | Marge Bot <marge-bot@gnome.org> | 2021-03-01 14:16:04 +0000 |
commit | 6390265ba1cdf375c36e5df0fd8f9b632378711c (patch) | |
tree | 4b72524f86101cba60dba2d8c89df7f1f70afa87 /data | |
parent | e2c140715383226b609ab866d234ddf607540743 (diff) | |
download | gnome-shell-6390265ba1cdf375c36e5df0fd8f9b632378711c.tar.gz |
style: App folder styling
Fixes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3754
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1714>
Diffstat (limited to 'data')
-rw-r--r-- | data/theme/gnome-shell-sass/_drawing.scss | 3 | ||||
-rw-r--r-- | data/theme/gnome-shell-sass/_widgets.scss | 2 | ||||
-rw-r--r-- | data/theme/gnome-shell-sass/widgets/_app-grid.scss | 7 |
3 files changed, 6 insertions, 6 deletions
diff --git a/data/theme/gnome-shell-sass/_drawing.scss b/data/theme/gnome-shell-sass/_drawing.scss index 54ff9d4a0..d5d959f07 100644 --- a/data/theme/gnome-shell-sass/_drawing.scss +++ b/data/theme/gnome-shell-sass/_drawing.scss @@ -218,7 +218,8 @@ &:drop { .overview-icon { - background-color: transparentize($selected_bg_color, .15); + border: 2px solid $selected_bg_color; //already 2px transparent so no jumping + background-color: transparentize($selected_bg_color, .8); } } diff --git a/data/theme/gnome-shell-sass/_widgets.scss b/data/theme/gnome-shell-sass/_widgets.scss index 87dab2ad7..a8d0aa9f4 100644 --- a/data/theme/gnome-shell-sass/_widgets.scss +++ b/data/theme/gnome-shell-sass/_widgets.scss @@ -37,8 +37,8 @@ @import 'widgets/window-picker'; @import 'widgets/search-entry'; @import 'widgets/search-results'; -@import 'widgets/app-grid'; @import 'widgets/dash'; +@import 'widgets/app-grid'; @import 'widgets/workspace-thumbnails'; // A11y / misc @import 'widgets/a11y'; diff --git a/data/theme/gnome-shell-sass/widgets/_app-grid.scss b/data/theme/gnome-shell-sass/widgets/_app-grid.scss index da17e5321..bbe721600 100644 --- a/data/theme/gnome-shell-sass/widgets/_app-grid.scss +++ b/data/theme/gnome-shell-sass/widgets/_app-grid.scss @@ -34,15 +34,14 @@ $app_grid_fg_color: #fff; /* App Folders */ .app-well-app.app-folder { - background-color: transparentize($osd_bg_color, 0.8); + background-color: darken($system_bg_color, 3%); border-radius: $base_border_radius + 4px; // same as %icon_tile } // expanded folder -.app-folder-dialog { +.app-folder-dialog { //style like the dash border-radius: $modal_radius * 1.5; - border: 1px solid $osd_outer_borders_color; - background-color: transparentize(darken($osd_bg_color,10%), 0.05); + background-color: $dash_background_color; padding: 12px; & .folder-name-container { |