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
| @use 'sass:math';
| @use 'sass:map';
| @use 'sass:color';
|
| $border-radius: () !default;
|
| @forward 'element-plus/theme-chalk/src/common/var.scss' with (
| $scrollbar: (),
| $border-radius: map.merge(
| (
| 'base': 5px
| ),
| $border-radius
| )
| );
|
| @use 'element-plus/theme-chalk/src/index.scss' as *;
|
| // Element-plus
| .el-input-number {
| &__decrease,
| &__increase {
| border: 0 !important;
| background-color: transparent;
| }
| }
|
| .el-message,
| .el-overlay.is-message-box {
| z-index: 10000 !important;
| }
|
| .el-message {
| &.el-message--success,
| &.el-message--error,
| &.el-message--info,
| &.el-message--warning {
| border-radius: 6px;
| }
|
| &__icon {
| font-size: 18px;
| }
| }
|
| .el-message-box {
| border-radius: 12px;
| padding: 20px;
|
| &__header {
| padding-bottom: 20px;
| }
|
| &__headerbtn {
| display: flex;
| align-items: center;
| justify-content: center;
| height: 28px;
| width: 28px;
| border-radius: 28px;
| margin: 10px 10px 0 0;
| display: none;
|
| .el-icon {
| color: var(--el-text-color-primary);
| font-weight: bold;
| font-size: 18px;
| }
|
| &:hover {
| background-color: var(--el-fill-color-darker);
|
| .el-icon {
| color: var(--el-text-color-primary);
| }
| }
| }
|
| &__content {
| margin-bottom: 20px;
| }
| }
|
| @media only screen and (max-width: 768px) {
| .el-message-box {
| width: 90% !important;
| }
| }
|
| .el-dialog {
| --el-dialog-box-shadow: none;
| }
|
| .el-button {
| outline: none;
| }
|
| .el-table {
| &__header {
| .cell {
| white-space: nowrap;
| overflow: hidden;
| text-overflow: ellipsis;
| }
| }
| }
|
| .el-popper {
| border-radius: 6px;
|
| .el-scrollbar {
| border-radius: inherit;
| }
|
| .el-dropdown-menu {
| padding: 5px;
|
| &__item {
| border-radius: 6px;
| }
| }
|
| &__arrow {
| display: none;
| }
| }
|
|