This commit is contained in:
2025-09-29 11:51:58 +02:00
parent f9102d7bcd
commit b2d77a099b
7 changed files with 539 additions and 66 deletions

View File

@@ -1437,17 +1437,20 @@ body {
}
.status-indicator i {
font-size: 24px; /* 2x bigger: 12px -> 24px */
font-size: 24px;
/* 2x bigger: 12px -> 24px */
transition: all var(--animation-duration-normal) var(--animation-easing-standard);
}
/* Rescan icon specific styling */
#rescan-status i {
color: var(--color-text-disabled); /* Gray when idle */
color: var(--color-text-disabled);
/* Gray when idle */
}
#rescan-status.running i {
color: #22c55e; /* Green when running */
color: #22c55e;
/* Green when running */
animation: iconPulse 2s infinite;
}
@@ -1474,6 +1477,7 @@ body {
}
@keyframes pulse {
0%,
100% {
opacity: 1;
@@ -1487,6 +1491,7 @@ body {
}
@keyframes iconPulse {
0%,
100% {
opacity: 1;
@@ -1514,7 +1519,8 @@ body {
}
.status-indicator i {
font-size: 20px; /* Maintain 2x scale for mobile: was 14px -> 20px */
font-size: 20px;
/* Maintain 2x scale for mobile: was 14px -> 20px */
}
}