MDL-41383 theme: filepicker zoom resiliency

Fixed an issue that broke the file picker on bootstrapbase when zooming in and out.
This commit is contained in:
Jetha Chan 2014-05-12 17:16:58 +08:00
parent c1ed254643
commit b993411de1
2 changed files with 16 additions and 3 deletions

View File

@ -96,16 +96,29 @@
float: right;
}
.file-picker .fp-repo-items {
float: none;
width: auto;
margin-left:181px;
}
.moodle-dialogue-fullscreen .file-picker .fp-repo-items {
margin-left: 0px;
margin-right:0px;
float: left;
width: 693px;
}
.dir-rtl .file-picker .fp-repo-items {
margin-left: 0px;
margin-right:181px;
}
.dir-rtl .moodle-dialogue-fullscreen .file-picker .fp-repo-items {
margin-left: 0px;
margin-right:0px;
float: right;
}
.file-picker .fp-navbar {
background: #F2F2F2;
border-bottom: 1px solid #BBBBBB;
min-height: 40px;
overflow: hidden;
}
.file-picker .fp-navbar .fp-viewbar {
margin: 4px;
@ -113,7 +126,7 @@
.file-picker .fp-content {
background: #FFFFFF;
clear: both;
clear: none;
overflow: auto;
height: 452px;
}

File diff suppressed because one or more lines are too long