From e78b3644e414a60c120f3296b5bef045e5f681f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 15 Mar 2013 18:25:46 +0100 Subject: [PATCH] login-dialog: Increase top/bottom padding The login dialog has a maximum height set to prevent the user list from growing indefinitively. However this approach fails if the monitor height is smaller as said maximum, so add some additional top/bottom padding to make sure there's some whitespace above/below the user list in that case as well. https://bugzilla.gnome.org/show_bug.cgi?id=685851 --- data/theme/gnome-shell.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css index e355a4e8f..fd47d7766 100644 --- a/data/theme/gnome-shell.css +++ b/data/theme/gnome-shell.css @@ -2215,6 +2215,9 @@ StScrollBar StButton#vhandle:active { border: none; background-color: transparent; + padding-bottom: 80px; + padding-top: 80px; + border-radius: 16px; min-height: 150px; max-height: 700px;