2022-07-17 15:08:00 +02:00
|
|
|
@user-background: @global-primary-background;
|
|
|
|
@user-color: @global-inverse-color;
|
|
|
|
|
|
|
|
/* Hover */
|
|
|
|
@user-hover-background: @global-secondary-background;
|
|
|
|
@user-hover-color: @global-inverse-color;
|
|
|
|
|
|
|
|
.login {
|
|
|
|
& > * {
|
|
|
|
color: @user-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
circle {
|
|
|
|
fill: @user-background;
|
|
|
|
}
|
|
|
|
|
2022-11-30 16:50:26 +01:00
|
|
|
text {
|
|
|
|
stroke: currentColor;
|
|
|
|
fill: currentColor;
|
|
|
|
}
|
2023-03-24 16:14:10 +01:00
|
|
|
|
|
|
|
.notification {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
-webkit-transform: translate(20%, -50%);
|
|
|
|
transform: translate(20%, -50%);
|
|
|
|
}
|
2022-11-30 16:50:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a.login {
|
2022-07-17 15:08:00 +02:00
|
|
|
&:hover {
|
|
|
|
& > * {
|
|
|
|
color: @user-hover-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
& circle {
|
|
|
|
fill: @user-hover-background;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Inverse */
|
|
|
|
@inverse-user-background: @global-inverse-color;
|
|
|
|
@inverse-user-color: @global-primary-background;
|
|
|
|
@inverse-user-hover-background: @global-inverse-color;
|
|
|
|
@inverse-user-hover-color: @global-secondary-background;
|
|
|
|
|
|
|
|
.hook-inverse() {
|
|
|
|
.login {
|
|
|
|
& > * {
|
|
|
|
color: @inverse-user-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
circle {
|
|
|
|
fill: @inverse-user-background;
|
|
|
|
}
|
2022-11-30 16:50:26 +01:00
|
|
|
}
|
2022-07-17 15:08:00 +02:00
|
|
|
|
2022-11-30 16:50:26 +01:00
|
|
|
a.login {
|
2022-07-17 15:08:00 +02:00
|
|
|
&:hover {
|
|
|
|
& > * {
|
|
|
|
color: @inverse-user-hover-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
& circle {
|
|
|
|
fill: @inverse-user-hover-background;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|