Files
lingji-work-fe/src/styles/components/table.scss

67 lines
1.6 KiB
SCSS
Raw Normal View History

2025-06-30 18:37:27 +08:00
.arco-table {
@mixin table-cell-text {
2025-08-14 17:42:05 +08:00
color: var(--Text-1, #211F24);
font-family: $font-family-regular;
2025-06-30 18:37:27 +08:00
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px;
}
.arco-table-container {
border: none !important;
2025-08-04 17:05:44 +08:00
height: 100%;
2025-06-30 18:37:27 +08:00
.arco-table-element {
thead {
.arco-table-tr {
.arco-table-th {
border-bottom: 1px solid var(--Border-1, #d7d7d9);
background: var(--BG-100, #f7f8fa);
.arco-table-cell {
padding: 13px 16px;
.arco-table-th-title {
@include table-cell-text;
2025-07-01 14:34:16 +08:00
font-family: 'PingFangSC-Medium';
2025-06-30 18:37:27 +08:00
}
2025-08-14 16:26:43 +08:00
.arco-table-sorter {
.arco-table-sorter-icon {
.arco-icon {
color: #939499;
}
&-active {
.arco-icon {
color: $color-primary;
}
}
}
}
2025-06-30 18:37:27 +08:00
}
}
}
}
tbody {
.arco-table-tr {
.arco-table-td {
.arco-table-cell {
padding: 13px 16px;
2025-07-01 14:34:16 +08:00
.arco-table-cell-content,
.arco-table-td-content {
2025-06-30 18:37:27 +08:00
@include table-cell-text;
}
}
}
}
}
}
2025-08-14 16:26:43 +08:00
.arco-scrollbar {
display: flex;
flex-direction: column;
.arco-table-element {
height: 100%;
}
.arco-scrollbar-container{
flex: 1;
}
}
2025-06-30 18:37:27 +08:00
}
}