데스크톱 앱 리프레시 기능 추가

This commit is contained in:
Macbook
2026-06-22 16:47:20 +09:00
parent 1180cd53f0
commit 5871eb2465
17 changed files with 165 additions and 5 deletions
+26
View File
@@ -12664,6 +12664,32 @@ html.theme-light .tam-disclaimer { color: #90a4ae; }
color: var(--accent, #8b5cf6);
}
/* TopMenuBar 새로고침 (데스크톱) */
.tmb-refresh-btn {
display: flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
border: none;
border-radius: 8px;
background: transparent;
color: var(--text2);
cursor: pointer;
flex-shrink: 0;
}
.tmb-refresh-btn:hover {
background: var(--bg4);
color: var(--accent, #2196f3);
}
.tmb-refresh-btn.busy {
opacity: 0.65;
cursor: wait;
}
.tmb-refresh-btn.busy svg {
animation: tmb-update-spin 0.9s linear infinite;
}
/* TopMenuBar 전체화면 버튼 */
.tmb-fullscreen-btn {
display: flex;