style: set disabled links in gray (#12588)

This commit is contained in:
Frédéric Péters 2016-07-14 22:53:23 +02:00
parent b7cb97bc53
commit 31217f4b9d
1 changed files with 12 additions and 9 deletions

View File

@ -24,15 +24,18 @@ a {
border-width: 0;
border-bottom: 1px dotted #ff9900;
-webkit-transition: color 200ms ease-out;
}
a:hover {
color: #003388;
border-style: solid;
}
a img {
border: 0;
&:hover {
color: #003388;
border-style: solid;
}
img {
border: 0;
}
&.disabled {
color: #aaa;
border: none;
cursor: default;
}
}
dl dt {