diff options
| author | Mark Otto <[email protected]> | 2012-08-14 14:32:03 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-14 14:32:03 -0700 |
| commit | 0b0d7f104c08307e0a6f275ccaa60db580d6f728 (patch) | |
| tree | 00a8a9b818c41d805987aca62f9d09c234b3f88c /docs/assets/css/bootstrap.css | |
| parent | 2a6deb92b1786d572ed23347e486043e0df63547 (diff) | |
| download | bootstrap-0b0d7f104c08307e0a6f275ccaa60db580d6f728.tar.xz bootstrap-0b0d7f104c08307e0a6f275ccaa60db580d6f728.zip | |
fixes #4396: pull right dropdown menus no longer overlaid by submenus
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index c7fbc3e96..ec63378c5 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4360,6 +4360,17 @@ input[type="submit"].btn.btn-mini { left: auto; } +.navbar .pull-right .dropdown-menu .dropdown-menu, +.navbar .dropdown-menu.pull-right .dropdown-menu { + right: 100%; + left: auto; + margin-right: -1px; + margin-left: 0; + -webkit-border-radius: 6px 0 6px 6px; + -moz-border-radius: 6px 0 6px 6px; + border-radius: 6px 0 6px 6px; +} + .navbar-inverse { color: #999999; } |
