mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-06 04:08:22 +01:00
Merge branch '2.1.2-wip' of https://github.com/advancedrei/bootstrap into advancedrei-2.1.2-wip
This commit is contained in:
commit
7763cab608
@ -163,7 +163,6 @@
|
|||||||
.dropdown-submenu {
|
.dropdown-submenu {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Default dropdowns
|
// Default dropdowns
|
||||||
.dropdown-submenu > .dropdown-menu {
|
.dropdown-submenu > .dropdown-menu {
|
||||||
top: 0;
|
top: 0;
|
||||||
@ -207,6 +206,40 @@
|
|||||||
border-left-color: @dropdownLinkColorHover;
|
border-left-color: @dropdownLinkColorHover;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Left-opening Sub menus
|
||||||
|
// ---------------------------
|
||||||
|
.dropdown-submenu-left {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.dropdown-submenu-left > .dropdown-menu {
|
||||||
|
top: 0;
|
||||||
|
left: -100%;
|
||||||
|
margin-top: -6px;
|
||||||
|
margin-left: -1px;
|
||||||
|
-webkit-border-radius: 6px 0px 6px 6px;
|
||||||
|
-moz-border-radius: 6px 0px 6px 6px;
|
||||||
|
border-radius: 6px 0px 6px 6px;
|
||||||
|
}
|
||||||
|
.dropdown-submenu-left:hover > .dropdown-menu {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-submenu-left > a:before {
|
||||||
|
display: block;
|
||||||
|
content: " ";
|
||||||
|
float: left;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
border-color: transparent;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 5px 5px 5px 0px;
|
||||||
|
border-right-color: darken(@dropdownBackground, 20%);
|
||||||
|
margin-top: 5px;
|
||||||
|
margin-left: -10px;
|
||||||
|
}
|
||||||
|
.dropdown-submenu-left:hover > a:after {
|
||||||
|
border-right-color: @dropdownLinkColorHover;
|
||||||
|
}
|
||||||
|
|
||||||
// Tweak nav headers
|
// Tweak nav headers
|
||||||
// -----------------
|
// -----------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user