mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-24 15:37:19 +08:00
44 lines
612 B
SCSS
44 lines
612 B
SCSS
// cover some element-plus styles
|
|
|
|
.el-breadcrumb__inner,
|
|
.el-breadcrumb__inner a {
|
|
font-weight: 400 !important;
|
|
}
|
|
|
|
.el-upload {
|
|
input[type="file"] {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.el-upload__input {
|
|
display: none;
|
|
}
|
|
|
|
// refine element ui upload
|
|
.upload-container {
|
|
.el-upload {
|
|
width: 100%;
|
|
|
|
.el-upload-dragger {
|
|
width: 100%;
|
|
height: 200px;
|
|
}
|
|
}
|
|
}
|
|
|
|
// dropdown
|
|
.el-dropdown-menu {
|
|
padding: 2px 0 2px 0 !important;
|
|
}
|
|
|
|
// to fix el-date-picker css style
|
|
.el-range-separator {
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
// el-tooltip的权重
|
|
.is-dark {
|
|
z-index: 99999 !important;
|
|
}
|