diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2016-02-22 09:08:36 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-26 17:20:18 +0000 |
commit | df2808f5f60736d01c11aaa247377b003899c735 (patch) | |
tree | 56c772ad37757cb0516bb8a5c87cda8bd92edfa1 /bitbake/lib/toaster/toastergui/static | |
parent | 6c51f0850f11c60c38e12530b26ba06bb3e9c3c4 (diff) | |
download | poky-df2808f5f60736d01c11aaa247377b003899c735.tar.gz |
bitbake: toaster: reduce max height of modal dialogs
Now that we use modal dialogs to display dependency information for
packages, we are hitting their maximum height relatively often. It is set
by default to 400px, which makes it a bit tight at a 1280x800 viewport
size.
Reduce the maximum height to 300px to make things a bit more
comfortable.
(Bitbake rev: e36001d61768979d66cba0f3d4f5a2aaf4af2cb7)
Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static')
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/css/default.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css index c5a580f7f2..c1cb93c6e5 100644 --- a/bitbake/lib/toaster/toastergui/static/css/default.css +++ b/bitbake/lib/toaster/toastergui/static/css/default.css | |||
@@ -51,6 +51,7 @@ dd li { line-height: 25px; } | |||
51 | /* Style the filter modal dialogs */ | 51 | /* Style the filter modal dialogs */ |
52 | .modal { width: 800px; margin-left: -400px; } | 52 | .modal { width: 800px; margin-left: -400px; } |
53 | .modal-footer .btn { float: left; } | 53 | .modal-footer .btn { float: left; } |
54 | .modal-body { max-height: 300px; } | ||
54 | 55 | ||
55 | /* Hover style for the clear search icon */ | 56 | /* Hover style for the clear search icon */ |
56 | .icon-remove-sign:hover { color: #999999; cursor: pointer; } | 57 | .icon-remove-sign:hover { color: #999999; cursor: pointer; } |