zhou zhou
14 小时以前 46d872c1a5b77aa8799de4a64888a0a24a1422d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
// 优化 Element Plus 组件库默认样式
 
:root {
  // 系统主色
  --main-color: var(--el-color-primary);
  --el-color-white: white !important;
  --el-color-black: white !important;
  // 输入框边框颜色
  // --el-border-color: #E4E4E7 !important; // DCDFE6
  // 按钮粗度
  --el-font-weight-primary: 400 !important;
 
  --el-component-custom-height: 36px !important;
 
  --el-component-size: var(--el-component-custom-height) !important;
 
  // 边框、按钮圆角...
  --el-border-radius-base: calc(var(--custom-radius) / 3 + 2px) !important;
 
  --el-border-radius-small: calc(var(--custom-radius) / 3 + 4px) !important;
  --el-messagebox-border-radius: calc(var(--custom-radius) / 3 + 4px) !important;
  --el-popover-border-radius: calc(var(--custom-radius) / 3 + 4px) !important;
 
  .region .el-radio-button__original-radio:checked + .el-radio-button__inner {
    color: var(--theme-color);
  }
}
 
// 优化 el-form-item 标签高度
.el-form-item__label {
  height: var(--el-component-custom-height) !important;
  line-height: var(--el-component-custom-height) !important;
}
 
// 日期选择器
.el-date-range-picker {
  --el-datepicker-inrange-bg-color: var(--art-gray-200) !important;
}
 
// el-card 背景色跟系统背景色保持一致
html.dark .el-card {
  --el-card-bg-color: var(--default-box-color) !important;
}
 
// 修改 el-pagination 大小
.el-pagination--default {
  & {
    --el-pagination-button-width: 32px !important;
    --el-pagination-button-height: var(--el-pagination-button-width) !important;
  }
 
  @media (max-width: 1180px) {
    & {
      --el-pagination-button-width: 28px !important;
    }
  }
 
  .el-select--default .el-select__wrapper {
    min-height: var(--el-pagination-button-width) !important;
  }
 
  .el-pagination__jump .el-input {
    height: var(--el-pagination-button-width) !important;
  }
}
 
.el-pager li {
  padding: 0 10px !important;
  // border: 1px solid red !important;
}
 
// 优化菜单折叠展开动画(提升动画流畅度)
.el-menu.el-menu--inline {
  transition: max-height 0.26s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
 
// 优化菜单 item hover 动画(提升鼠标跟手感)
.el-sub-menu__title,
.el-menu-item {
  transition: background-color 0s !important;
}
 
// -------------------------------- 修改 el-size=default 组件默认高度 start --------------------------------
// 修改 el-button 高度
.el-button--default {
  height: var(--el-component-custom-height) !important;
}
 
// circle 按钮宽度优化
.el-button--default.is-circle {
  width: var(--el-component-custom-height) !important;
}
 
// 修改 el-select 高度
.el-select--default {
  .el-select__wrapper {
    min-height: var(--el-component-custom-height) !important;
  }
}
 
// 修改 el-checkbox-button 高度
.el-checkbox-button--default .el-checkbox-button__inner,
// 修改 el-radio-button 高度
.el-radio-button--default .el-radio-button__inner {
  padding: 10px 15px !important;
}
// -------------------------------- 修改 el-size=default 组件默认高度 end --------------------------------
 
.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
  border-radius: 6px;
}
 
.el-popover {
  min-width: 80px;
  border-radius: var(--el-border-radius-small) !important;
}
 
.el-dialog {
  border-radius: 100px !important;
  border-radius: calc(var(--custom-radius) / 1.2 + 2px) !important;
  overflow: hidden;
}
 
.el-dialog__header {
  .el-dialog__title {
    font-size: 16px;
  }
}
 
.el-dialog__body {
  padding: 25px 0 !important;
  position: relative; // 为了兼容 el-pagination 样式,需要设置 relative,不然会影响 el-pagination 的样式,比如 el-pagination__jump--small 会被影响,导致 el-pagination__jump--small 按钮无法点击,详见 URL_ADDRESS.com/element-plus/element-plus/issues/5684#issuecomment-1176299275;
}
 
