vxe-table 4.18.7 → 4.18.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. package/LICENSE +20 -20
  2. package/README.en.md +118 -118
  3. package/README.ja-JP.md +117 -117
  4. package/README.md +268 -268
  5. package/README.zh-TW.md +117 -117
  6. package/es/style.css +1 -1
  7. package/es/table/src/table.js +101 -84
  8. package/es/table/src/util.js +6 -0
  9. package/es/table/style.css +18 -48
  10. package/es/ui/index.js +1 -1
  11. package/es/ui/src/dom.js +21 -0
  12. package/es/ui/src/log.js +1 -1
  13. package/es/vxe-table/style.css +18 -48
  14. package/lib/index.common.js +2 -1
  15. package/lib/index.umd.js +2769 -2840
  16. package/lib/index.umd.min.js +1 -1
  17. package/lib/style.css +1 -1
  18. package/lib/table/src/table.js +21 -18
  19. package/lib/table/src/table.min.js +1 -1
  20. package/lib/table/src/util.js +6 -0
  21. package/lib/table/src/util.min.js +1 -1
  22. package/lib/table/style/style.css +18 -48
  23. package/lib/ui/index.js +1 -1
  24. package/lib/ui/index.min.js +1 -1
  25. package/lib/ui/src/dom.js +23 -0
  26. package/lib/ui/src/dom.min.js +1 -1
  27. package/lib/ui/src/log.js +1 -1
  28. package/lib/ui/src/log.min.js +1 -1
  29. package/lib/v-x-e-table/index.js +2 -1
  30. package/lib/v-x-e-table/index.min.js +1 -1
  31. package/lib/vxe-colgroup/index.js +2 -1
  32. package/lib/vxe-colgroup/index.min.js +1 -1
  33. package/lib/vxe-column/index.js +2 -1
  34. package/lib/vxe-column/index.min.js +1 -1
  35. package/lib/vxe-grid/index.js +2 -1
  36. package/lib/vxe-grid/index.min.js +1 -1
  37. package/lib/vxe-table/index.js +2 -1
  38. package/lib/vxe-table/index.min.js +1 -1
  39. package/lib/vxe-table/style/style.css +18 -48
  40. package/lib/vxe-toolbar/index.js +2 -1
  41. package/lib/vxe-toolbar/index.min.js +1 -1
  42. package/lib/vxe-ui/index.js +2 -1
  43. package/lib/vxe-ui/index.min.js +1 -1
  44. package/lib/vxe-v-x-e-table/index.js +2 -1
  45. package/lib/vxe-v-x-e-table/index.min.js +1 -1
  46. package/package.json +91 -91
  47. package/packages/colgroup/index.ts +22 -22
  48. package/packages/column/index.ts +22 -22
  49. package/packages/components.ts +43 -43
  50. package/packages/grid/index.ts +18 -18
  51. package/packages/grid/src/emits.ts +19 -19
  52. package/packages/grid/src/grid.ts +1768 -1768
  53. package/packages/grid/src/props.ts +23 -23
  54. package/packages/index.ts +4 -4
  55. package/packages/locale/lang/ar-EG.ts +832 -832
  56. package/packages/locale/lang/de-DE.ts +832 -832
  57. package/packages/locale/lang/en-US.ts +832 -832
  58. package/packages/locale/lang/es-ES.ts +832 -832
  59. package/packages/locale/lang/fr-FR.ts +832 -832
  60. package/packages/locale/lang/hu-HU.ts +832 -832
  61. package/packages/locale/lang/hy-AM.ts +832 -832
  62. package/packages/locale/lang/id-ID.ts +832 -832
  63. package/packages/locale/lang/it-IT.ts +832 -832
  64. package/packages/locale/lang/ja-JP.ts +832 -832
  65. package/packages/locale/lang/ko-KR.ts +832 -832
  66. package/packages/locale/lang/ms-MY.ts +832 -832
  67. package/packages/locale/lang/nb-NO.ts +832 -832
  68. package/packages/locale/lang/pt-BR.ts +832 -832
  69. package/packages/locale/lang/ru-RU.ts +832 -832
  70. package/packages/locale/lang/th-TH.ts +832 -832
  71. package/packages/locale/lang/ug-CN.ts +832 -832
  72. package/packages/locale/lang/uk-UA.ts +832 -832
  73. package/packages/locale/lang/uz-UZ.ts +832 -832
  74. package/packages/locale/lang/vi-VN.ts +832 -832
  75. package/packages/locale/lang/zh-CHT.ts +832 -832
  76. package/packages/locale/lang/zh-CN.ts +832 -832
  77. package/packages/locale/lang/zh-HK.ts +3 -3
  78. package/packages/locale/lang/zh-MO.ts +3 -3
  79. package/packages/locale/lang/zh-TC.ts +3 -3
  80. package/packages/locale/lang/zh-TW.ts +3 -3
  81. package/packages/table/index.ts +26 -26
  82. package/packages/table/module/custom/hook.ts +359 -359
  83. package/packages/table/module/custom/panel.ts +1331 -1331
  84. package/packages/table/module/edit/hook.ts +1032 -1032
  85. package/packages/table/module/export/export-panel.ts +567 -567
  86. package/packages/table/module/export/hook.ts +1654 -1654
  87. package/packages/table/module/export/import-panel.ts +266 -266
  88. package/packages/table/module/export/util.ts +24 -24
  89. package/packages/table/module/filter/hook.ts +468 -468
  90. package/packages/table/module/filter/panel.ts +301 -301
  91. package/packages/table/module/keyboard/hook.ts +495 -495
  92. package/packages/table/module/menu/hook.ts +325 -325
  93. package/packages/table/module/menu/panel.ts +201 -201
  94. package/packages/table/module/validator/hook.ts +631 -631
  95. package/packages/table/render/index.ts +1440 -1440
  96. package/packages/table/src/body.ts +932 -932
  97. package/packages/table/src/cell.ts +1290 -1290
  98. package/packages/table/src/column.ts +190 -190
  99. package/packages/table/src/columnInfo.ts +225 -225
  100. package/packages/table/src/emits.ts +123 -123
  101. package/packages/table/src/footer.ts +368 -368
  102. package/packages/table/src/group.ts +59 -59
  103. package/packages/table/src/header.ts +559 -559
  104. package/packages/table/src/props.ts +324 -324
  105. package/packages/table/src/store.ts +14 -14
  106. package/packages/table/src/table.ts +14020 -14004
  107. package/packages/table/src/use/cell-view.ts +44 -44
  108. package/packages/table/src/use/index.ts +1 -1
  109. package/packages/table/src/util.ts +1070 -1064
  110. package/packages/toolbar/index.ts +18 -18
  111. package/packages/toolbar/src/toolbar.ts +701 -701
  112. package/packages/ui/index.ts +530 -530
  113. package/packages/ui/src/anime.ts +52 -52
  114. package/packages/ui/src/comp.ts +3 -3
  115. package/packages/ui/src/dom.ts +259 -236
  116. package/packages/ui/src/log.ts +8 -8
  117. package/packages/ui/src/utils.ts +56 -56
  118. package/packages/ui/src/vn.ts +55 -55
  119. package/packages/v-x-e-table/index.d.ts +4 -4
  120. package/packages/v-x-e-table/index.ts +4 -4
  121. package/styles/all.scss +7 -7
  122. package/styles/base.scss +16 -16
  123. package/styles/components/grid.scss +89 -89
  124. package/styles/components/icon.scss +225 -225
  125. package/styles/components/old-icon.scss +715 -715
  126. package/styles/components/table-module/all.scss +6 -6
  127. package/styles/components/table-module/custom.scss +527 -527
  128. package/styles/components/table-module/export.scss +130 -130
  129. package/styles/components/table-module/filter.scss +130 -130
  130. package/styles/components/table-module/menu.scss +81 -81
  131. package/styles/components/table.scss +2679 -2679
  132. package/styles/components/toolbar.scss +119 -119
  133. package/styles/default.scss +2 -2
  134. package/styles/helpers/baseMixin.scss +95 -95
  135. package/styles/index.scss +4 -4
  136. package/styles/modules.scss +5 -5
  137. package/styles/theme/base.scss +93 -93
  138. package/styles/theme/dark.scss +49 -49
  139. package/styles/theme/light.scss +44 -44
  140. package/styles/variable.scss +43 -43
  141. package/types/all.d.ts +37 -37
  142. package/types/index.d.ts +4 -4
  143. /package/es/{iconfont.1773991907408.ttf → iconfont.1774420952727.ttf} +0 -0
  144. /package/es/{iconfont.1773991907408.woff → iconfont.1774420952727.woff} +0 -0
  145. /package/es/{iconfont.1773991907408.woff2 → iconfont.1774420952727.woff2} +0 -0
  146. /package/lib/{iconfont.1773991907408.ttf → iconfont.1774420952727.ttf} +0 -0
  147. /package/lib/{iconfont.1773991907408.woff → iconfont.1774420952727.woff} +0 -0
  148. /package/lib/{iconfont.1773991907408.woff2 → iconfont.1774420952727.woff2} +0 -0
