Updated pushing icon, and removed autofill box

This commit is contained in:
Andrew Zambazos
2026-05-13 21:11:17 +12:00
parent 6c23871833
commit 22dafdd5b6
2 changed files with 34 additions and 4 deletions
+21 -4
View File
@@ -464,26 +464,43 @@
}
.gd-sync-icon {
position: relative;
color: var(--text-muted);
flex-shrink: 0;
display: flex;
align-items: center;
transition: color 0.16s ease, transform 0.16s ease;
justify-content: center;
width: 24px;
height: 24px;
transition: color 0.16s ease;
}
.gd-sync-btn:hover:not(:disabled) .gd-sync-icon {
color: var(--accent);
}
.gd-sync-btn.is-loading .gd-sync-icon {
animation: gd-sync-spin 1s linear infinite;
.gd-sync-icon::before {
content: "";
position: absolute;
inset: 1px;
border: 2px solid transparent;
border-top-color: var(--accent);
border-right-color: var(--accent);
border-radius: 999px;
opacity: 0;
transform: rotate(0deg);
}
.gd-sync-btn.is-loading .gd-sync-icon::before {
opacity: 1;
animation: gd-sync-progress 0.9s linear infinite;
}
.gd-sync-btn.is-loading .gd-cell-copy {
opacity: 0.82;
}
@keyframes gd-sync-spin {
@keyframes gd-sync-progress {
from {
transform: rotate(0deg);
}