1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-05 10:16:57 +00:00

Fix for inability to scroll modal wizards

This commit is contained in:
Jermolene 2014-05-26 22:33:42 +01:00
parent ecbda326cb
commit 128ad01866

View File

@ -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;
}
}