summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Steiner <jimmac@gmail.com>2021-02-04 13:26:23 +0100
committerJakub Steiner <jimmac@gmail.com>2021-02-04 13:26:23 +0100
commite0f34dbcbbb33f5edee31f2c36245d1df8cd7363 (patch)
tree6bcafef139775e776f74bbf78b224340e14d1317
parent1adcbaab46c879228ad8b34392b82f317d15cfde (diff)
downloadgnome-shell-wip/jimmac/dash-icon-spacing-on-master.tar.gz
theme: adjust dash icon spacingwip/jimmac/dash-icon-spacing-on-master
- slight separation between favorites and the app-well icon Fixes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3640
-rw-r--r--data/theme/gnome-shell-sass/widgets/_dash.scss17
1 files changed, 12 insertions, 5 deletions
diff --git a/data/theme/gnome-shell-sass/widgets/_dash.scss b/data/theme/gnome-shell-sass/widgets/_dash.scss
index a1f6249cc..d8d926d3e 100644
--- a/data/theme/gnome-shell-sass/widgets/_dash.scss
+++ b/data/theme/gnome-shell-sass/widgets/_dash.scss
@@ -27,15 +27,22 @@ $dash_border_radius: $modal_radius * 1.5;
}
// Dash Items
-.dash-item-container > StWidget {
- padding: ($dash_spacing / 2) $dash_spacing;
+.dash-item-container {
+ & > StWidget {
+ padding: ($dash_spacing / 2) 0; //all compact
+ }
}
-.dash-separator {
- width: 1px;
- background-color: transparentize($osd_fg_color,0.7);
+.app-well-app:first-child {
+ padding-left: $dash_spacing; //first one padded
+}
+.show-apps:last-child { //last one padded slightly from the favorites
+ padding: ($dash_spacing / 2) $dash_spacing ($dash_spacing / 2) ($dash_spacing / 2);
}
+
+//.overview-icon {}
+
// OSD Tooltip
.dash-label {
background-color: transparentize($osd_bg_color,0.05);