feat: 作品库分页器,操作列优化
This commit is contained in:
parent
b93dd9470c
commit
abae79949f
|
|
@ -634,6 +634,13 @@ export default {
|
||||||
th:nth-child(6), td:nth-child(6) { width: 200px; }
|
th:nth-child(6), td:nth-child(6) { width: 200px; }
|
||||||
th:nth-child(7), td:nth-child(7) { width: 140px; }
|
th:nth-child(7), td:nth-child(7) { width: 140px; }
|
||||||
th:nth-child(8), td:nth-child(8) { width: 140px; }
|
th:nth-child(8), td:nth-child(8) { width: 140px; }
|
||||||
|
|
||||||
|
// 操作列按钮间距
|
||||||
|
td:nth-child(8) {
|
||||||
|
.arco-btn + .arco-btn {
|
||||||
|
margin-left: 12px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.td-id {
|
.td-id {
|
||||||
|
|
@ -706,6 +713,21 @@ export default {
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
|
|
||||||
|
// 分页器总计文字颜色调整,确保在深色背景下清晰可见
|
||||||
|
::v-deep(.arco-pagination-total) {
|
||||||
|
color: rgba(255, 255, 255, 0.9) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 分页器页码和跳转文字颜色
|
||||||
|
::v-deep(.arco-pagination) {
|
||||||
|
color: rgba(255, 255, 255, 0.9);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 分页器输入框文字颜色
|
||||||
|
::v-deep(.arco-pagination-jumper) {
|
||||||
|
color: rgba(255, 255, 255, 0.9);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.empty-tip {
|
.empty-tip {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue