element-plus.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. .el-form-item__label {
  2. font-weight: 700;
  3. }
  4. .el-breadcrumb__inner,
  5. .el-breadcrumb__inner a {
  6. font-weight: 400 !important;
  7. }
  8. .el-dropdown-menu {
  9. padding: 0 !important;
  10. }
  11. .is-dark {
  12. z-index: 9999 !important;
  13. }
  14. /* 重置 el-button 中 icon 的 margin */
  15. .reset-margin [class*="el-icon"] + span {
  16. margin-left: 2px !important;
  17. }
  18. /* 自定义 popover 的类名 */
  19. .pure-popper {
  20. padding: 0 !important;
  21. }
  22. /* nprogress 适配 element-plus 的主题色 */
  23. #nprogress {
  24. & .bar {
  25. background-color: var(--el-color-primary) !important;
  26. }
  27. & .peg {
  28. box-shadow:
  29. 0 0 10px var(--el-color-primary),
  30. 0 0 5px var(--el-color-primary) !important;
  31. }
  32. & .spinner-icon {
  33. border-top-color: var(--el-color-primary);
  34. border-left-color: var(--el-color-primary);
  35. }
  36. }
  37. .pure-dialog {
  38. .pure-dialog-svg {
  39. color: var(--el-color-info);
  40. }
  41. .el-dialog__headerbtn {
  42. top: 20px;
  43. right: 14px;
  44. width: 24px;
  45. height: 24px;
  46. }
  47. }
  48. /* 全局覆盖element-plus的el-dialog、el-drawer、el-message-box、el-notification组件右上角关闭图标的样式,表现更鲜明 */
  49. .el-dialog__headerbtn,
  50. .el-message-box__headerbtn {
  51. &:hover {
  52. .el-dialog__close {
  53. color: var(--el-color-info) !important;
  54. }
  55. }
  56. }
  57. .el-icon {
  58. &.el-dialog__close,
  59. &.el-drawer__close,
  60. &.el-message-box__close,
  61. &.el-notification__closeBtn {
  62. width: 24px;
  63. height: 24px;
  64. border-radius: 4px;
  65. outline: none;
  66. transition:
  67. background-color 0.2s,
  68. color 0.2s;
  69. &:hover {
  70. color: rgb(0 0 0 / 88%) !important;
  71. text-decoration: none;
  72. background-color: rgb(0 0 0 / 6%);
  73. .pure-dialog-svg {
  74. color: rgb(0 0 0 / 88%) !important;
  75. }
  76. }
  77. }
  78. }
  79. /* 克隆并自定义 ElMessage 样式,不会影响 ElMessage 原本样式,在 src/utils/message.ts 中调用自定义样式 ElMessage 方法即可,整体暗色风格在 src/style/dark.scss 文件进行了适配 */
  80. .pure-message {
  81. padding: 10px 13px !important;
  82. background: #fff !important;
  83. border-width: 0 !important;
  84. box-shadow:
  85. 0 3px 6px -4px #0000001f,
  86. 0 6px 16px #00000014,
  87. 0 9px 28px 8px #0000000d !important;
  88. &.el-message.is-closable .el-message__content {
  89. padding-right: 17px !important;
  90. }
  91. & .el-message__content {
  92. color: #000000d9 !important;
  93. pointer-events: all !important;
  94. background-image: initial !important;
  95. }
  96. & .el-message__icon {
  97. margin-right: 8px !important;
  98. }
  99. & .el-message__closeBtn {
  100. right: 9px !important;
  101. border-radius: 4px;
  102. outline: none;
  103. transition:
  104. background-color 0.2s,
  105. color 0.2s;
  106. &:hover {
  107. background-color: rgb(0 0 0 / 6%);
  108. }
  109. }
  110. }
  111. /* 自定义菜单搜索样式 */
  112. .pure-search-dialog {
  113. @media screen and (width > 760px) and (width <= 940px) {
  114. .el-input__inner {
  115. font-size: 12px;
  116. }
  117. }
  118. @media screen and (width <= 470px) {
  119. .el-input__inner {
  120. font-size: 12px;
  121. }
  122. }
  123. .el-dialog__header {
  124. display: none;
  125. }
  126. .el-dialog__body {
  127. padding-top: 12px;
  128. padding-bottom: 0;
  129. }
  130. .el-input__inner {
  131. font-size: 1.2em;
  132. }
  133. .el-dialog__footer {
  134. padding-bottom: 10px;
  135. box-shadow:
  136. 0 -1px 0 0 #e0e3e8,
  137. 0 -3px 6px 0 rgb(69 98 155 / 12%);
  138. }
  139. }
  140. /* 仿 el-scrollbar 滚动条样式,支持大多数浏览器,如Chrome、Edge、Firefox、Safari等。整体暗色风格在 src/style/dark.scss 文件进行了适配 */
  141. .pure-scrollbar {
  142. /* Firefox */
  143. scrollbar-width: thin; /* 可选值为 'auto', 'thin', 'none' */
  144. scrollbar-color: rgb(221 222 224) transparent; /* 滑块颜色、轨道颜色 */
  145. ::-webkit-scrollbar {
  146. width: 6px; /* 滚动条宽度 */
  147. }
  148. /* 滚动条轨道 */
  149. ::-webkit-scrollbar-track {
  150. background: transparent; /* 轨道颜色 */
  151. }
  152. /* 滚动条滑块 */
  153. ::-webkit-scrollbar-thumb {
  154. background-color: rgb(221 222 224);
  155. border-radius: 4px;
  156. }
  157. /* 滚动条滑块:hover状态 */
  158. ::-webkit-scrollbar-thumb:hover {
  159. background: rgb(199 201 203); /* 滑块hover颜色 */
  160. }
  161. }