perpare to fix RequestFinishedEvent

This commit is contained in:
XOF
2025-11-21 13:20:47 +08:00
parent 375cfe814a
commit 1f7aa70810
16 changed files with 611 additions and 263 deletions

View File

@@ -751,3 +751,30 @@
.swal2-popup.swal2-custom-style .swal2-icon .swal2-icon-content {
@apply text-4xl;
}
@layer components {
/* --- [新增] 可复用的表格组件样式 --- */
.table {
@apply w-full caption-bottom text-sm;
}
.table-header {
/* 使用语义化颜色,自动适应暗色模式 */
@apply sticky top-0 z-10 border-b border-border bg-muted/50;
}
.table-header .table-row {
/* 表头的 hover 效果通常与数据行不同,或者没有 */
@apply hover:bg-transparent;
}
.table-body {
@apply [&_tr:last-child]:border-0;
}
.table-row {
@apply border-b border-border transition-colors hover:bg-muted/80;
}
.table-head-cell {
@apply h-12 px-4 text-left align-middle font-medium text-muted-foreground;
}
.table-cell {
@apply p-4 align-middle;
}
}