.el-dialog.el-dialog-border {
  .el-dialog__body {
    // 上边框
    &::before,
    // 下边框
    &::after {
      content: '';
      position: absolute;
      left: -16px;
      width: calc(100% + 32px);
      height: 1px;
      background-color: var(--art-gray-300);
    }
 
    &::before {
      top: 0;
    }
 
    &::after {
      bottom: 0;
    }
  }
}
 
// el-message 样式优化
.el-message {
  background-color: var(--default-box-color) !important;
  border: 0 !important;
  box-shadow:
    0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12),
    0 9px 28px 8px rgba(0, 0, 0, 0.05) !important;
 
  p {
    font-size: 13px;
  }
}
 
// 修改 el-dropdown 样式
.el-dropdown-menu {
  padding: 6px !important;
  border-radius: 10px !important;
  border: none !important;
 
  .el-dropdown-menu__item {
    padding: 6px 16px !important;
    border-radius: 6px !important;
 
    &:hover:not(.is-disabled) {
      color: var(--art-gray-900) !important;
      background-color: var(--art-el-active-color) !important;
    }
 
    &:focus:not(.is-disabled) {
      color: var(--art-gray-900) !important;
      background-color: var(--art-gray-200) !important;
    }
  }
}
 
// 隐藏 select、dropdown 的三角
.el-select__popper,
.el-dropdown__popper {
  margin-top: -6px !important;
 
  .el-popper__arrow {
    display: none;
  }
}
 
.el-dropdown-selfdefine:focus {
  outline: none !important;
}
 
// 处理移动端组件兼容性
@media screen and (max-width: 640px) {
  .el-message-box,
  .el-dialog {
    width: calc(100% - 24px) !important;
  }
 
  .el-date-picker.has-sidebar.has-time {
    width: calc(100% - 24px);
    left: 12px !important;
  }
 
  .el-picker-panel *[slot='sidebar'],
  .el-picker-panel__sidebar {
    display: none;
  }
 
  .el-picker-panel *[slot='sidebar'] + .el-picker-panel__body,
  .el-picker-panel__sidebar + .el-picker-panel__body {
    margin-left: 0;
  }
}
 
// 修改el-button样式
.el-button {
  &.el-button--text {
    background-color: transparent !important;
    padding: 0 !important;
 
    span {
      margin-left: 0 !important;
    }
  }
}
 
// 修改el-tag样式
.el-tag {
  font-weight: 500;
  transition: all 0s !important;
 
  &.el-tag--default {
    height: 26px !important;
  }
}
 
.el-checkbox-group {
  &.el-table-filter__checkbox-group label.el-checkbox {
    height: 17px !important;
 
    .el-checkbox__label {
      font-weight: 400 !important;
    }
  }
}
 
.el-radio--default {
  // 优化单选按钮大小
  .el-radio__input {
    .el-radio__inner {
      width: 16px;
      height: 16px;
 
      &::after {
        width: 6px;
        height: 6px;
      }
    }
  }
}
 
.el-checkbox {
  .el-checkbox__inner {
    border-radius: 2px !important;
  }
}
 
// 优化复选框样式
.el-checkbox--default {
  .el-checkbox__inner {
    width: 16px !important;
    height: 16px !important;
    border-radius: 4px !important;
 
    &::before {
      content: '';
      height: 4px !important;
      top: 5px !important;
      background-color: #fff !important;
      transform: scale(0.6) !important;
    }
  }
 
  .is-checked {
    .el-checkbox__inner {
      &::after {
        width: 3px;
        height: 8px;
        margin: auto;
        border: 2px solid var(--el-checkbox-checked-icon-color);
        border-left: 0;
        border-top: 0;
        transform: translate(-45%, -60%) rotate(45deg) scale(0.86) !important;
        transform-origin: center;
      }
    }
  }
}
 
.el-notification .el-notification__icon {
  font-size: 22px !important;
}
 
// 修改 el-message-box 样式
.el-message-box__headerbtn .el-message-box__close,
.el-dialog__headerbtn .el-dialog__close {
  top: 7px;
  right: 7px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  transition: all 0.3s;
 
  &:hover {
    background-color: var(--art-hover-color) !important;
    color: var(--art-gray-900) !important;
  }
}
 
