User: login class - change color on <a> hover

This commit is contained in:
Konstantinos Triantafyllou 2022-11-30 17:50:26 +02:00
parent 24779729b6
commit 673d02a71c
1 changed files with 9 additions and 5 deletions

View File

@ -14,6 +14,13 @@
fill: @user-background; fill: @user-background;
} }
text {
stroke: currentColor;
fill: currentColor;
}
}
a.login {
&:hover { &:hover {
& > * { & > * {
color: @user-hover-color; color: @user-hover-color;
@ -23,11 +30,6 @@
fill: @user-hover-background; fill: @user-hover-background;
} }
} }
text {
stroke: currentColor;
fill: currentColor;
}
} }
/* Inverse */ /* Inverse */
@ -45,7 +47,9 @@
circle { circle {
fill: @inverse-user-background; fill: @inverse-user-background;
} }
}
a.login {
&:hover { &:hover {
& > * { & > * {
color: @inverse-user-hover-color; color: @inverse-user-hover-color;