diff options
| author | Mark Otto <[email protected]> | 2012-07-27 10:35:15 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-07-27 10:35:15 -0700 |
| commit | 16b4ac0d8fd5fd2aa588a8b486b71b449e3821ca (patch) | |
| tree | 7c0ad257b6bb192c59bc1576b421f62883085a97 /docs/assets | |
| parent | 9d5c4312232ebb53b2499ed495851c0d61eb648c (diff) | |
| download | bootstrap-16b4ac0d8fd5fd2aa588a8b486b71b449e3821ca.tar.xz bootstrap-16b4ac0d8fd5fd2aa588a8b486b71b449e3821ca.zip | |
add docs for sub menu support on dropdowns, add caret via :after to submenu toggles
Diffstat (limited to 'docs/assets')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index f24baf581..c59a7fd97 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2763,7 +2763,7 @@ table .span24 { .dropdown-submenu > .dropdown-menu { top: 0; left: 100%; - margin-top: -5px; + margin-top: -6px; margin-left: -1px; -webkit-border-radius: 0 6px 6px 6px; -moz-border-radius: 0 6px 6px 6px; @@ -2774,6 +2774,24 @@ table .span24 { display: block; } +.dropdown-submenu > a:after { + display: block; + float: right; + width: 0; + height: 0; + margin-top: 5px; + margin-right: -10px; + border-color: transparent; + border-left-color: #cccccc; + border-style: solid; + border-width: 5px 0 5px 5px; + content: " "; +} + +.dropdown-submenu:hover > a:after { + border-left-color: #ffffff; +} + .dropdown .dropdown-menu .nav-header { padding-right: 20px; padding-left: 20px; |
