Added dropdown-menu correct colors on active, hover and focus state

This commit is contained in:
Tim Hovius 2015-02-23 09:59:38 +01:00
parent f9c20e4ee2
commit 35fb7cc8a6

View File

@ -167,6 +167,23 @@
.navbar-form .form-control-wrapper input.form-control::placeholder, .navbar-form input.form-control::placeholder {
color: @text-color;
}
.dropdown-menu {
li > a {
&:hover,
&:focus {
color: @material-color;
}
}
.active > a {
&:hover,
&:focus {
color: @text-color;
}
background-color: @material-color;
color: @text-color;
}
}
});
&-inverse {