2023-08-03 14:21:27 +08:00
|
|
|
.layout-container {
|
|
|
|
|
background-color: var(--color-fill-2);
|
2023-10-07 23:24:12 +08:00
|
|
|
padding: 16px;
|
2023-08-03 14:21:27 +08:00
|
|
|
display: flex;
|
2023-08-08 17:59:37 +08:00
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-search-card {
|
|
|
|
|
width: 100%;
|
2023-08-11 16:17:07 +08:00
|
|
|
padding-top: 16px;
|
2023-08-08 17:59:37 +08:00
|
|
|
margin-bottom: 16px;
|
2023-08-11 16:17:07 +08:00
|
|
|
|
|
|
|
|
.arco-form-item {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-18 15:00:43 +08:00
|
|
|
.table-left-bar-handle {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-right-bar-handle {
|
2023-08-11 16:17:07 +08:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: end
|
2023-08-08 17:59:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-card {
|
|
|
|
|
width: 100%;
|
2023-08-11 16:17:07 +08:00
|
|
|
|
|
|
|
|
.arco-card-header {
|
|
|
|
|
padding: 8px 16px 0 16px;
|
|
|
|
|
|
|
|
|
|
.arco-card-header-title {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
.table-title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
2023-10-18 17:11:27 +08:00
|
|
|
margin-right: 16px;
|
2023-08-11 16:17:07 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-08-08 17:59:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-wrapper {
|
2023-08-11 16:17:07 +08:00
|
|
|
&-8 {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-16 {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
2023-08-08 17:59:37 +08:00
|
|
|
}
|
|
|
|
|
|
2023-08-11 16:17:07 +08:00
|
|
|
.table-handle-wrapper {
|
2023-08-08 17:59:37 +08:00
|
|
|
.arco-btn-text {
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-09 15:45:33 +08:00
|
|
|
.modal-form {
|
2023-10-27 19:15:13 +08:00
|
|
|
padding: 24px 20px 4px 20px;
|
2023-08-09 15:45:33 +08:00
|
|
|
}
|
|
|
|
|
|
2023-09-29 23:45:01 +08:00
|
|
|
.card-list-item {
|
2023-10-18 10:35:22 +08:00
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
border: 1px solid var(--color-neutral-3);
|
2023-09-29 23:45:01 +08:00
|
|
|
transition-property: all;
|
2023-10-18 10:35:22 +08:00
|
|
|
|
|
|
|
|
& > .arco-card-header {
|
|
|
|
|
padding: 16px 16px 8px 16px;
|
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
|
|
.arco-card-header-title {
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& > .arco-card-body {
|
|
|
|
|
padding: 0 16px 16px 16px;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
2023-09-29 23:45:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-list-item:hover {
|
|
|
|
|
transform: translateY(-4px);
|
|
|
|
|
box-shadow: 2px 2px 12px rgba(0, 0, 0, .15);
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-05 00:50:15 +08:00
|
|
|
.card-extra-icon {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
cursor: pointer;
|
2023-10-04 15:47:38 +08:00
|
|
|
}
|
|
|
|
|
|
2023-10-07 18:08:31 +08:00
|
|
|
.card-filter-wrapper {
|
|
|
|
|
padding: 18px 24px 14px 24px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-20 18:45:21 +08:00
|
|
|
.arco-table-td-content {
|
|
|
|
|
color: rgba(var(--gray-9), .95);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-14 16:18:41 +08:00
|
|
|
.usn {
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-09 14:37:16 +08:00
|
|
|
.hide {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-09 15:45:33 +08:00
|
|
|
.pointer {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-01 18:57:53 +08:00
|
|
|
.mx0 {
|
|
|
|
|
margin: 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx2 {
|
|
|
|
|
margin: 0 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx4 {
|
|
|
|
|
margin: 0 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-08 17:59:37 +08:00
|
|
|
.ml4 {
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mr4 {
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mt4 {
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mb4 {
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx4 {
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my4 {
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ml8 {
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mr8 {
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mt8 {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mb8 {
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx8 {
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my8 {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ml16 {
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mr16 {
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mt16 {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mb16 {
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx16 {
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my16 {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-bottom: 16px;
|
2023-08-03 14:21:27 +08:00
|
|
|
}
|