##// END OF EJS Templates
Merge pull request #8044 from minrk/shortcut-scroll...
Matthias Bussonnier -
r20705:dcbabca7 merge
parent child Browse files
Show More
@@ -120,9 +120,11 b' span#login_widget > .button,'
120 120 // class for stretching dialogs to fill the screen
121 121 .modal_stretch .modal-dialog {
122 122 .vbox();
123 min-height: 80%;
123 min-height: 80vh;
124 124 .modal-body {
125 max-height: none;
125 // ~"foo" is to avoid less turning this into a weird value
126 max-height: calc(~"100vh - 200px");
127 overflow: auto;
126 128 flex: 1;
127 129 }
128 130 }
@@ -8572,10 +8572,11 b' span#login_widget > .button .badge,'
8572 8572 display: flex;
8573 8573 flex-direction: column;
8574 8574 align-items: stretch;
8575 min-height: 80%;
8575 min-height: 80vh;
8576 8576 }
8577 8577 .modal_stretch .modal-dialog .modal-body {
8578 max-height: none;
8578 max-height: calc(100vh - 200px);
8579 overflow: auto;
8579 8580 flex: 1;
8580 8581 }
8581 8582 @media (min-width: 768px) {
General Comments 0
You need to be logged in to leave comments. Login now