.el-message-box {
  padding: 25px 20px !important;
}
 
.el-message-box__title {
  font-weight: 500 !important;
}
 
.el-table__column-filter-trigger i {
  color: var(--theme-color) !important;
  margin: -3px 0 0 2px;
}
 
// 去除 el-dropdown 鼠标放上去出现的边框
.el-tooltip__trigger:focus-visible {
  outline: unset;
}
 
// ipad 表单右侧按钮优化
@media screen and (max-width: 1180px) {
  .el-table-fixed-column--right {
    padding-right: 0 !important;
  }
}
 
.login-out-dialog {
  padding: 30px 20px !important;
  border-radius: 10px !important;
}
 
// 修改 dialog 动画
.dialog-fade-enter-active {
  .el-dialog:not(.is-draggable) {
    animation: dialog-open 0.3s cubic-bezier(0.32, 0.14, 0.15, 0.86);
 
    // 修复 el-dialog 动画后宽度不自适应问题
    .el-select__selected-item {
      display: inline-block;
    }
  }
}
 
.dialog-fade-leave-active {
  animation: fade-out 0.2s linear;
 
  .el-dialog:not(.is-draggable) {
    animation: dialog-close 0.5s;
  }
}
 
@keyframes dialog-open {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
 
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
 
@keyframes dialog-close {
  0% {
    opacity: 1;
    transform: scale(1);
  }
 
  100% {
    opacity: 0;
    transform: scale(0.2);
  }
}
 
// 遮罩层动画
@keyframes fade-out {
  0% {
    opacity: 1;
  }
 
  100% {
    opacity: 0;
  }
}
 
// 修改 el-select 样式
.el-select__popper:not(.el-tree-select__popper) {
  .el-select-dropdown__list {
    padding: 5px !important;
 
    .el-select-dropdown__item {
      height: 34px !important;
      line-height: 34px !important;
      border-radius: 6px !important;
 
      &.is-selected {
        color: var(--art-gray-900) !important;
        font-weight: 400 !important;
        background-color: var(--art-el-active-color) !important;
        margin-bottom: 4px !important;
      }
 
      &:hover {
        background-color: var(--art-hover-color) !important;
      }
    }
 
    .el-select-dropdown__item:hover ~ .is-selected,
    .el-select-dropdown__item.is-selected:has(~ .el-select-dropdown__item:hover) {
      background-color: transparent !important;
    }
  }
}
 
// 修改 el-tree-select 样式
.el-tree-select__popper {
  .el-select-dropdown__list {
    padding: 5px !important;
 
    .el-tree-node {
      .el-tree-node__content {
        height: 36px !important;
        border-radius: 6px !important;
 
        &:hover {
          background-color: var(--art-gray-200) !important;
        }
      }
    }
  }
}
 
// 实现水波纹在文字下面效果
.el-button > span {
  position: relative;
  z-index: 10;
}
 
// 优化颜色选择器圆角
.el-color-picker__color {
  border-radius: 2px !important;
}
 
// 优化日期时间选择器底部圆角
.el-picker-panel {
  .el-picker-panel__footer {
    border-radius: 0 0 var(--el-border-radius-base) var(--el-border-radius-base);
  }
}
 
// 优化树型菜单样式
.el-tree-node__content {
  border-radius: 4px;
  margin-bottom: 4px;
  padding: 1px 0;
 
  &:hover {
    background-color: var(--art-hover-color) !important;
  }
}
 
.dark {
  .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content {
    background-color: var(--art-gray-300) !important;
  }
}
 
// 隐藏折叠菜单弹窗 hover 出现的边框
.menu-left-popper:focus-within,
.horizontal-menu-popper:focus-within {
  box-shadow: none !important;
  outline: none !important;
}
 
// 数字输入组件右侧按钮高度跟随自定义组件高度
.el-input-number--default.is-controls-right {
  .el-input-number__decrease,
  .el-input-number__increase {
    height: calc((var(--el-component-size) / 2)) !important;
  }
}