appDisplay: CSS cleanup & fixes for app dialog

- change the container and dialog actor alignments
- pad the container to not have dialog overlap panel
- clean up extraneous app-folder css

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3044>
This commit is contained in:
Sam Hewitt
2023-12-05 16:31:47 -03:30
committed by Marge Bot
parent 0ffddb0cd2
commit 15e0440a8b
2 changed files with 22 additions and 32 deletions

View File

@ -2531,16 +2531,16 @@ export const AppFolderDialog = GObject.registerClass({
style_class: 'app-folder-dialog',
x_expand: true,
y_expand: true,
x_align: Clutter.ActorAlign.FILL,
y_align: Clutter.ActorAlign.FILL,
x_align: Clutter.ActorAlign.CENTER,
y_align: Clutter.ActorAlign.CENTER,
vertical: true,
});
this.child = new St.Bin({
style_class: 'app-folder-dialog-container',
child: this._viewBox,
x_align: Clutter.ActorAlign.CENTER,
y_align: Clutter.ActorAlign.CENTER,
x_align: Clutter.ActorAlign.FILL,
y_align: Clutter.ActorAlign.FILL,
});
this._addFolderNameEntry();