Libraries UI: remove underline on hover.

This changes the style of the inactive libraries/courses tab when hovering.

Only the active tab on the dashboard page gets the blue underline.
When hovering over an inactive tab, the color of the text changes,
but the underline does not appear.
This commit is contained in:
Matjaz Gregoric
2014-11-14 08:55:21 +01:00
committed by E. Kolpakov
parent 6cd4932a63
commit f8f08b78a9

View File

@@ -299,19 +299,21 @@
line-height: $baseline*2;
margin: 0 10px;
&.active, &:hover {
&.active {
border-bottom: 4px solid $blue;
}
&.active, &:hover {
a {
color: $gray-d2;
}
}
a {
color: $blue;
cursor: pointer;
display: inline-block;
}
&.active a {
color: $gray-d2;
}
}
}