Add WebDAV sync provider (manual + auto-sync, top-bar button)

This commit is contained in:
Yuri Karamian
2026-06-07 23:14:04 +02:00
parent ccc5e3b7c6
commit aeafd55491
14 changed files with 1168 additions and 8 deletions
+11
View File
@@ -404,6 +404,17 @@ body.resizing {
user-select: none;
}
/* Spinner for the sync button while a sync is running. */
.sync-spin {
animation: sync-spin 1s linear infinite;
transform-origin: 50% 50%;
}
@keyframes sync-spin {
to {
transform: rotate(360deg);
}
}
/* ── Mobile (Android/iOS) ── */
@media (max-width: 768px) {
body {