Make ListingChooser full-height on short pages.

The JS check in ListingChooser.initialize only takes care of the case
where the list of multis is longer than the body. However, when there
are very few multis *and* the page content is short, you get a weird
truncated listing chooser. This fixes that by setting a min-height on
body which works because html is already height: 100%.
This commit is contained in:
Neil Williams
2013-10-11 15:41:57 -07:00
parent 5cd9d0099e
commit 3e846946be

View File

@@ -43,6 +43,7 @@ body {
font: normal x-small verdana, arial, helvetica, sans-serif;
background-color: white;
z-index: 1;
min-height: 100%;
}
textarea { font: normal small verdana, arial, helvetica, sans-serif; }