@@ -1,715 +1,715 @@
1
- [class*="vxe-icon--"] {
2
- display: inline-block;
3
- vertical-align: middle;
4
- position: relative;
5
- direction: ltr;
6
- font-family: Verdana,Arial,Tahoma;
7
- font-weight: normal;
8
- user-select: none;
9
- &.rotate45 {
10
- transform: rotate(45deg);
11
- }
12
- &.rotate90 {
13
- transform: rotate(90deg);
14
- }
15
- &.rotate180 {
16
- transform: rotate(180deg);
17
- }
18
- }
19
-
20
- %DefaultWidthHeight {
21
- width: 1em;
22
- height: 1em;
23
- line-height: 1em;
24
- }
25
-
26
- %PseudoClass {
27
- content: "";
28
- position: absolute;
29
- }
30
-
31
- .vxe-icon--square {
32
- @extend %DefaultWidthHeight;
33
- &:before {
34
- @extend %PseudoClass;
35
- left: 0.05em;
36
- top: 0.05em;
37
- width: 0.9em;
38
- height: 0.9em;
39
- border-width: 0.1em;
40
- border-style: solid;
41
- border-color: inherit;
42
- }
43
- }
44
-
45
- .vxe-icon--zoomin {
46
- @extend %DefaultWidthHeight;
47
- border-width: 0.1em;
48
- border-style: solid;
49
- border-color: inherit;
50
- background-color: var(--vxe-ui-layout-background-color);
51
- &:before,
52
- &:after {
53
- @extend %PseudoClass;
54
- background-color: inherit;
55
- }
56
- &:before {
57
- left: -0.1em;
58
- top: 0.2em;
59
- width: 1.1em;
60
- height: 0.4em;
61
- }
62
- &:after {
63
- top: -0.1em;
64
- left: 0.2em;
65
- width: 0.4em;
66
- height: 1.1em;
67
- }
68
- }
69
-
70
- .vxe-icon--zoomout {
71
- @extend %DefaultWidthHeight;
72
- position: relative;
73
- &:before {
74
- @extend %PseudoClass;
75
- right: 0;
76
- top: 0;
77
- width: 0.7em;
78
- height: 0.7em;
79
- border-width: 0.1em;
80
- border-style: solid;
81
- border-color: inherit;
82
- }
83
- &:after {
84
- @extend %PseudoClass;
85
- left: 0.1em;
86
- bottom: 0.1em;
87
- width: 0.7em;
88
- height: 0.7em;
89
- border-width: 0.1em;
90
- border-style: solid;
91
- border-color: inherit;
92
- background-color: var(--vxe-ui-layout-background-color);
93
- }
94
- }
95
-
96
- .vxe-icon--menu {
97
- $yOffset: 0.36em;
98
- @extend %DefaultWidthHeight;
99
- &:before {
100
- content: "";
101
- display: inline-block;
102
- width: 0.22em;
103
- height: 0.22em;
104
- box-shadow: 0 -#{$yOffset} 0, -#{$yOffset} -#{$yOffset} 0, #{$yOffset} -#{$yOffset} 0, 0 0 0 1em inset, -#{$yOffset} 0 0, #{$yOffset} 0 0, 0 #{$yOffset} 0, -#{$yOffset} #{$yOffset} 0, #{$yOffset} #{$yOffset} 0;
105
- margin: 0.26em;
106
- }
107
- }
108
-
109
- %Caret {
110
- @extend %DefaultWidthHeight;
111
- &:before {
112
- @extend %PseudoClass;
113
- border-width: 0.4em;
114
- border-style: solid;
115
- border-color: transparent;
116
- }
117
- }
118
-
119
- .vxe-icon--caret-top {
120
- @extend %Caret;
121
- &:before {
122
- left: 0.1em;
123
- bottom: 0.3em;
124
- border-bottom-color: inherit;
125
- }
126
- }
127
-
128
- .vxe-icon--caret-bottom {
129
- @extend %Caret;
130
- &:before {
131
- left: 0.1em;
132
- top: 0.3em;
133
- border-top-color: inherit;
134
- }
135
- }
136
-
137
- .vxe-icon--caret-left {
138
- @extend %Caret;
139
- &:before {
140
- right: 0.3em;
141
- bottom: 0.1em;
142
- border-right-color: inherit;
143
- }
144
- }
145
-
146
- .vxe-icon--caret-right {
147
- @extend %Caret;
148
- &:before {
149
- left: 0.3em;
150
- bottom: 0.1em;
151
- border-left-color: inherit;
152
- }
153
- }
154
-
155
- %BeforeArrowTop {
156
- &:before {
157
- @extend %PseudoClass;
158
- top: 0.32em;
159
- left: 0.12em;
160
- width: 0.6em;
161
- height: 0.6em;
162
- border-width: 0.1em;
163
- border-style: solid;
164
- border-top-color: inherit;
165
- border-right-color: inherit;
166
- border-bottom-color: transparent;
167
- border-left-color: transparent;
168
- }
169
- }
170
-
171
- .vxe-icon--arrow-top {
172
- @extend %DefaultWidthHeight;
173
- &:before {
174
- @extend %PseudoClass;
175
- top: 0.4em;
176
- left: 0.14em;
177
- width: 0.7em;
178
- height: 0.7em;
179
- border-width: 0.15em;
180
- border-style: solid;
181
- border-top-color: inherit;
182
- border-right-color: inherit;
183
- border-bottom-color: transparent;
184
- border-left-color: transparent;
185
- border-radius: 0.15em;
186
- transform: rotate(-45deg);
187
- }
188
- }
189
-
190
- .vxe-icon--arrow-bottom {
191
- @extend .vxe-icon--arrow-top;
192
- &:before {
193
- top: 0;
194
- left: 0.14em;
195
- transform: rotate(135deg);
196
- }
197
- }
198
-
199
- .vxe-icon--arrow-left {
200
- @extend .vxe-icon--arrow-top;
201
- &:before {
202
- top: 0.18em;
203
- left: 0.35em;
204
- transform: rotate(-135deg);
205
- }
206
- }
207
-
208
- .vxe-icon--arrow-right {
209
- @extend .vxe-icon--arrow-top;
210
- &:before {
211
- top: 0.18em;
212
- left: 0;
213
- transform: rotate(45deg);
214
- }
215
- }
216
-
217
- .vxe-icon--d-arrow-left {
218
- @extend %DefaultWidthHeight;
219
- &:before {
220
- left: 0.15em;
221
- }
222
- &:after {
223
- left: 0.58em;
224
- }
225
- &:before,
226
- &:after {
227
- @extend %PseudoClass;
228
- top: 0.18em;
229
- width: 0.7em;
230
- height: 0.7em;
231
- border-width: 0.15em;
232
- border-style: solid;
233
- border-top-color: inherit;
234
- border-right-color: transparent;
235
- border-bottom-color: transparent;
236
- border-left-color: inherit;
237
- border-radius: 0.15em;
238
- transform: rotate(-45deg);
239
- }
240
- }
241
-
242
- .vxe-icon--d-arrow-right {
243
- @extend .vxe-icon--d-arrow-left;
244
- &:before,
245
- &:after {
246
- transform: rotate(135deg);
247
- }
248
- &:before {
249
- left: -0.25em;
250
- }
251
- &:after {
252
- left: 0.18em;
253
- }
254
- }
255
-
256
- .vxe-icon--funnel {
257
- @extend %DefaultWidthHeight;
258
- &:before {
259
- @extend %PseudoClass;
260
- top: 0.05em;
261
- left: 0;
262
- border-width: 0.5em;
263
- border-style: solid;
264
- border-top-color: inherit;
265
- border-right-color: transparent;
266
- border-bottom-color: transparent;
267
- border-left-color: transparent;
268
- }
269
- &:after {
270
- @extend %PseudoClass;
271
- left: 0.41em;
272
- top: 0.4em;
273
- width: 0;
274
- height: 0.5em;
275
- border-width: 0 0.2em 0 0;
276
- border-style: solid;
277
- border-right-color: inherit;
278
- }
279
- }
280
-
281
- .vxe-icon--edit-outline {
282
- @extend %DefaultWidthHeight;
283
- &:before {
284
- @extend %PseudoClass;
285
- height: 0.84em;
286
- width: 0.86em;
287
- top: 0.1em;
288
- left: 0.02em;
289
- border-radius: 0.2em;
290
- border-width: 0.1em;
291
- border-style: solid;
292
- border-color: inherit;
293
- }
294
- &:after {
295
- @extend %PseudoClass;
296
- left: 0.6em;
297
- bottom: 0.2em;
298
- width: 0;
299
- height: 0.8em;
300
- border-radius: 0 0 80% 80%;
301
- border-width: 0 0 0 0.22em;
302
- border-style: solid;
303
- border-color: inherit;
304
- transform: rotate(45deg);
305
- }
306
- }
307
-
308
- .vxe-icon--more {
309
- @extend %DefaultWidthHeight;
310
- &:before {
311
- @extend %PseudoClass;
312
- content: "...";
313
- top: 0;
314
- left: 0.1em;
315
- line-height: 0.5em;
316
- font-weight: 700;
317
- }
318
- }
319
-
320
- .vxe-icon--plus {
321
- @extend %DefaultWidthHeight;
322
- &:before {
323
- @extend %PseudoClass;
324
- content: "+";
325
- left: -0.12em;
326
- bottom: -0.1em;
327
- line-height: 1em;
328
- font-size: 1.6em;
329
- }
330
- }
331
-
332
- .vxe-icon--check {
333
- @extend %DefaultWidthHeight;
334
- &:before {
335
- @extend %PseudoClass;
336
- left: 0.25em;
337
- bottom: 0.2em;
338
- width: 0.5em;
339
- height: 0.9em;
340
- border-width: 0.15em;
341
- border-style: solid;
342
- border-top-color: transparent;
343
- border-right-color: inherit;
344
- border-bottom-color: inherit;
345
- border-radius: 0.15em;
346
- border-left-color: transparent;
347
- transform: rotate(45deg);
348
- }
349
- }
350
-
351
- .vxe-icon--close {
352
- @extend %DefaultWidthHeight;
353
- &:before {
354
- @extend %PseudoClass;
355
- content: "+";
356
- left: -0.1em;
357
- bottom: -0.16em;
358
- line-height: 1em;
359
- font-size: 1.8em;
360
- transform: rotate(45deg);
361
- }
362
- }
363
-
364
- .vxe-icon--minus {
365
- @extend %DefaultWidthHeight;
366
- &:before {
367
- @extend %PseudoClass;
368
- content: "\2500";
369
- left: 0;
370
- bottom: 0;
371
- width: 100%;
372
- text-align: center;
373
- line-height: 0.9em;
374
- font-size: 1.2em;
375
- }
376
- }
377
-
378
- .vxe-icon--refresh {
379
- @extend %DefaultWidthHeight;
380
- border-width: 0.1em;
381
- border-style: solid;
382
- border-radius: 50%;
383
- border-right-color: transparent !important;
384
- border-left-color: transparent !important;
385
- &:before {
386
- left: 50%;
387
- top: 0;
388
- transform: translateX(50%) rotate(-45deg);
389
- }
390
- &:after {
391
- right: 50%;
392
- bottom: 0;
393
- transform: translateX(-50%) rotate(135deg);
394
- }
395
- &:before,
396
- &:after {
397
- @extend %PseudoClass;
398
- width: 0;
399
- height: 0;
400
- border-width: 0.25em;
401
- border-style: solid;
402
- border-right-color: transparent;
403
- border-bottom-color: transparent;
404
- border-left-color: transparent;
405
- }
406
- &.roll {
407
- animation: rollCircle 1s infinite linear;
408
- }
409
- }
410
-
411
- @keyframes rollCircle {
412
- 0% {
413
- transform: rotate(0deg);
414
- }
415
- 100% {
416
- transform: rotate(360deg);
417
- }
418
- }
419
-
420
- %BeforeSolidRadius {
421
- content: "";
422
- border-radius: 50%;
423
- border-width: 0.5em;
424
- border-style: solid;
425
- border-color: inherit;
426
- position: absolute;
427
- top: 0;
428
- left: 0;
429
- transform: scale(0.95);
430
- }
431
-
432
- %QuestionAndInfoWarning {
433
- &:after {
434
- @extend %PseudoClass;
435
- left: 0;
436
- bottom: 0;
437
- width: 100%;
438
- text-align: center;
439
- color: var(--vxe-ui-layout-background-color);
440
- transform: rotate(-10deg) scale(0.75);
441
- }
442
- }
443
-
444
- .vxe-icon--question {
445
- @extend %DefaultWidthHeight, %QuestionAndInfoWarning;
446
- &:before {
447
- @extend %BeforeSolidRadius;
448
- }
449
- &:after {
450
- content: "\3F";
451
- }
452
- }
453
-
454
- .vxe-icon--info {
455
- @extend %DefaultWidthHeight, %QuestionAndInfoWarning;
456
- &:before {
457
- @extend %BeforeSolidRadius;
458
- }
459
- &:after {
460
- content: "\A1";
461
- }
462
- }
463
-
464
- .vxe-icon--warning {
465
- @extend %DefaultWidthHeight, %QuestionAndInfoWarning;
466
- &:before {
467
- @extend %BeforeSolidRadius;
468
- }
469
- &:after {
470
- content: "\21";
471
- }
472
- }
473
-
474
- .vxe-icon--success {
475
- @extend %DefaultWidthHeight;
476
- &:before {
477
- @extend %BeforeSolidRadius;
478
- }
479
- &:after {
480
- @extend %PseudoClass;
481
- content: "\2713";
482
- left: 0.25em;
483
- bottom: 0;
484
- color: var(--vxe-ui-layout-background-color);
485
- font-size: 0.65em;
486
- }
487
- }
488
-
489
- .vxe-icon--circle-plus {
490
- @extend %DefaultWidthHeight;
491
- &:before {
492
- @extend %BeforeSolidRadius;
493
- }
494
- &:after {
495
- @extend %PseudoClass;
496
- content: "+";
497
- left: 0;
498
- bottom: 0;
499
- width: 100%;
500
- text-align: center;
501
- color: var(--vxe-ui-layout-background-color);
502
- line-height: 1.4em;
503
- font-size: 0.8em;
504
- }
505
- }
506
-
507
- .vxe-icon--remove {
508
- @extend %DefaultWidthHeight;
509
- &:before {
510
- @extend %BeforeSolidRadius;
511
- }
512
- &:after {
513
- @extend %PseudoClass;
514
- content: "\2500";
515
- left: 0;
516
- bottom: 0;
517
- width: 100%;
518
- text-align: center;
519
- line-height: 1.5em;
520
- color: var(--vxe-ui-layout-background-color);
521
- font-size: 0.7em;
522
- }
523
- }
524
-
525
- .vxe-icon--error {
526
- @extend %DefaultWidthHeight;
527
- &:before {
528
- @extend %BeforeSolidRadius;
529
- }
530
- &:after {
531
- @extend %PseudoClass;
532
- content: "\D7";
533
- left: 0;
534
- bottom: 0;
535
- width: 100%;
536
- line-height: 1.4em;
537
- text-align: center;
538
- color: var(--vxe-ui-layout-background-color);
539
- font-size: 0.8em;
540
- }
541
- }
542
-
543
- .vxe-icon--upload,
544
- .vxe-icon--download {
545
- @extend %DefaultWidthHeight;
546
- overflow: hidden;
547
- &:before {
548
- @extend %PseudoClass;
549
- left: 0;
550
- width: 1em;
551
- border-width: 0;
552
- border-style: solid;
553
- border-color: inherit;
554
- }
555
- &:after {
556
- @extend %PseudoClass;
557
- width: 100%;
558
- text-align: center;
559
- font-size: 2em;
560
- }
561
- }
562
-
563
- .vxe-icon--upload {
564
- &:before {
565
- top: 0.1em;
566
- border-top-width: 0.1em;
567
- }
568
- &:after {
569
- content: "\2191";
570
- left: 0;
571
- top: 0.15em;
572
- }
573
- }
574
-
575
- .vxe-icon--download {
576
- &:before {
577
- bottom: 0.05em;
578
- border-bottom-width: 0.1em;
579
- }
580
- &:after {
581
- content: "\2191";
582
- left: 0;
583
- bottom: 0.15em;
584
- transform: rotate(180deg);
585
- }
586
- }
587
-
588
- .vxe-icon--eye,
589
- .vxe-icon--eye-slash {
590
- @extend %DefaultWidthHeight;
591
- &:before {
592
- @extend %PseudoClass;
593
- content: "\25CF";
594
- top: 0.16em;
595
- left: 0;
596
- width: 1em;
597
- height: 0.68em;
598
- line-height: 0.25em;
599
- border-radius: 50%;
600
- border-width: 0.1em;
601
- border-style: solid;
602
- border-color: inherit;
603
- text-align: center;
604
- }
605
- }
606
-
607
- .vxe-icon--eye-slash {
608
- &:after {
609
- @extend %PseudoClass;
610
- top: -0.1em;
611
- left: 0.45em;
612
- width: 0;
613
- height: 1.2em;
614
- border-width: 0;
615
- border-style: solid;
616
- border-color: inherit;
617
- border-left-width: 0.1em;
618
- transform: rotate(45deg);
619
- }
620
- }
621
-
622
- .vxe-icon--calendar {
623
- @extend %DefaultWidthHeight;
624
- &:before {
625
- @extend %PseudoClass;
626
- top: 0.15em;
627
- left: 0;
628
- width: 1em;
629
- height: 0.8em;
630
- border-width: 0.2em 0.1em 0.1em 0.1em;
631
- border-radius: 0.1em 0.1em 0 0;
632
- border-style: solid;
633
- border-color: inherit;
634
- }
635
- &:after {
636
- @extend %PseudoClass;
637
- left: 0.2em;
638
- top: 0;
639
- width: 0.6em;
640
- height: 0.3em;
641
- border-width: 0 0.1em;
642
- border-style: solid;
643
- border-color: inherit;
644
- }
645
- }
646
-
647
- .vxe-icon--dot {
648
- @extend %DefaultWidthHeight;
649
- &:before {
650
- @extend %PseudoClass;
651
- top: 0.25em;
652
- left: 0.25em;
653
- border-radius: 50%;
654
- border-width: 0.25em;
655
- border-style: solid;
656
- border-color: inherit;
657
- }
658
- }
659
-
660
- .vxe-icon--print {
661
- @extend %DefaultWidthHeight;
662
- box-shadow: inset 0 0 0 0.1em;
663
- border-width: 0.2em 0;
664
- border-style: solid;
665
- border-color: transparent !important;
666
- border-radius: 0.3em 0.3em 0 0;
667
- &:before {
668
- @extend %PseudoClass;
669
- width: 0.6em;
670
- height: 0.3em;
671
- top: -0.2em;
672
- left: 0.2em;
673
- box-shadow: inset 0 0 0 0.1em;
674
- }
675
- &:after {
676
- @extend %PseudoClass;
677
- width: 0.6em;
678
- height: 0.6em;
679
- left: 0.2em;
680
- bottom: -0.2em;
681
- box-shadow: inset 0 0 0 0.1em;
682
- background-color: var(--vxe-ui-layout-background-color);
683
- }
684
- }
685
-
686
- .vxe-icon--search {
687
- @extend %DefaultWidthHeight;
688
- &:before {
689
- @extend %PseudoClass;
690
- top: 0;
691
- left: 0;
692
- width: 0.8em;
693
- height: 0.8em;
694
- border-width: 0.15em;
695
- border-style: solid;
696
- border-color: inherit;
697
- border-radius: 50%;
698
- }
699
- &:after {
700
- @extend %PseudoClass;
701
- top: 0.75em;
702
- left: 0.6em;
703
- width: 0.35em;
704
- height: 0;
705
- border-width: 0.15em 0 0 0;
706
- border-style: solid;
707
- border-color: inherit;
708
- transform: rotate(45deg);
709
- }
710
- }
711
-
712
- // 已废弃
713
- .vxe-icon-warnion-circle-fill:before {
714
- content: "\e848";
715
- }
1
+ [class*="vxe-icon--"] {
2
+ display: inline-block;
3
+ vertical-align: middle;
4
+ position: relative;
5
+ direction: ltr;
6
+ font-family: Verdana,Arial,Tahoma;
7
+ font-weight: normal;
8
+ user-select: none;
9
+ &.rotate45 {
10
+ transform: rotate(45deg);
11
+ }
12
+ &.rotate90 {
13
+ transform: rotate(90deg);
14
+ }
15
+ &.rotate180 {
16
+ transform: rotate(180deg);
17
+ }
18
+ }
19
+
20
+ %DefaultWidthHeight {
21
+ width: 1em;
22
+ height: 1em;
23
+ line-height: 1em;
24
+ }
25
+
26
+ %PseudoClass {
27
+ content: "";
28
+ position: absolute;
29
+ }
30
+
31
+ .vxe-icon--square {
32
+ @extend %DefaultWidthHeight;
33
+ &:before {
34
+ @extend %PseudoClass;
35
+ left: 0.05em;
36
+ top: 0.05em;
37
+ width: 0.9em;
38
+ height: 0.9em;
39
+ border-width: 0.1em;
40
+ border-style: solid;
41
+ border-color: inherit;
42
+ }
43
+ }
44
+
45
+ .vxe-icon--zoomin {
46
+ @extend %DefaultWidthHeight;
47
+ border-width: 0.1em;
48
+ border-style: solid;
49
+ border-color: inherit;
50
+ background-color: var(--vxe-ui-layout-background-color);
51
+ &:before,
52
+ &:after {
53
+ @extend %PseudoClass;
54
+ background-color: inherit;
55
+ }
56
+ &:before {
57
+ left: -0.1em;
58
+ top: 0.2em;
59
+ width: 1.1em;
60
+ height: 0.4em;
61
+ }
62
+ &:after {
63
+ top: -0.1em;
64
+ left: 0.2em;
65
+ width: 0.4em;
66
+ height: 1.1em;
67
+ }
68
+ }
69
+
70
+ .vxe-icon--zoomout {
71
+ @extend %DefaultWidthHeight;
72
+ position: relative;
73
+ &:before {
74
+ @extend %PseudoClass;
75
+ right: 0;
76
+ top: 0;
77
+ width: 0.7em;
78
+ height: 0.7em;
79
+ border-width: 0.1em;
80
+ border-style: solid;
81
+ border-color: inherit;
82
+ }
83
+ &:after {
84
+ @extend %PseudoClass;
85
+ left: 0.1em;
86
+ bottom: 0.1em;
87
+ width: 0.7em;
88
+ height: 0.7em;
89
+ border-width: 0.1em;
90
+ border-style: solid;
91
+ border-color: inherit;
92
+ background-color: var(--vxe-ui-layout-background-color);
93
+ }
94
+ }
95
+
96
+ .vxe-icon--menu {
97
+ $yOffset: 0.36em;
98
+ @extend %DefaultWidthHeight;
99
+ &:before {
100
+ content: "";
101
+ display: inline-block;
102
+ width: 0.22em;
103
+ height: 0.22em;
104
+ box-shadow: 0 -#{$yOffset} 0, -#{$yOffset} -#{$yOffset} 0, #{$yOffset} -#{$yOffset} 0, 0 0 0 1em inset, -#{$yOffset} 0 0, #{$yOffset} 0 0, 0 #{$yOffset} 0, -#{$yOffset} #{$yOffset} 0, #{$yOffset} #{$yOffset} 0;
105
+ margin: 0.26em;
106
+ }
107
+ }
108
+
109
+ %Caret {
110
+ @extend %DefaultWidthHeight;
111
+ &:before {
112
+ @extend %PseudoClass;
113
+ border-width: 0.4em;
114
+ border-style: solid;
115
+ border-color: transparent;
116
+ }
117
+ }
118
+
119
+ .vxe-icon--caret-top {
120
+ @extend %Caret;
121
+ &:before {
122
+ left: 0.1em;
123
+ bottom: 0.3em;
124
+ border-bottom-color: inherit;
125
+ }
126
+ }
127
+
128
+ .vxe-icon--caret-bottom {
129
+ @extend %Caret;
130
+ &:before {
131
+ left: 0.1em;
132
+ top: 0.3em;
133
+ border-top-color: inherit;
134
+ }
135
+ }
136
+
137
+ .vxe-icon--caret-left {
138
+ @extend %Caret;
139
+ &:before {
140
+ right: 0.3em;
141
+ bottom: 0.1em;
142
+ border-right-color: inherit;
143
+ }
144
+ }
145
+
146
+ .vxe-icon--caret-right {
147
+ @extend %Caret;
148
+ &:before {
149
+ left: 0.3em;
150
+ bottom: 0.1em;
151
+ border-left-color: inherit;
152
+ }
153
+ }
154
+
155
+ %BeforeArrowTop {
156
+ &:before {
157
+ @extend %PseudoClass;
158
+ top: 0.32em;
159
+ left: 0.12em;
160
+ width: 0.6em;
161
+ height: 0.6em;
162
+ border-width: 0.1em;
163
+ border-style: solid;
164
+ border-top-color: inherit;
165
+ border-right-color: inherit;
166
+ border-bottom-color: transparent;
167
+ border-left-color: transparent;
168
+ }
169
+ }
170
+
171
+ .vxe-icon--arrow-top {
172
+ @extend %DefaultWidthHeight;
173
+ &:before {
174
+ @extend %PseudoClass;
175
+ top: 0.4em;
176
+ left: 0.14em;
177
+ width: 0.7em;
178
+ height: 0.7em;
179
+ border-width: 0.15em;
180
+ border-style: solid;
181
+ border-top-color: inherit;
182
+ border-right-color: inherit;
183
+ border-bottom-color: transparent;
184
+ border-left-color: transparent;
185
+ border-radius: 0.15em;
186
+ transform: rotate(-45deg);
187
+ }
188
+ }
189
+
190
+ .vxe-icon--arrow-bottom {
191
+ @extend .vxe-icon--arrow-top;
192
+ &:before {
193
+ top: 0;
194
+ left: 0.14em;
195
+ transform: rotate(135deg);
196
+ }
197
+ }
198
+
199
+ .vxe-icon--arrow-left {
200
+ @extend .vxe-icon--arrow-top;
201
+ &:before {
202
+ top: 0.18em;
203
+ left: 0.35em;
204
+ transform: rotate(-135deg);
205
+ }
206
+ }
207
+
208
+ .vxe-icon--arrow-right {
209
+ @extend .vxe-icon--arrow-top;
210
+ &:before {
211
+ top: 0.18em;
212
+ left: 0;
213
+ transform: rotate(45deg);
214
+ }
215
+ }
216
+
217
+ .vxe-icon--d-arrow-left {
218
+ @extend %DefaultWidthHeight;
219
+ &:before {
220
+ left: 0.15em;
221
+ }
222
+ &:after {
223
+ left: 0.58em;
224
+ }
225
+ &:before,
226
+ &:after {
227
+ @extend %PseudoClass;
228
+ top: 0.18em;
229
+ width: 0.7em;
230
+ height: 0.7em;
231
+ border-width: 0.15em;
232
+ border-style: solid;
233
+ border-top-color: inherit;
234
+ border-right-color: transparent;
235
+ border-bottom-color: transparent;
236
+ border-left-color: inherit;
237
+ border-radius: 0.15em;
238
+ transform: rotate(-45deg);
239
+ }
240
+ }
241
+
242
+ .vxe-icon--d-arrow-right {
243
+ @extend .vxe-icon--d-arrow-left;
244
+ &:before,
245
+ &:after {
246
+ transform: rotate(135deg);
247
+ }
248
+ &:before {
249
+ left: -0.25em;
250
+ }
251
+ &:after {
252
+ left: 0.18em;
253
+ }
254
+ }
255
+
256
+ .vxe-icon--funnel {
257
+ @extend %DefaultWidthHeight;
258
+ &:before {
259
+ @extend %PseudoClass;
260
+ top: 0.05em;
261
+ left: 0;
262
+ border-width: 0.5em;
263
+ border-style: solid;
264
+ border-top-color: inherit;
265
+ border-right-color: transparent;
266
+ border-bottom-color: transparent;
267
+ border-left-color: transparent;
268
+ }
269
+ &:after {
270
+ @extend %PseudoClass;
271
+ left: 0.41em;
272
+ top: 0.4em;
273
+ width: 0;
274
+ height: 0.5em;
275
+ border-width: 0 0.2em 0 0;
276
+ border-style: solid;
277
+ border-right-color: inherit;
278
+ }
279
+ }
280
+
281
+ .vxe-icon--edit-outline {
282
+ @extend %DefaultWidthHeight;
283
+ &:before {
284
+ @extend %PseudoClass;
285
+ height: 0.84em;
286
+ width: 0.86em;
287
+ top: 0.1em;
288
+ left: 0.02em;
289
+ border-radius: 0.2em;
290
+ border-width: 0.1em;
291
+ border-style: solid;
292
+ border-color: inherit;
293
+ }
294
+ &:after {
295
+ @extend %PseudoClass;
296
+ left: 0.6em;
297
+ bottom: 0.2em;
298
+ width: 0;
299
+ height: 0.8em;
300
+ border-radius: 0 0 80% 80%;
301
+ border-width: 0 0 0 0.22em;
302
+ border-style: solid;
303
+ border-color: inherit;
304
+ transform: rotate(45deg);
305
+ }
306
+ }
307
+
308
+ .vxe-icon--more {
309
+ @extend %DefaultWidthHeight;
310
+ &:before {
311
+ @extend %PseudoClass;
312
+ content: "...";
313
+ top: 0;
314
+ left: 0.1em;
315
+ line-height: 0.5em;
316
+ font-weight: 700;
317
+ }
318
+ }
319
+
320
+ .vxe-icon--plus {
321
+ @extend %DefaultWidthHeight;
322
+ &:before {
323
+ @extend %PseudoClass;
324
+ content: "+";
325
+ left: -0.12em;
326
+ bottom: -0.1em;
327
+ line-height: 1em;
328
+ font-size: 1.6em;
329
+ }
330
+ }
331
+
332
+ .vxe-icon--check {
333
+ @extend %DefaultWidthHeight;
334
+ &:before {
335
+ @extend %PseudoClass;
336
+ left: 0.25em;
337
+ bottom: 0.2em;
338
+ width: 0.5em;
339
+ height: 0.9em;
340
+ border-width: 0.15em;
341
+ border-style: solid;
342
+ border-top-color: transparent;
343
+ border-right-color: inherit;
344
+ border-bottom-color: inherit;
345
+ border-radius: 0.15em;
346
+ border-left-color: transparent;
347
+ transform: rotate(45deg);
348
+ }
349
+ }
350
+
351
+ .vxe-icon--close {
352
+ @extend %DefaultWidthHeight;
353
+ &:before {
354
+ @extend %PseudoClass;
355
+ content: "+";
356
+ left: -0.1em;
357
+ bottom: -0.16em;
358
+ line-height: 1em;
359
+ font-size: 1.8em;
360
+ transform: rotate(45deg);
361
+ }
362
+ }
363
+
364
+ .vxe-icon--minus {
365
+ @extend %DefaultWidthHeight;
366
+ &:before {
367
+ @extend %PseudoClass;
368
+ content: "\2500";
369
+ left: 0;
370
+ bottom: 0;
371
+ width: 100%;
372
+ text-align: center;
373
+ line-height: 0.9em;
374
+ font-size: 1.2em;
375
+ }
376
+ }
377
+
378
+ .vxe-icon--refresh {
379
+ @extend %DefaultWidthHeight;
380
+ border-width: 0.1em;
381
+ border-style: solid;
382
+ border-radius: 50%;
383
+ border-right-color: transparent !important;
384
+ border-left-color: transparent !important;
385
+ &:before {
386
+ left: 50%;
387
+ top: 0;
388
+ transform: translateX(50%) rotate(-45deg);
389
+ }
390
+ &:after {
391
+ right: 50%;
392
+ bottom: 0;
393
+ transform: translateX(-50%) rotate(135deg);
394
+ }
395
+ &:before,
396
+ &:after {
397
+ @extend %PseudoClass;
398
+ width: 0;
399
+ height: 0;
400
+ border-width: 0.25em;
401
+ border-style: solid;
402
+ border-right-color: transparent;
403
+ border-bottom-color: transparent;
404
+ border-left-color: transparent;
405
+ }
406
+ &.roll {
407
+ animation: rollCircle 1s infinite linear;
408
+ }
409
+ }
410
+
411
+ @keyframes rollCircle {
412
+ 0% {
413
+ transform: rotate(0deg);
414
+ }
415
+ 100% {
416
+ transform: rotate(360deg);
417
+ }
418
+ }
419
+
420
+ %BeforeSolidRadius {
421
+ content: "";
422
+ border-radius: 50%;
423
+ border-width: 0.5em;
424
+ border-style: solid;
425
+ border-color: inherit;
426
+ position: absolute;
427
+ top: 0;
428
+ left: 0;
429
+ transform: scale(0.95);
430
+ }
431
+
432
+ %QuestionAndInfoWarning {
433
+ &:after {
434
+ @extend %PseudoClass;
435
+ left: 0;
436
+ bottom: 0;
437
+ width: 100%;
438
+ text-align: center;
439
+ color: var(--vxe-ui-layout-background-color);
440
+ transform: rotate(-10deg) scale(0.75);
441
+ }
442
+ }
443
+
444
+ .vxe-icon--question {
445
+ @extend %DefaultWidthHeight, %QuestionAndInfoWarning;
446
+ &:before {
447
+ @extend %BeforeSolidRadius;
448
+ }
449
+ &:after {
450
+ content: "\3F";
451
+ }
452
+ }
453
+
454
+ .vxe-icon--info {
455
+ @extend %DefaultWidthHeight, %QuestionAndInfoWarning;
456
+ &:before {
457
+ @extend %BeforeSolidRadius;
458
+ }
459
+ &:after {
460
+ content: "\A1";
461
+ }
462
+ }
463
+
464
+ .vxe-icon--warning {
465
+ @extend %DefaultWidthHeight, %QuestionAndInfoWarning;
466
+ &:before {
467
+ @extend %BeforeSolidRadius;
468
+ }
469
+ &:after {
470
+ content: "\21";
471
+ }
472
+ }
473
+
474
+ .vxe-icon--success {
475
+ @extend %DefaultWidthHeight;
476
+ &:before {
477
+ @extend %BeforeSolidRadius;
478
+ }
479
+ &:after {
480
+ @extend %PseudoClass;
481
+ content: "\2713";
482
+ left: 0.25em;
483
+ bottom: 0;
484
+ color: var(--vxe-ui-layout-background-color);
485
+ font-size: 0.65em;
486
+ }
487
+ }
488
+
489
+ .vxe-icon--circle-plus {
490
+ @extend %DefaultWidthHeight;
491
+ &:before {
492
+ @extend %BeforeSolidRadius;
493
+ }
494
+ &:after {
495
+ @extend %PseudoClass;
496
+ content: "+";
497
+ left: 0;
498
+ bottom: 0;
499
+ width: 100%;
500
+ text-align: center;
501
+ color: var(--vxe-ui-layout-background-color);
502
+ line-height: 1.4em;
503
+ font-size: 0.8em;
504
+ }
505
+ }
506
+
507
+ .vxe-icon--remove {
508
+ @extend %DefaultWidthHeight;
509
+ &:before {
510
+ @extend %BeforeSolidRadius;
511
+ }
512
+ &:after {
513
+ @extend %PseudoClass;
514
+ content: "\2500";
515
+ left: 0;
516
+ bottom: 0;
517
+ width: 100%;
518
+ text-align: center;
519
+ line-height: 1.5em;
520
+ color: var(--vxe-ui-layout-background-color);
521
+ font-size: 0.7em;
522
+ }
523
+ }
524
+
525
+ .vxe-icon--error {
526
+ @extend %DefaultWidthHeight;
527
+ &:before {
528
+ @extend %BeforeSolidRadius;
529
+ }
530
+ &:after {
531
+ @extend %PseudoClass;
532
+ content: "\D7";
533
+ left: 0;
534
+ bottom: 0;
535
+ width: 100%;
536
+ line-height: 1.4em;
537
+ text-align: center;
538
+ color: var(--vxe-ui-layout-background-color);
539
+ font-size: 0.8em;
540
+ }
541
+ }
542
+
543
+ .vxe-icon--upload,
544
+ .vxe-icon--download {
545
+ @extend %DefaultWidthHeight;
546
+ overflow: hidden;
547
+ &:before {
548
+ @extend %PseudoClass;
549
+ left: 0;
550
+ width: 1em;
551
+ border-width: 0;
552
+ border-style: solid;
553
+ border-color: inherit;
554
+ }
555
+ &:after {
556
+ @extend %PseudoClass;
557
+ width: 100%;
558
+ text-align: center;
559
+ font-size: 2em;
560
+ }
561
+ }
562
+
563
+ .vxe-icon--upload {
564
+ &:before {
565
+ top: 0.1em;
566
+ border-top-width: 0.1em;
567
+ }
568
+ &:after {
569
+ content: "\2191";
570
+ left: 0;
571
+ top: 0.15em;
572
+ }
573
+ }
574
+
575
+ .vxe-icon--download {
576
+ &:before {
577
+ bottom: 0.05em;
578
+ border-bottom-width: 0.1em;
579
+ }
580
+ &:after {
581
+ content: "\2191";
582
+ left: 0;
583
+ bottom: 0.15em;
584
+ transform: rotate(180deg);
585
+ }
586
+ }
587
+
588
+ .vxe-icon--eye,
589
+ .vxe-icon--eye-slash {
590
+ @extend %DefaultWidthHeight;
591
+ &:before {
592
+ @extend %PseudoClass;
593
+ content: "\25CF";
594
+ top: 0.16em;
595
+ left: 0;
596
+ width: 1em;
597
+ height: 0.68em;
598
+ line-height: 0.25em;
599
+ border-radius: 50%;
600
+ border-width: 0.1em;
601
+ border-style: solid;
602
+ border-color: inherit;
603
+ text-align: center;
604
+ }
605
+ }
606
+
607
+ .vxe-icon--eye-slash {
608
+ &:after {
609
+ @extend %PseudoClass;
610
+ top: -0.1em;
611
+ left: 0.45em;
612
+ width: 0;
613
+ height: 1.2em;
614
+ border-width: 0;
615
+ border-style: solid;
616
+ border-color: inherit;
617
+ border-left-width: 0.1em;
618
+ transform: rotate(45deg);
619
+ }
620
+ }
621
+
622
+ .vxe-icon--calendar {
623
+ @extend %DefaultWidthHeight;
624
+ &:before {
625
+ @extend %PseudoClass;
626
+ top: 0.15em;
627
+ left: 0;
628
+ width: 1em;
629
+ height: 0.8em;
630
+ border-width: 0.2em 0.1em 0.1em 0.1em;
631
+ border-radius: 0.1em 0.1em 0 0;
632
+ border-style: solid;
633
+ border-color: inherit;
634
+ }
635
+ &:after {
636
+ @extend %PseudoClass;
637
+ left: 0.2em;
638
+ top: 0;
639
+ width: 0.6em;
640
+ height: 0.3em;
641
+ border-width: 0 0.1em;
642
+ border-style: solid;
643
+ border-color: inherit;
644
+ }
645
+ }
646
+
647
+ .vxe-icon--dot {
648
+ @extend %DefaultWidthHeight;
649
+ &:before {
650
+ @extend %PseudoClass;
651
+ top: 0.25em;
652
+ left: 0.25em;
653
+ border-radius: 50%;
654
+ border-width: 0.25em;
655
+ border-style: solid;
656
+ border-color: inherit;
657
+ }
658
+ }
659
+
660
+ .vxe-icon--print {
661
+ @extend %DefaultWidthHeight;
662
+ box-shadow: inset 0 0 0 0.1em;
663
+ border-width: 0.2em 0;
664
+ border-style: solid;
665
+ border-color: transparent !important;
666
+ border-radius: 0.3em 0.3em 0 0;
667
+ &:before {
668
+ @extend %PseudoClass;
669
+ width: 0.6em;
670
+ height: 0.3em;
671
+ top: -0.2em;
672
+ left: 0.2em;
673
+ box-shadow: inset 0 0 0 0.1em;
674
+ }
675
+ &:after {
676
+ @extend %PseudoClass;
677
+ width: 0.6em;
678
+ height: 0.6em;
679
+ left: 0.2em;
680
+ bottom: -0.2em;
681
+ box-shadow: inset 0 0 0 0.1em;
682
+ background-color: var(--vxe-ui-layout-background-color);
683
+ }
684
+ }
685
+
686
+ .vxe-icon--search {
687
+ @extend %DefaultWidthHeight;
688
+ &:before {
689
+ @extend %PseudoClass;
690
+ top: 0;
691
+ left: 0;
692
+ width: 0.8em;
693
+ height: 0.8em;
694
+ border-width: 0.15em;
695
+ border-style: solid;
696
+ border-color: inherit;
697
+ border-radius: 50%;
698
+ }
699
+ &:after {
700
+ @extend %PseudoClass;
701
+ top: 0.75em;
702
+ left: 0.6em;
703
+ width: 0.35em;
704
+ height: 0;
705
+ border-width: 0.15em 0 0 0;
706
+ border-style: solid;
707
+ border-color: inherit;
708
+ transform: rotate(45deg);
709
+ }
710
+ }
711
+
712
+ // 已废弃
713
+ .vxe-icon-warnion-circle-fill:before {
714
+ content: "\e848";
715
+ }