From aa1d36b232ef2cdf7f80f090f95e76d803bc4d07 Mon Sep 17 00:00:00 2001 From: Jack Date: Sun, 28 Jan 2018 19:24:39 -0800 Subject: [PATCH] Fix issue with scrolling modal and allowMultiple #2423 --- RELEASE-NOTES.md | 2 +- src/definitions/modules/modal.less | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 9360114cb1..d8333ad4dc 100755 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -4,6 +4,7 @@ **Critical Bugs** - **Form** - Fixes issue where radio checkbox would not return correct value from `get values` **Thanks @tincdev** #5713 #6043 +- **Modal** - Fixes issue where an oversized modal would appear behind an existing modal when using `allowMultiple: true` and a second modal that is larger than the sreen height. #2423 **Enhancements** - **Button** - Youtube's red color now matches their current brand guidelines **Thanks @hammy2899** #6110 @@ -11,7 +12,6 @@ - **Reveal** - `ribbon label` can now work with `reveal` #5681 **Bugs** -- **Form** - Fixe - **Dropdown** - Fixed issue where dropdown could incorrectly open upward and leftward opening when using `context` setting due to an incorrect offset calculation. **Thanks @dannyBies** #5974 #5366 - **Visibility** - Fixes issue where `bottomPassed` and `topPassed` would not fire under some conditions - **Dropdown** - Fixes issue where dropdowns might accidentally animate closed two times when quickly tabbing through fields diff --git a/src/definitions/modules/modal.less b/src/definitions/modules/modal.less index eb9f42a175..19a535e086 100755 --- a/src/definitions/modules/modal.less +++ b/src/definitions/modules/modal.less @@ -353,7 +353,9 @@ position: fixed; } .modals.dimmer .ui.scrolling.modal { - position: static !important; + position: relative !important; + left: auto !important; + top: auto !important; margin: @scrollingMargin auto !important; }