fix styling of filepicker dialog

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2016-11-25 20:49:50 +01:00
Родитель 47646794b9
Коммит f4d79485d7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 425003AC385454C5
3 изменённых файлов: 15 добавлений и 8 удалений

Просмотреть файл

@ -14,17 +14,14 @@
background: #fff;
margin-left: 12px;
}
.oc-dialog-content {
z-index: 1000;
}
.oc-dialog-separator {
}
.oc-dialog-buttonrow {
position: relative;
display: block;
background: transparent;
right: 0;
bottom: 0;
padding: 10px;
padding: 20px;
padding-bottom: 10px;
box-sizing: border-box;
width: 100%;
background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
@ -42,6 +39,14 @@
.oc-dialog-buttonrow.onebutton button {
float: right;
}
.oc-dialog-buttonrow:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
.oc-dialog-close {
position: absolute;

Просмотреть файл

@ -773,7 +773,7 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin
box-sizing: border-box;
display: inline-block;
overflow-y: auto;
height: 321px;
height: calc(100% + 20px); /** overflow under the button row */
width: 100%;
padding-bottom: 55px;
}

Просмотреть файл

@ -180,7 +180,9 @@
content_height -= this.$buttonrow.outerHeight(true);
}
this.parent = this.$dialog.parent().length > 0 ? this.$dialog.parent() : $('body');
content_height = Math.min(content_height, this.parent.height()-20);
if (this.parent.height() > 0) {
content_height = Math.min(content_height, this.parent.height() - 20);
}
if (content_height> 0) {
this.element.css({
height: content_height + 'px',