mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
Fix some tier username (#11634)
Onhover tier 3 and 5 the username still changes it's color
This commit is contained in:
parent
b5182ed7d4
commit
023173fada
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue