Fix for inability to scroll modal wizards

print-window-tiddler
Jermolene 2014-05-26 22:33:42 +01:00
rodzic ecbda326cb
commit 128ad01866
1 zmienionych plików z 13 dodań i 5 usunięć

Wyświetl plik

@ -878,6 +878,16 @@ canvas.tw-edit-bitmapeditor {
** Modals
*/
.modal-wrapper {
position: fixed;
overflow: auto;
overflow-y: scroll;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.modal-backdrop {
position: fixed;
top: 0;
@ -910,11 +920,9 @@ canvas.tw-edit-bitmapeditor {
@media (min-width: 55em) {
.modal {
position: fixed;
top: 50%;
left: 50%;
width: 560px;
margin: -180px 0 0 -280px;
position: relative;
width: 50%;
margin: 30px auto;
}
}