diff options
| author | Mark Otto <[email protected]> | 2012-05-28 01:13:24 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-05-28 01:13:24 -0700 |
| commit | 9699e1d70783122f99b7de67e58a95ddaef1e241 (patch) | |
| tree | d24fcbafeca2495513b5de3a2b3d9ddddb7c45c0 | |
| parent | 241cbd478dcacdbd0ddedaecb147bfc9b8f7e753 (diff) | |
| download | bootstrap-9699e1d70783122f99b7de67e58a95ddaef1e241.tar.xz bootstrap-9699e1d70783122f99b7de67e58a95ddaef1e241.zip | |
scope float right dropdown menus to immediate children
| -rw-r--r-- | docs/assets/css/bootstrap.css | 2 | ||||
| -rw-r--r-- | less/dropdowns.less | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 029e32db7..e34c4ee27 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2449,7 +2449,7 @@ table .span24 { display: block; } -.pull-right .dropdown-menu { +.pull-right > .dropdown-menu { right: 0; left: auto; } diff --git a/less/dropdowns.less b/less/dropdowns.less index 96dfec223..5e232556a 100644 --- a/less/dropdowns.less +++ b/less/dropdowns.less @@ -110,7 +110,7 @@ // Right aligned dropdowns // --------------------------- -.pull-right .dropdown-menu { +.pull-right > .dropdown-menu { right: 0; left: auto; } |
