74 lines
1.5 KiB
SCSS
74 lines
1.5 KiB
SCSS
2 months ago
|
/* 表格 */
|
||
|
.ds_table{
|
||
|
position: relative;
|
||
|
}
|
||
|
/* 分页栏 */
|
||
|
.pagination_wrap {
|
||
|
}
|
||
|
.fixed_pagination {
|
||
|
// width: calc(100% - 136px);
|
||
|
// background-color: white;
|
||
|
// z-index: 9;
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: flex-end;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
padding: 20px 0 10px;
|
||
|
}
|
||
|
.noneFixed_pagination {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: flex-end;
|
||
|
padding: 20px 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
.custom-select {
|
||
|
min-width: 150px;
|
||
|
max-width: 300px;
|
||
|
.el-select__wrapper {
|
||
|
background: rgba(74, 126, 191, 0.1); /* 下拉框背景色 */
|
||
|
border: 1px solid transparent; /* 边框 */
|
||
|
color: white; /* 文字颜色 */
|
||
|
height: 40px;
|
||
|
box-shadow: none;
|
||
|
&::placeholder {
|
||
|
color: rgba(255, 255, 255, 0.6); /* 占位符颜色 */
|
||
|
}
|
||
|
}
|
||
|
.el-select__arrow {
|
||
|
color: rgba(255, 255, 255, 0.6); /* 下拉箭头颜色 */
|
||
|
}
|
||
|
&:hover .el-select__inner {
|
||
|
border-color: transparent; /* 悬停边框颜色 */
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.el-select__dropdown {
|
||
|
background: #002a5c; /* 下拉面板背景 */
|
||
|
.el-select__item {
|
||
|
color: white; /* 下拉选项文字颜色 */
|
||
|
&:hover {
|
||
|
background: rgba(74, 126, 191, 0.3); /* 选项悬停背景 */
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* table */
|
||
|
.el-table{
|
||
|
// background-color: transparent;
|
||
|
}
|
||
|
.table_action_box {
|
||
|
.el-button {
|
||
|
padding: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.el-table--border .el-table__inner-wrapper::after,
|
||
|
.el-table--border::after,
|
||
|
.el-table--border::before,
|
||
|
.el-table__inner-wrapper::before {
|
||
|
background-color: transparent !important;
|
||
|
}
|