Keep Recent Activity nav buttons inside parent div

When the recent activity box is full with longer activities, the nav
buttons can get pushed ouut the bottom of the div because of the height
being set explicitly. Changing to max-height fixes the problem.
This commit is contained in:
bigjohn322 2014-11-28 12:55:13 -06:00
parent d1c3d854e9
commit e5599b4af5

View file

@ -822,7 +822,7 @@ progress {
} }
.firstDashboardHomeRightColumn .ui-collapsible-content { .firstDashboardHomeRightColumn .ui-collapsible-content {
height: 585px; min-height: 585px;
} }
} }