72 lines
1.3 KiB
SCSS
72 lines
1.3 KiB
SCSS
@import './var.css';
|
||
@import 'element-plus/theme-chalk/dark/css-vars.css';
|
||
|
||
.reset-margin [class*='el-icon'] + span {
|
||
margin-left: 2px !important;
|
||
}
|
||
|
||
// 解决抽屉弹出时,body宽度变化的问题
|
||
.el-popup-parent--hidden {
|
||
width: 100% !important;
|
||
}
|
||
|
||
// 解决表格内容超过表格总宽度后,横向滚动条前端顶不到表格边缘的问题
|
||
.el-scrollbar__bar {
|
||
display: flex;
|
||
justify-content: flex-start;
|
||
}
|
||
|
||
.el-dialog__body {
|
||
overflow-y: auto;
|
||
padding-top: 18px;
|
||
padding-bottom: 0;
|
||
// max-height: calc(100% - 118px);
|
||
}
|
||
|
||
/* nprogress 适配 element-plus 的主题色 */
|
||
#nprogress {
|
||
& .bar {
|
||
background-color: var(--el-color-primary) !important;
|
||
}
|
||
|
||
& .peg {
|
||
box-shadow: 0 0 10px var(--el-color-primary), 0 0 5px var(--el-color-primary) !important;
|
||
}
|
||
|
||
& .spinner-icon {
|
||
border-top-color: var(--el-color-primary);
|
||
border-left-color: var(--el-color-primary);
|
||
}
|
||
}
|
||
|
||
.search-form-item {
|
||
margin-right: 10px !important;
|
||
margin-bottom: 10px !important;
|
||
& .el-form-item__label {
|
||
padding-right: 0;
|
||
overflow: hidden;
|
||
}
|
||
}
|
||
|
||
.crud-form-item .el-input__wrapper {
|
||
width: 100%;
|
||
}
|
||
|
||
.el-dialog {
|
||
margin-top: 5vh;
|
||
// max-height: 90vh;
|
||
}
|
||
|
||
.el-form--inline .el-form-item {
|
||
margin-right: 15px;
|
||
}
|
||
|
||
.el-row .el-form-item {
|
||
.el-input,
|
||
.el-select,
|
||
.el-input-number,
|
||
.el-input__wrapper {
|
||
width: 100%;
|
||
}
|
||
}
|