diff options
| author | Mark Otto <[email protected]> | 2012-11-04 13:01:31 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-11-04 13:01:31 -0800 |
| commit | fb51efcbd4d18a0a66cc94ee537623f567d059d4 (patch) | |
| tree | f34999d7c534ecbf6cbb153934a07ecec7087948 | |
| parent | 2320a0989869900e92ab4e3cd78ffad9e6375337 (diff) | |
| download | bootstrap-fb51efcbd4d18a0a66cc94ee537623f567d059d4.tar.xz bootstrap-fb51efcbd4d18a0a66cc94ee537623f567d059d4.zip | |
Fixes #5113: increase .typeahead z-index for proper use with modals
| -rw-r--r-- | docs/assets/css/bootstrap.css | 1 | ||||
| -rw-r--r-- | less/dropdowns.less | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index a5a1ca4a3..848078a9e 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -3027,6 +3027,7 @@ table th[class*="span"], } .typeahead { + z-index: 1051; margin-top: 2px; -webkit-border-radius: 4px; -moz-border-radius: 4px; diff --git a/less/dropdowns.less b/less/dropdowns.less index 730ff6e19..90f3741e8 100644 --- a/less/dropdowns.less +++ b/less/dropdowns.less @@ -226,6 +226,7 @@ // Typeahead // --------- .typeahead { + z-index: 1051; margin-top: 2px; // give it some space to breathe .border-radius(@baseBorderRadius); } |
