dash: Resolve padding and alignment issues with dash items

- revert a change to y-expand on dash items
- clean up the manual padding on dash items in stylesheet
- fix an issue with the running dot being misaligned

Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7322
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3119>
This commit is contained in:
Sam Hewitt
2024-01-15 11:49:40 -03:30
committed by Marge Bot
parent 38944e1c8f
commit b14623c664
2 changed files with 12 additions and 5 deletions

View File

@ -153,7 +153,7 @@ class DashItemContainer extends St.Widget {
this.destroy_all_children();
this.child = actor;
this.child.y_expand = false;
this.child.y_expand = true;
this.add_child(this.child);
}