94 lines
1.7 KiB
SCSS

@mixin flex {
display: flex;
align-items: center;
}
.warning-page {
// background-color: blue;
display: flex;
width: 100%;
height: 100%;
.table-box {
height: 100%;
.table {
height: 100%;
position: relative;
display: flex;
flex-direction: column;
:deep(.table-main) {
flex: 1;
}
}
}
}
:deep(.el-scrollbar__view) {
width: 100%;
height: 100%;
// display: flex;
// flex-wrap: wrap;
}
:deep() {
.el-form .el-form-item__content .el-range-editor {
width: 300px;
}
.el-range-separator {
color: var(--el-menu-text-color);
}
.el-form-item__content > :not(button) {
// width: 160px;
}
.el-input__wrapper {
color: white;
font-size: 20px;
background-color: transparent;
border: none;
box-shadow: 0 0 0 1px var(--el-color-primary, var(--el-color-primary)) inset;
}
.el-input__inner {
color: white;
font-size: 20px;
}
.el-textarea__inner {
color: white;
font-size: 20px;
background-color: transparent;
border: none;
box-shadow: 0 0 0 1px var(--el-color-primary, var(--el-color-primary)) inset;
}
}
// 嵌入盒子样式
.title-detail {
@include flex;
border-left: 2px solid #0f81ff;
font-size: 24px;
color: #333333;
width: 97%;
margin: 20px auto;
> img {
width: 16px;
height: 18px;
}
> span {
font-size: 22px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-weight: 400;
color: var(--el-menu-text-color);
margin-left: 5px;
margin-right: auto;
}
:deep(.el-icon) {
cursor: pointer;
color: #a8abb2;
}
}
// 新增编辑嵌入盒子样式
.add-edit-box {
:deep(.center-content) {
height: 90%;
}
}
// :deep(.el-dialog__body) {
// padding: 0 0 0 0 !important;
// background-color: pink;
// }