Merge pull request #9800 from ZDroid/patch-1

Nesting for link styles
This commit is contained in:
Mark Otto 2013-08-18 15:10:48 -07:00
commit 8d8d165ee7

View File

@ -54,14 +54,16 @@ textarea {
a {
color: @link-color;
text-decoration: none;
}
a:hover,
a:focus {
color: @link-hover-color;
text-decoration: underline;
}
a:focus {
.tab-focus();
&:hover,
&:focus {
color: @link-hover-color;
text-decoration: underline;
}
&:focus {
.tab-focus();
}
}