fix(ui): 修复无动画模式卡片消失(no-anim 显式置为最终态) animation:none 会停住动画但保留 opacity:0 基础样式;改用 no-anim 类显式 opacity:1/transform:none
This commit is contained in:
@@ -408,6 +408,13 @@ label { font-size: 12px; font-weight: 500; color: var(--text-2); margin-bottom:
|
||||
.account-card { opacity: 1; transform: none; }
|
||||
}
|
||||
|
||||
/* 无动画模式:自动刷新静默更新,直接以最终态显示 */
|
||||
.account-card.no-anim, .platform-row.no-anim {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
animation: none;
|
||||
}
|
||||
|
||||
/* ===== 账号监控:筛选栏 ===== */
|
||||
.filter-bar {
|
||||
display: flex;
|
||||
|
||||
Reference in New Issue
Block a user