adding padding to dropdown item and recompile

This commit is contained in:
koenemann 2017-01-05 15:23:00 +01:00
parent ea969369d9
commit 4aadbb4b3d
4 changed files with 14 additions and 4 deletions

View File

@ -6010,7 +6010,10 @@ a.skip-link {
.dropdown-menu .menu-item {
width: 100%; }
.dropdown-menu .menu-item a:hover {
.dropdown-menu .menu-item a.nav-link {
margin: 0px;
padding: 0.5em 1em; }
.dropdown-menu .menu-item a.nav-link:hover {
background-color: #895cd1; }
button,

2
css/theme.min.css vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -152,7 +152,14 @@ a.skip-link {
.dropdown-menu .menu-item {
width: 100%;
a:hover { background-color: $brand-primary; }
a.nav-link{
margin:0px;
padding:$nav-link-padding;
}
a.nav-link:hover {
background-color: $brand-primary;
}
}
button,