1 Commits

Author SHA1 Message Date
ab27ebfadf Fix sync progress bar animation 2026-01-26 14:21:18 +13:00
2 changed files with 14 additions and 6 deletions

View File

@@ -1 +1 @@
2601261358 261261420

View File

@@ -1326,6 +1326,17 @@ button span {
.progress-indeterminate .progress-fill { .progress-indeterminate .progress-fill {
position: absolute; position: absolute;
width: 100%;
left: 0;
top: 0;
background: linear-gradient(
90deg,
rgba(255, 255, 255, 0),
var(--accent-2),
var(--accent-3),
rgba(255, 255, 255, 0)
);
background-size: 200% 100%;
animation: progress-indeterminate 1.6s ease-in-out infinite; animation: progress-indeterminate 1.6s ease-in-out infinite;
} }
@@ -1509,13 +1520,10 @@ button span {
@keyframes progress-indeterminate { @keyframes progress-indeterminate {
0% { 0% {
transform: translateX(-50%); background-position: 200% 0;
}
50% {
transform: translateX(120%);
} }
100% { 100% {
transform: translateX(-50%); background-position: -200% 0;
} }
} }