diff options
| author | Mark Otto <[email protected]> | 2013-10-28 20:51:39 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-10-28 20:51:39 -0700 |
| commit | 67cab7fa05b31d5e9579a9b96c95a434489f5548 (patch) | |
| tree | 8153e399ee3bf452ed91ab0f91f35fe19d1dc338 /dist/css/bootstrap.css | |
| parent | dcf51315a3da3755248bc06c1131f335de5e5c62 (diff) | |
| download | bootstrap-67cab7fa05b31d5e9579a9b96c95a434489f5548.tar.xz bootstrap-67cab7fa05b31d5e9579a9b96c95a434489f5548.zip | |
Fixes #10516: Use auto positioning for dropdowns in justified nav to fix Firefox rendering
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index f1ef9492d..338f1a089 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4131,6 +4131,11 @@ textarea.input-group-sm > .input-group-btn > .btn { text-align: center; } +.nav-tabs.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} + @media (min-width: 768px) { .nav-tabs.nav-justified > li { display: table-cell; @@ -4212,6 +4217,11 @@ textarea.input-group-sm > .input-group-btn > .btn { text-align: center; } +.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} + @media (min-width: 768px) { .nav-justified > li { display: table-cell; |
