12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .el-breadcrumb__inner,
- .el-breadcrumb__inner a {
- font-weight: 400 !important;
- }
- .el-upload {
- input[type="file"] {
- display: none !important;
- }
- }
- .el-upload__input {
- display: none;
- }
- .upload-container {
- .el-upload {
- width: 100%;
- .el-upload-dragger {
- width: 100%;
- height: 200px;
- }
- }
- }
- .el-dropdown-menu {
- padding: 0 !important;
- }
- .el-range-separator {
- box-sizing: content-box;
- }
- .is-dark {
- z-index: 99999 !important;
- }
- /* 重置button中icon的margin */
- .reset-margin [class*="el-icon"] + span {
- margin-left: 2px !important;
- }
- /* 自定义popover的类名 */
- .pure-popper {
- padding: 0 !important;
- }
- /* nprogress适配ep的primary */
- #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);
- }
- }
|