添加全局刷新按钮

This commit is contained in:
CN-JS-HuiBai
2026-04-13 15:30:24 +08:00
parent 83e8a96b2b
commit 0c3ef3d07e
2 changed files with 50 additions and 0 deletions

View File

@@ -328,6 +328,35 @@ body {
transform: rotate(30deg);
}
/* ---- Global Refresh Button ---- */
.btn-refresh-global {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: var(--radius-sm);
color: var(--text-secondary);
cursor: pointer;
transition: all 0.25s ease;
margin-left: 4px;
padding: 0;
}
.btn-refresh-global:hover {
border-color: var(--border-hover);
color: var(--accent-emerald);
background: rgba(16, 185, 129, 0.08);
transform: translateY(-1px);
}
.btn-refresh-global svg {
width: 16px;
height: 16px;
}
/* ---- Theme Switch ---- */
.theme-switch-wrapper {
display: flex;