Browse Source

Fix flash of double scrollbar on modal #787

pull/1063/head
jlukic 10 years ago
parent
commit
644e2c69b1
1 changed files with 3 additions and 2 deletions
  1. 5
      src/definitions/modules/modal.less

5
src/definitions/modules/modal.less

@ -250,13 +250,14 @@
*******************************/ *******************************/
/* A modal that cannot fit on the page */ /* A modal that cannot fit on the page */
.ui.scrolling.dimmable.dimmed { .ui.scrolling.dimmable.dimmed {
overflow: hidden; overflow: hidden;
} }
.ui.scrolling.dimmable.dimmed > .dimmer {
overflow: auto;
}
.ui.scrolling.dimmable > .dimmer { .ui.scrolling.dimmable > .dimmer {
position: fixed; position: fixed;
overflow: auto;
} }
.ui.modal.scrolling { .ui.modal.scrolling {
position: static; position: static;

Loading…
Cancel
Save