You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
1.8 KiB
SCSS

/* 表格 */
.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 {
background-color: #032B5C; /* 自定义背景色 */
border: none; /* 可选:去掉边框 */
}
/* 修改下拉菜单背景色 */
.el-select-dropdown {
background-color: #032B5C; /* 下拉菜单背景 */
border: none; /* 可选:去掉下拉框边框 */
border: 1px solid #032B5C;
box-shadow: none; /* 可选:去掉阴影 */
}
.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;
}