Add platform status switch

This commit is contained in:
2026-05-12 21:49:08 +08:00
parent 682a491d27
commit a76ab941bc
10 changed files with 195 additions and 5 deletions
+27
View File
@@ -948,6 +948,33 @@
font-size: var(--font-size-xs);
}
.platformStatusCell {
display: grid;
min-width: 0;
gap: 6px;
}
.platformStatusCell strong,
.platformStatusCell small {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.platformStatusCell small {
color: var(--muted-foreground);
font-size: var(--font-size-xs);
}
.platformStatusToggle {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--text-strong);
font-size: var(--font-size-xs);
font-weight: var(--font-weight-semibold);
}
.tableActions {
display: flex;
align-items: center;