causeway-standard-theme
Version:
94 lines (80 loc) • 1.56 kB
text/less
// Dropdown
// --------------------------------------------------
.dropdown-menu {
border-radius: 0;
margin-top: 0;
.box-shadow(none);
border: 1px solid @enterprise-blue;
> li > a {
text-decoration: none;
&:hover,
&:focus {
background-color: @enterprise-blue;
color: @white;
}
}
}
.dropdown-submenu {
position:relative;
> .dropdown-menu {
.box-shadow(none);
top: 0;
left: 100%;
margin-top: -6px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
&:hover > .dropdown-menu {
display: block;
}
> a:after {
font-family: "FontAwesome";
.font-size(8);
display: block;
content: "\f054";
float: right;
line-height: 18px;
margin-right: -10px;
}
&:hover > a {
background-color: @enterprise-blue;
color: @white;
&:after{
border-left-color: @white;
}
}
.pull-left {
float: none;
}
.pull-left > .dropdown-menu {
left: -100%;
margin-left: 10px;
-webkit-border-radius: 6px 0 6px 6px;
-moz-border-radius: 6px 0 6px 6px;
border-radius: 6px 0 6px 6px;
}
}
.three-line-menu {
.inline;
position: relative;
> .dropdown-menu {
margin-top: 0;
left: 0;
right: auto;
}
> a {
display: block;
background-color: @enterprise-blue;
width: 35px;
height: 24px;
font-family: 'CausewayGlyphicons';
text-align: center;
line-height: 24px;
font-weight: normal;
color: @white;
&:before {
content: "\e804";
}
}
}