diff options
| author | Gijs Boddeus <[email protected]> | 2017-08-12 21:44:25 +0200 |
|---|---|---|
| committer | Johann-S <[email protected]> | 2017-08-12 22:08:09 +0200 |
| commit | 9a03d7efc6ccb486c88a74eeafdfd97ac5f14abf (patch) | |
| tree | 257c0a354be76994c3727ec93d041af72c2520fb /assets | |
| parent | 7b8afff038e251acbdb28e455aec886d24a766e7 (diff) | |
| download | bootstrap-9a03d7efc6ccb486c88a74eeafdfd97ac5f14abf.tar.xz bootstrap-9a03d7efc6ccb486c88a74eeafdfd97ac5f14abf.zip | |
fix docs modal example fade out
the z-index was only corrected for `.modal.show` which made the modal drop behind the header and backdrop when fading out
simply dropping the `.show` from this selector will correct this issue
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/scss/_component-examples.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/scss/_component-examples.scss b/assets/scss/_component-examples.scss index 1acc5a242..629adcbec 100644 --- a/assets/scss/_component-examples.scss +++ b/assets/scss/_component-examples.scss @@ -285,7 +285,7 @@ } } -.modal.show { +.modal { z-index: 1072; .tooltip, .popover { |
