修复中控

This commit is contained in:
dekun
2026-05-25 08:02:06 +08:00
parent e89708726f
commit 5f4f33cc10
7 changed files with 154 additions and 54 deletions
+30
View File
@@ -1238,6 +1238,36 @@ button.btn-sm {
padding: 8px 0;
}
.board-loading {
grid-column: 1 / -1;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
min-height: 120px;
padding: 24px;
color: var(--muted);
font-size: 13px;
border: 1px dashed var(--border-soft);
border-radius: var(--radius);
background: rgba(0, 0, 0, 0.25);
}
.board-loading-spin {
width: 18px;
height: 18px;
border: 2px solid var(--border-soft);
border-top-color: var(--accent);
border-radius: 50%;
animation: hub-spin 0.8s linear infinite;
}
@keyframes hub-spin {
to {
transform: rotate(360deg);
}
}
.pnl-pos {
color: var(--green);
text-shadow: 0 0 12px rgba(0, 255, 157, 0.3);