Prevent background color hover from making icons look weird
This commit is contained in:
parent
32db074c7c
commit
d8f6c861da
1 changed files with 9 additions and 1 deletions
|
@ -58,7 +58,6 @@ p {
|
|||
|
||||
|
||||
a {
|
||||
// color: $;
|
||||
&:hover {
|
||||
color: $link-hover;
|
||||
background-color: $link-hover-background;
|
||||
|
@ -79,6 +78,15 @@ a {
|
|||
}
|
||||
}
|
||||
|
||||
// Prevent background color hover from making icons look weird.
|
||||
a .icon {
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
// Rule
|
||||
//
|
||||
// Adds big border
|
||||
|
|
Loading…
Reference in a new issue