Add manual refresh buttons for all servers and individual servers
All checks were successful
Build-Publish / build (linux/amd64) (push) Successful in 4s
Build-Publish / build (linux/arm64) (push) Successful in 12s
Build-Publish / create-manifest (push) Successful in 1s
Build-Publish / publish-template (push) Successful in 8s

This commit is contained in:
j
2026-03-08 16:31:03 +13:00
parent 939a79a91e
commit 4428ed60c4
3 changed files with 118 additions and 1 deletions

View File

@@ -31,6 +31,50 @@ header h1 {
color: #64748b;
}
.refresh-btn {
margin-left: auto;
background: #334155;
color: #94a3b8;
border: 1px solid #475569;
border-radius: 6px;
padding: 4px 12px;
font-size: 0.8rem;
cursor: pointer;
transition: all 0.2s;
}
.refresh-btn:hover {
background: #3b82f6;
color: #fff;
border-color: #3b82f6;
}
.refresh-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.refresh-btn-sm {
margin-left: auto;
background: none;
color: #475569;
border: none;
font-size: 0.85rem;
cursor: pointer;
padding: 0 4px;
transition: color 0.2s;
flex-shrink: 0;
}
.refresh-btn-sm:hover {
color: #3b82f6;
}
.refresh-btn-sm:disabled {
opacity: 0.4;
cursor: not-allowed;
}
main {
max-width: 1400px;
margin: 0 auto;