1
0
mirror of https://github.com/moodle/moodle.git synced 2025-05-12 19:25:35 +02:00

MDL-56662 boost: Don't mess with display, set min-height

Changing the display was messing with the layout of some things in the
file picker. Lets set the min-height instead which has less
side-effects.
This commit is contained in:
Damyon Wiese 2016-11-09 15:14:24 +08:00
parent 55a3911408
commit b8396c335a

@ -31,9 +31,9 @@
height: auto; height: auto;
} }
/* The javascript is adding a style="height: 0px;" to this element - we need to set the display so the height is ignored. */ /* The javascript is adding a style="height: 0px;" to this element - we need to set the min-height so the height is ignored. */
.filepicker .moodle-dialogue-bd { .filepicker .moodle-dialogue-bd {
display: table; min-height: 520px;
} }
.file-picker .fp-navbar { .file-picker .fp-navbar {
border-bottom: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5;