Fix some tier username (#11634)

Onhover tier 3 and 5 the username still changes it's color
This commit is contained in:
Nik 2019-12-13 14:27:21 +01:00 committed by Matteo Pagliazzi
parent b5182ed7d4
commit 023173fada

View file

@ -17,7 +17,7 @@
.tier3 {
color: #d70e14;
:hover, :active, :focus {
&:hover, &:active, &:focus {
color: #d70e14;
}
}
@ -25,7 +25,7 @@
.tier4 {
color: #c24d00;
&:hover, &:active, :focus {
&:hover, &:active, &:focus {
color: #c24d00;
}
}
@ -33,7 +33,7 @@
.tier5 {
color: #9e650f;
:hover, :active, :focus {
&:hover, &:active, &:focus {
color: #9e650f;
}
}
@ -41,7 +41,7 @@
.tier6 {
color: #2b8363;
:hover, :active, &:focus {
&:hover, &:active, &:focus {
color: #2b8363;
}
}