element-plus.scss 1014 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .el-breadcrumb__inner,
  2. .el-breadcrumb__inner a {
  3. font-weight: 400 !important;
  4. }
  5. .el-upload {
  6. input[type="file"] {
  7. display: none !important;
  8. }
  9. }
  10. .el-upload__input {
  11. display: none;
  12. }
  13. .upload-container {
  14. .el-upload {
  15. width: 100%;
  16. .el-upload-dragger {
  17. width: 100%;
  18. height: 200px;
  19. }
  20. }
  21. }
  22. .el-dropdown-menu {
  23. padding: 0 !important;
  24. }
  25. .el-range-separator {
  26. box-sizing: content-box;
  27. }
  28. .is-dark {
  29. z-index: 99999 !important;
  30. }
  31. /* 重置button中icon的margin */
  32. .reset-margin [class*="el-icon"] + span {
  33. margin-left: 2px !important;
  34. }
  35. /* 自定义popover的类名 */
  36. .pure-popper {
  37. padding: 0 !important;
  38. }
  39. /* nprogress适配ep的primary */
  40. #nprogress {
  41. & .bar {
  42. background-color: var(--el-color-primary) !important;
  43. }
  44. & .peg {
  45. box-shadow: 0 0 10px var(--el-color-primary),
  46. 0 0 5px var(--el-color-primary) !important;
  47. }
  48. & .spinner-icon {
  49. border-top-color: var(--el-color-primary);
  50. border-left-color: var(--el-color-primary);
  51. }
  52. }