Redesign refresh button to match CI styleguide [skip ci]

This commit is contained in:
Daniel 2026-03-11 11:08:19 +01:00
parent 546cc9abb9
commit 81801dcd88

View file

@ -349,19 +349,27 @@ html, body {
/* ── Refresh Button ── */
.hub-refresh-btn {
background: none;
border: none;
color: var(--text-muted);
font-size: 1rem;
cursor: pointer;
padding: 4px 6px;
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
border: 1px solid var(--border);
border-radius: var(--radius);
transition: all var(--transition);
background: var(--bg-secondary);
color: var(--text-muted);
font-size: 14px;
line-height: 1;
cursor: pointer;
transition: all var(--transition);
}
.hub-refresh-btn:hover {
color: var(--accent);
background: rgba(230, 126, 34, 0.1);
border-color: var(--accent-border);
background: var(--accent-dim);
}
.hub-refresh-btn:active {
transform: scale(0.95);
}
/* ── Admin Button (header) ── */