MDL-55074 theme_boost: Make dropdowns consistent

Links in drop down menu items should fill the entire row and be
displayed as normal text color (they are like buttons).
This commit is contained in:
Damyon Wiese 2016-10-14 10:26:19 +08:00
parent b45fdc6838
commit 70fda55e85

View File

@ -2199,3 +2199,10 @@ $footer-link-color: $brand-primary !default;
#page-footer a {
color: $footer-link-color;
}
// Make links in a menu clickable anywhere in the row.
.dropdown-item a {
display: block;
width: 100%;
color: $body-color;
}