From f84e95c59e9f738b13574510a70f2c09d74ce23c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20H=C3=A4ussner?= Date: Sun, 8 Sep 2013 20:27:26 +0200 Subject: [PATCH] Make the notification list only cover 90% height If you open the notification list on small pages it can get higher than the browser window if you have many notification. This would cause double scollbars when only one is necessary. By changing the maximum height to 90% there appears a small grey bar at the bottom of the notification bar, but it should fix the problem with new extra scrollbars appearing for most screen sizes. --- frontend/app/css/notifications.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/css/notifications.less b/frontend/app/css/notifications.less index 8b926b2959..4732202a40 100644 --- a/frontend/app/css/notifications.less +++ b/frontend/app/css/notifications.less @@ -75,7 +75,7 @@ li.new-notification { overflow-y: auto; height: auto; min-height: 5em; - max-height: 100%; + max-height: 90%; } #list-notifications {