diff options
| author | Jacob Thornton <[email protected]> | 2012-01-28 12:08:41 -0800 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-01-28 12:08:41 -0800 |
| commit | 12d3c2fe74bbe2570e47a2c8d7154a3011bd0770 (patch) | |
| tree | 8805a449345adbee6ac434a45bc8b4c2882c959b /docs/assets/css | |
| parent | c2c02d104c5e5a96330cf00a727d62687d863e02 (diff) | |
| download | bootstrap-12d3c2fe74bbe2570e47a2c8d7154a3011bd0770.tar.xz bootstrap-12d3c2fe74bbe2570e47a2c8d7154a3011bd0770.zip | |
fix z-index issue with modals for popovers,tooltips,and dropdowns
Diffstat (limited to 'docs/assets/css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index cd0d620bf..1cce5e9df 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2238,6 +2238,18 @@ table .span12 { .pager .previous a { float: left; } +.modal-open .dropdown-menu { + z-index: 2050; +} +.modal-open .dropdown.open { + *z-index: 2050; +} +.modal-open .popover { + z-index: 2060; +} +.modal-open .tooltip { + z-index: 2070; +} .modal-backdrop { position: fixed; top: 0; |
