|
|
@@ -820,16 +820,16 @@ defineExpose({
|
|
|
}
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
|
|
- background-color: #f5f5f5;
|
|
|
+ background-color: var(--color-slate-800);;
|
|
|
border-radius: 4px;
|
|
|
}
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
- background-color: #c0c4cc;
|
|
|
+ background-color: var(--color-slate-800);;
|
|
|
border-radius: 4px;
|
|
|
|
|
|
&:hover {
|
|
|
- background-color: #909399;
|
|
|
+ background-color: var(--color-slate-800);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
@@ -843,8 +843,8 @@ defineExpose({
|
|
|
top: 0;
|
|
|
z-index: 100;
|
|
|
transition: all 0.3s;
|
|
|
- background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
|
|
|
- border-bottom: 1px solid #ebeef5 !important;
|
|
|
+ background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
|
|
|
+ border-bottom: 1px solid var(--bs-light-bg-subtle) !important;
|
|
|
color: rgb(var(--bs-white-rgb))!important;
|
|
|
|
|
|
.header-content {
|
|
|
@@ -874,20 +874,20 @@ defineExpose({
|
|
|
|
|
|
.uni-table-tr {
|
|
|
transition: background-color 0.2s ease;
|
|
|
- border-bottom: 1px solid #ebeef5 !important;
|
|
|
-
|
|
|
+ border-bottom: 1px solid var(--bs-light-bg-subtle) !important;
|
|
|
+ color: rgb(var(--bs-white-rgb))!important;
|
|
|
// 奇数行背景颜色
|
|
|
&:nth-child(odd) {
|
|
|
- background-color: #fafafa;
|
|
|
+ background-color: var(--bs-light-bg-subtle);
|
|
|
}
|
|
|
|
|
|
// 偶数行背景颜色
|
|
|
&:nth-child(even) {
|
|
|
- background-color: #fff;
|
|
|
+ background-color: var(--bs-body-bg);
|
|
|
}
|
|
|
|
|
|
&:hover {
|
|
|
- background-color: #f5f7fa !important;
|
|
|
+ background-color: var(--bs-light-bg-subtle) !important;
|
|
|
}
|
|
|
|
|
|
&:last-child {
|
|
|
@@ -896,21 +896,22 @@ defineExpose({
|
|
|
}
|
|
|
|
|
|
.summary-row {
|
|
|
- background-color: #fafafa;
|
|
|
+ background-color: var(--bs-light-bg-subtle);
|
|
|
font-weight: 600;
|
|
|
|
|
|
.uni-table-td {
|
|
|
- border-top: 1px solid #ebeef5 !important;
|
|
|
+ border-top: 1px solid var(--bs-light-bg-subtle) !important;
|
|
|
position: sticky;
|
|
|
bottom: 0;
|
|
|
z-index: 99;
|
|
|
- background-color: #fafafa;
|
|
|
+ background-color: var(--bs-light-bg-subtle);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.uni-table-td {
|
|
|
padding: px2rpx(16) px2rpx(5);
|
|
|
- color: #303133;
|
|
|
+ color: rgb(var(--bs-white-rgb))!important;
|
|
|
+ border-bottom: 1px solid var(--bs-light-bg-subtle) !important;
|
|
|
box-sizing: border-box;
|
|
|
vertical-align: middle;
|
|
|
font-size: 14px;
|