53 lines
1008 B
SCSS
53 lines
1008 B
SCSS
//to reset element-ui default css
|
|
.el-upload {
|
|
input[type="file"] {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.el-upload__input {
|
|
display: none;
|
|
}
|
|
|
|
//暂时性解决diolag 问题 https://github.com/ElemeFE/element/issues/2461
|
|
.el-dialog {
|
|
transform: none;
|
|
left: 0;
|
|
position: relative;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
//element ui upload
|
|
.upload-container {
|
|
.el-upload {
|
|
width: 100%;
|
|
.el-upload-dragger {
|
|
width: 100%;
|
|
height: 200px;
|
|
}
|
|
}
|
|
}
|
|
.el-table th{
|
|
background-color: rgb(98, 157, 209);
|
|
color: white;
|
|
}
|
|
.el-tree-node__content>.el-tree-node__expand-icon{
|
|
display: none;
|
|
}
|
|
.el-table td, .is-leaf{
|
|
background-color: rgb(213, 230, 347);
|
|
color: black;
|
|
font-weight:400
|
|
}
|
|
.el-table--striped .el-table__body tr.el-table__row--striped td{
|
|
background-color: rgb(255, 255, 255);
|
|
}
|
|
.el-table thead.is-group th{
|
|
background-color: rgb(98, 157, 209);
|
|
}
|
|
.el-textarea__inner,
|
|
.el-radio__inner,
|
|
.el-input__inner{
|
|
border: 1px solid rgb(49, 56, 72)!important;
|
|
}
|