##// 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 // class for stretching dialogs to fill the screen
120 // class for stretching dialogs to fill the screen
121 .modal_stretch .modal-dialog {
121 .modal_stretch .modal-dialog {
122 .vbox();
122 .vbox();
123 min-height: 80%;
123 min-height: 80vh;
124 .modal-body {
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 flex: 1;
128 flex: 1;
127 }
129 }
128 }
130 }
@@ -8572,10 +8572,11 b' span#login_widget > .button .badge,'
8572 display: flex;
8572 display: flex;
8573 flex-direction: column;
8573 flex-direction: column;
8574 align-items: stretch;
8574 align-items: stretch;
8575 min-height: 80%;
8575 min-height: 80vh;
8576 }
8576 }
8577 .modal_stretch .modal-dialog .modal-body {
8577 .modal_stretch .modal-dialog .modal-body {
8578 max-height: none;
8578 max-height: calc(100vh - 200px);
8579 overflow: auto;
8579 flex: 1;
8580 flex: 1;
8580 }
8581 }
8581 @media (min-width: 768px) {
8582 @media (min-width: 768px) {
General Comments 0
You need to be logged in to leave comments. Login now