fix(ui): make loading-overlay cover the logout button

Signed-off-by: ernolf <raphael.gradenwitz@googlemail.com>
This commit is contained in:
ernolf 2024-10-17 17:05:07 +02:00
parent 97dcab58d8
commit 2b6e81c074
No known key found for this signature in database
GPG key ID: 0B145139A170715C
4 changed files with 8 additions and 11 deletions

View file

@ -418,6 +418,7 @@ label {
font-size: 36px; /* Adjust font size */
cursor: pointer; /* Change cursor to pointer */
outline: none;
z-index: 9999; /* Ensures the icon is on top of every layer */
}
/* Icon styling: default state */
@ -449,7 +450,6 @@ label {
position: relative; /* Ensures stacking order */
filter: grayscale(0%); /* Restore full color */
opacity: 1; /* Fully visible on hover */
z-index: 1; /* Ensures the icon is on top of the shadow */
}
/* Inner glow when hovered */
@ -461,4 +461,4 @@ label {
/* Remove hover effects when not hovering */
#theme-toggle:not(:hover) #theme-icon {
opacity: 0.6; /* Slightly transparent */
}
}