Skip to content

Commit

Permalink
Make the notification list only cover 90% height
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bxt committed Sep 8, 2013
1 parent 7a3f104 commit f84e95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/css/notifications.less
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ li.new-notification {
overflow-y: auto;
height: auto;
min-height: 5em;
max-height: 100%;
max-height: 90%;
}

#list-notifications {
Expand Down

0 comments on commit f84e95c

Please sign in to comment.