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