cy-element-ui 1.0.47 → 1.0.48

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 (209) hide show
  1. package/README.md +1 -1
  2. package/lib/element-ui.common.js +1 -1
  3. package/lib/index.js +1 -1
  4. package/lib/theme-chalk/README.md +33 -0
  5. package/lib/theme-chalk/base.css +1 -1
  6. package/lib/theme-chalk/gulpfile.js +27 -0
  7. package/lib/theme-chalk/index.css +1 -1
  8. package/lib/theme-chalk/package.json +35 -0
  9. package/lib/theme-chalk/src/alert.scss +147 -0
  10. package/lib/theme-chalk/src/aside.scss +7 -0
  11. package/lib/theme-chalk/src/autocomplete.scss +80 -0
  12. package/lib/theme-chalk/src/avatar.scss +51 -0
  13. package/lib/theme-chalk/src/backtop.scss +22 -0
  14. package/lib/theme-chalk/src/badge.scss +57 -0
  15. package/lib/theme-chalk/src/base.scss +2 -0
  16. package/lib/theme-chalk/src/breadcrumb.scss +55 -0
  17. package/lib/theme-chalk/src/button.scss +262 -0
  18. package/lib/theme-chalk/src/calendar.scss +79 -0
  19. package/lib/theme-chalk/src/card.scss +32 -0
  20. package/lib/theme-chalk/src/carousel-item.scss +50 -0
  21. package/lib/theme-chalk/src/carousel.scss +161 -0
  22. package/lib/theme-chalk/src/cascader-panel.scss +120 -0
  23. package/lib/theme-chalk/src/cascader.scss +182 -0
  24. package/lib/theme-chalk/src/checkbox.scss +359 -0
  25. package/lib/theme-chalk/src/col.scss +156 -0
  26. package/lib/theme-chalk/src/collapse.scss +63 -0
  27. package/lib/theme-chalk/src/color-picker.scss +384 -0
  28. package/lib/theme-chalk/src/common/popup.scss +42 -0
  29. package/lib/theme-chalk/src/common/transition.scss +99 -0
  30. package/lib/theme-chalk/src/common/var.scss +1028 -0
  31. package/lib/theme-chalk/src/container.scss +14 -0
  32. package/lib/theme-chalk/src/date-picker/date-picker.scss +97 -0
  33. package/lib/theme-chalk/src/date-picker/date-range-picker.scss +101 -0
  34. package/lib/theme-chalk/src/date-picker/date-table.scss +151 -0
  35. package/lib/theme-chalk/src/date-picker/month-table.scss +82 -0
  36. package/lib/theme-chalk/src/date-picker/picker-panel.scss +117 -0
  37. package/lib/theme-chalk/src/date-picker/picker.scss +197 -0
  38. package/lib/theme-chalk/src/date-picker/time-picker.scss +85 -0
  39. package/lib/theme-chalk/src/date-picker/time-range-picker.scss +31 -0
  40. package/lib/theme-chalk/src/date-picker/time-spinner.scss +110 -0
  41. package/lib/theme-chalk/src/date-picker/year-table.scss +51 -0
  42. package/lib/theme-chalk/src/date-picker.scss +12 -0
  43. package/lib/theme-chalk/src/descriptions-item.scss +42 -0
  44. package/lib/theme-chalk/src/descriptions.scss +111 -0
  45. package/lib/theme-chalk/src/dialog.scss +123 -0
  46. package/lib/theme-chalk/src/display.scss +12 -0
  47. package/lib/theme-chalk/src/divider.scss +47 -0
  48. package/lib/theme-chalk/src/drawer.scss +219 -0
  49. package/lib/theme-chalk/src/dropdown.scss +182 -0
  50. package/lib/theme-chalk/src/empty.scss +45 -0
  51. package/lib/theme-chalk/src/footer.scss +8 -0
  52. package/lib/theme-chalk/src/form.scss +167 -0
  53. package/lib/theme-chalk/src/header.scss +8 -0
  54. package/lib/theme-chalk/src/icon.scss +1167 -0
  55. package/lib/theme-chalk/src/image.scss +179 -0
  56. package/lib/theme-chalk/src/index.scss +90 -0
  57. package/lib/theme-chalk/src/input-number.scss +180 -0
  58. package/lib/theme-chalk/src/input.scss +360 -0
  59. package/lib/theme-chalk/src/link.scss +81 -0
  60. package/lib/theme-chalk/src/loading.scss +96 -0
  61. package/lib/theme-chalk/src/main.scss +12 -0
  62. package/lib/theme-chalk/src/menu.scss +289 -0
  63. package/lib/theme-chalk/src/message-box.scss +226 -0
  64. package/lib/theme-chalk/src/message.scss +120 -0
  65. package/lib/theme-chalk/src/mixins/_button.scss +81 -0
  66. package/lib/theme-chalk/src/mixins/config.scss +4 -0
  67. package/lib/theme-chalk/src/mixins/function.scss +44 -0
  68. package/lib/theme-chalk/src/mixins/mixins.scss +190 -0
  69. package/lib/theme-chalk/src/mixins/utils.scss +39 -0
  70. package/lib/theme-chalk/src/notification.scss +99 -0
  71. package/lib/theme-chalk/src/option-group.scss +42 -0
  72. package/lib/theme-chalk/src/option.scss +36 -0
  73. package/lib/theme-chalk/src/page-header.scss +41 -0
  74. package/lib/theme-chalk/src/pagination.scss +295 -0
  75. package/lib/theme-chalk/src/popconfirm.scss +16 -0
  76. package/lib/theme-chalk/src/popover.scss +40 -0
  77. package/lib/theme-chalk/src/popper.scss +101 -0
  78. package/lib/theme-chalk/src/progress.scss +141 -0
  79. package/lib/theme-chalk/src/radio-button.scss +113 -0
  80. package/lib/theme-chalk/src/radio-group.scss +9 -0
  81. package/lib/theme-chalk/src/radio.scss +199 -0
  82. package/lib/theme-chalk/src/rate.scss +49 -0
  83. package/lib/theme-chalk/src/reset.scss +79 -0
  84. package/lib/theme-chalk/src/result.scss +61 -0
  85. package/lib/theme-chalk/src/row.scss +43 -0
  86. package/lib/theme-chalk/src/scrollbar.scss +72 -0
  87. package/lib/theme-chalk/src/select-dropdown.scss +62 -0
  88. package/lib/theme-chalk/src/select.scss +152 -0
  89. package/lib/theme-chalk/src/skeleton-item.scss +84 -0
  90. package/lib/theme-chalk/src/skeleton.scss +40 -0
  91. package/lib/theme-chalk/src/slider.scss +250 -0
  92. package/lib/theme-chalk/src/spinner.scss +44 -0
  93. package/lib/theme-chalk/src/statistic.scss +38 -0
  94. package/lib/theme-chalk/src/step.scss +317 -0
  95. package/lib/theme-chalk/src/steps.scss +20 -0
  96. package/lib/theme-chalk/src/switch.scss +116 -0
  97. package/lib/theme-chalk/src/table-column.scss +97 -0
  98. package/lib/theme-chalk/src/table.scss +564 -0
  99. package/lib/theme-chalk/src/tabs.scss +602 -0
  100. package/lib/theme-chalk/src/tag.scss +163 -0
  101. package/lib/theme-chalk/src/time-picker.scss +8 -0
  102. package/lib/theme-chalk/src/time-select.scss +37 -0
  103. package/lib/theme-chalk/src/timeline-item.scss +86 -0
  104. package/lib/theme-chalk/src/timeline.scss +14 -0
  105. package/lib/theme-chalk/src/tooltip.scss +141 -0
  106. package/lib/theme-chalk/src/transfer.scss +227 -0
  107. package/lib/theme-chalk/src/tree.scss +123 -0
  108. package/lib/theme-chalk/src/upload.scss +603 -0
  109. package/package.json +3 -3
  110. package/packages/theme-chalk/gulpfile.js +1 -14
  111. package/packages/theme-chalk/src/common/var.scss +16 -16
  112. package/packages/theme-cy/gulpfile.js +1 -14
  113. package/src/index.js +1 -1
  114. package/lib/theme-chalk/alert.css +0 -1
  115. package/lib/theme-chalk/aside.css +0 -1
  116. package/lib/theme-chalk/autocomplete.css +0 -1
  117. package/lib/theme-chalk/avatar.css +0 -1
  118. package/lib/theme-chalk/backtop.css +0 -1
  119. package/lib/theme-chalk/badge.css +0 -1
  120. package/lib/theme-chalk/breadcrumb.css +0 -1
  121. package/lib/theme-chalk/button.css +0 -1
  122. package/lib/theme-chalk/calendar.css +0 -1
  123. package/lib/theme-chalk/card.css +0 -1
  124. package/lib/theme-chalk/carousel-item.css +0 -1
  125. package/lib/theme-chalk/carousel.css +0 -1
  126. package/lib/theme-chalk/cascader-panel.css +0 -1
  127. package/lib/theme-chalk/cascader.css +0 -1
  128. package/lib/theme-chalk/checkbox.css +0 -1
  129. package/lib/theme-chalk/col.css +0 -1
  130. package/lib/theme-chalk/collapse.css +0 -1
  131. package/lib/theme-chalk/color-picker.css +0 -1
  132. package/lib/theme-chalk/container.css +0 -1
  133. package/lib/theme-chalk/date-picker.css +0 -1
  134. package/lib/theme-chalk/descriptions-item.css +0 -1
  135. package/lib/theme-chalk/descriptions.css +0 -1
  136. package/lib/theme-chalk/dialog.css +0 -1
  137. package/lib/theme-chalk/display.css +0 -1
  138. package/lib/theme-chalk/divider.css +0 -1
  139. package/lib/theme-chalk/drawer.css +0 -1
  140. package/lib/theme-chalk/dropdown.css +0 -1
  141. package/lib/theme-chalk/empty.css +0 -1
  142. package/lib/theme-chalk/footer.css +0 -1
  143. package/lib/theme-chalk/form.css +0 -1
  144. package/lib/theme-chalk/header.css +0 -1
  145. package/lib/theme-chalk/icon.css +0 -1
  146. package/lib/theme-chalk/image.css +0 -1
  147. package/lib/theme-chalk/input-number.css +0 -1
  148. package/lib/theme-chalk/input.css +0 -1
  149. package/lib/theme-chalk/link.css +0 -1
  150. package/lib/theme-chalk/loading.css +0 -1
  151. package/lib/theme-chalk/main.css +0 -1
  152. package/lib/theme-chalk/menu.css +0 -1
  153. package/lib/theme-chalk/message-box.css +0 -1
  154. package/lib/theme-chalk/message.css +0 -1
  155. package/lib/theme-chalk/notification.css +0 -1
  156. package/lib/theme-chalk/option-group.css +0 -1
  157. package/lib/theme-chalk/option.css +0 -1
  158. package/lib/theme-chalk/page-header.css +0 -1
  159. package/lib/theme-chalk/pagination.css +0 -1
  160. package/lib/theme-chalk/popconfirm.css +0 -1
  161. package/lib/theme-chalk/popover.css +0 -1
  162. package/lib/theme-chalk/popper.css +0 -1
  163. package/lib/theme-chalk/progress.css +0 -1
  164. package/lib/theme-chalk/radio-button.css +0 -1
  165. package/lib/theme-chalk/radio-group.css +0 -1
  166. package/lib/theme-chalk/radio.css +0 -1
  167. package/lib/theme-chalk/rate.css +0 -1
  168. package/lib/theme-chalk/reset.css +0 -1
  169. package/lib/theme-chalk/result.css +0 -1
  170. package/lib/theme-chalk/row.css +0 -1
  171. package/lib/theme-chalk/scrollbar.css +0 -1
  172. package/lib/theme-chalk/select-dropdown.css +0 -1
  173. package/lib/theme-chalk/select.css +0 -1
  174. package/lib/theme-chalk/skeleton-item.css +0 -1
  175. package/lib/theme-chalk/skeleton.css +0 -1
  176. package/lib/theme-chalk/slider.css +0 -1
  177. package/lib/theme-chalk/spinner.css +0 -1
  178. package/lib/theme-chalk/statistic.css +0 -1
  179. package/lib/theme-chalk/step.css +0 -1
  180. package/lib/theme-chalk/steps.css +0 -1
  181. package/lib/theme-chalk/switch.css +0 -1
  182. package/lib/theme-chalk/table-column.css +0 -1
  183. package/lib/theme-chalk/table.css +0 -1
  184. package/lib/theme-chalk/tabs.css +0 -1
  185. package/lib/theme-chalk/tag.css +0 -1
  186. package/lib/theme-chalk/time-picker.css +0 -1
  187. package/lib/theme-chalk/time-select.css +0 -1
  188. package/lib/theme-chalk/timeline-item.css +0 -1
  189. package/lib/theme-chalk/timeline.css +0 -1
  190. package/lib/theme-chalk/tooltip.css +0 -1
  191. package/lib/theme-chalk/transfer.css +0 -1
  192. package/lib/theme-chalk/tree.css +0 -1
  193. package/lib/theme-chalk/upload.css +0 -1
  194. /package/lib/theme-chalk/{breadcrumb-item.css → src/breadcrumb-item.scss} +0 -0
  195. /package/lib/theme-chalk/{button-group.css → src/button-group.scss} +0 -0
  196. /package/lib/theme-chalk/{checkbox-button.css → src/checkbox-button.scss} +0 -0
  197. /package/lib/theme-chalk/{checkbox-group.css → src/checkbox-group.scss} +0 -0
  198. /package/lib/theme-chalk/{collapse-item.css → src/collapse-item.scss} +0 -0
  199. /package/lib/theme-chalk/{dropdown-item.css → src/dropdown-item.scss} +0 -0
  200. /package/lib/theme-chalk/{dropdown-menu.css → src/dropdown-menu.scss} +0 -0
  201. /package/lib/theme-chalk/{fonts → src/fonts}/element-icons.ttf +0 -0
  202. /package/lib/theme-chalk/{fonts → src/fonts}/element-icons.woff +0 -0
  203. /package/lib/theme-chalk/{form-item.css → src/form-item.scss} +0 -0
  204. /package/lib/theme-chalk/{infinite-scroll.css → src/infinite-scroll.scss} +0 -0
  205. /package/lib/theme-chalk/{infiniteScroll.css → src/infiniteScroll.scss} +0 -0
  206. /package/lib/theme-chalk/{menu-item-group.css → src/menu-item-group.scss} +0 -0
  207. /package/lib/theme-chalk/{menu-item.css → src/menu-item.scss} +0 -0
  208. /package/lib/theme-chalk/{submenu.css → src/submenu.scss} +0 -0
  209. /package/lib/theme-chalk/{tab-pane.css → src/tab-pane.scss} +0 -0
@@ -0,0 +1,1167 @@
1
+ @import "common/var";
2
+
3
+ @font-face {
4
+ font-family: 'element-icons';
5
+ src: url('#{$--font-path}/element-icons.woff') format('woff'), /* chrome, firefox */
6
+ url('#{$--font-path}/element-icons.ttf') format('truetype'); /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
7
+ font-weight: normal;
8
+ font-display: $--font-display;
9
+ font-style: normal;
10
+ }
11
+
12
+ [class^="el-icon-"], [class*=" el-icon-"] {
13
+ /* use !important to prevent issues with browser extensions that change fonts */
14
+ font-family: 'element-icons' !important;
15
+ speak: none;
16
+ font-style: normal;
17
+ font-weight: normal;
18
+ font-variant: normal;
19
+ text-transform: none;
20
+ line-height: 1;
21
+ vertical-align: baseline;
22
+ display: inline-block;
23
+
24
+ /* Better Font Rendering =========== */
25
+ -webkit-font-smoothing: antialiased;
26
+ -moz-osx-font-smoothing: grayscale;
27
+ }
28
+
29
+ .el-icon-ice-cream-round:before {
30
+ content: "\e6a0";
31
+ }
32
+
33
+ .el-icon-ice-cream-square:before {
34
+ content: "\e6a3";
35
+ }
36
+
37
+ .el-icon-lollipop:before {
38
+ content: "\e6a4";
39
+ }
40
+
41
+ .el-icon-potato-strips:before {
42
+ content: "\e6a5";
43
+ }
44
+
45
+ .el-icon-milk-tea:before {
46
+ content: "\e6a6";
47
+ }
48
+
49
+ .el-icon-ice-drink:before {
50
+ content: "\e6a7";
51
+ }
52
+
53
+ .el-icon-ice-tea:before {
54
+ content: "\e6a9";
55
+ }
56
+
57
+ .el-icon-coffee:before {
58
+ content: "\e6aa";
59
+ }
60
+
61
+ .el-icon-orange:before {
62
+ content: "\e6ab";
63
+ }
64
+
65
+ .el-icon-pear:before {
66
+ content: "\e6ac";
67
+ }
68
+
69
+ .el-icon-apple:before {
70
+ content: "\e6ad";
71
+ }
72
+
73
+ .el-icon-cherry:before {
74
+ content: "\e6ae";
75
+ }
76
+
77
+ .el-icon-watermelon:before {
78
+ content: "\e6af";
79
+ }
80
+
81
+ .el-icon-grape:before {
82
+ content: "\e6b0";
83
+ }
84
+
85
+ .el-icon-refrigerator:before {
86
+ content: "\e6b1";
87
+ }
88
+
89
+ .el-icon-goblet-square-full:before {
90
+ content: "\e6b2";
91
+ }
92
+
93
+ .el-icon-goblet-square:before {
94
+ content: "\e6b3";
95
+ }
96
+
97
+ .el-icon-goblet-full:before {
98
+ content: "\e6b4";
99
+ }
100
+
101
+ .el-icon-goblet:before {
102
+ content: "\e6b5";
103
+ }
104
+
105
+ .el-icon-cold-drink:before {
106
+ content: "\e6b6";
107
+ }
108
+
109
+ .el-icon-coffee-cup:before {
110
+ content: "\e6b8";
111
+ }
112
+
113
+ .el-icon-water-cup:before {
114
+ content: "\e6b9";
115
+ }
116
+
117
+ .el-icon-hot-water:before {
118
+ content: "\e6ba";
119
+ }
120
+
121
+ .el-icon-ice-cream:before {
122
+ content: "\e6bb";
123
+ }
124
+
125
+ .el-icon-dessert:before {
126
+ content: "\e6bc";
127
+ }
128
+
129
+ .el-icon-sugar:before {
130
+ content: "\e6bd";
131
+ }
132
+
133
+ .el-icon-tableware:before {
134
+ content: "\e6be";
135
+ }
136
+
137
+ .el-icon-burger:before {
138
+ content: "\e6bf";
139
+ }
140
+
141
+ .el-icon-knife-fork:before {
142
+ content: "\e6c1";
143
+ }
144
+
145
+ .el-icon-fork-spoon:before {
146
+ content: "\e6c2";
147
+ }
148
+
149
+ .el-icon-chicken:before {
150
+ content: "\e6c3";
151
+ }
152
+
153
+ .el-icon-food:before {
154
+ content: "\e6c4";
155
+ }
156
+
157
+ .el-icon-dish-1:before {
158
+ content: "\e6c5";
159
+ }
160
+
161
+ .el-icon-dish:before {
162
+ content: "\e6c6";
163
+ }
164
+
165
+ .el-icon-moon-night:before {
166
+ content: "\e6ee";
167
+ }
168
+
169
+ .el-icon-moon:before {
170
+ content: "\e6f0";
171
+ }
172
+
173
+ .el-icon-cloudy-and-sunny:before {
174
+ content: "\e6f1";
175
+ }
176
+
177
+ .el-icon-partly-cloudy:before {
178
+ content: "\e6f2";
179
+ }
180
+
181
+ .el-icon-cloudy:before {
182
+ content: "\e6f3";
183
+ }
184
+
185
+ .el-icon-sunny:before {
186
+ content: "\e6f6";
187
+ }
188
+
189
+ .el-icon-sunset:before {
190
+ content: "\e6f7";
191
+ }
192
+
193
+ .el-icon-sunrise-1:before {
194
+ content: "\e6f8";
195
+ }
196
+
197
+ .el-icon-sunrise:before {
198
+ content: "\e6f9";
199
+ }
200
+
201
+ .el-icon-heavy-rain:before {
202
+ content: "\e6fa";
203
+ }
204
+
205
+ .el-icon-lightning:before {
206
+ content: "\e6fb";
207
+ }
208
+
209
+ .el-icon-light-rain:before {
210
+ content: "\e6fc";
211
+ }
212
+
213
+ .el-icon-wind-power:before {
214
+ content: "\e6fd";
215
+ }
216
+
217
+ .el-icon-baseball:before {
218
+ content: "\e712";
219
+ }
220
+
221
+ .el-icon-soccer:before {
222
+ content: "\e713";
223
+ }
224
+
225
+ .el-icon-football:before {
226
+ content: "\e715";
227
+ }
228
+
229
+ .el-icon-basketball:before {
230
+ content: "\e716";
231
+ }
232
+
233
+ .el-icon-ship:before {
234
+ content: "\e73f";
235
+ }
236
+
237
+ .el-icon-truck:before {
238
+ content: "\e740";
239
+ }
240
+
241
+ .el-icon-bicycle:before {
242
+ content: "\e741";
243
+ }
244
+
245
+ .el-icon-mobile-phone:before {
246
+ content: "\e6d3";
247
+ }
248
+
249
+ .el-icon-service:before {
250
+ content: "\e6d4";
251
+ }
252
+
253
+ .el-icon-key:before {
254
+ content: "\e6e2";
255
+ }
256
+
257
+ .el-icon-unlock:before {
258
+ content: "\e6e4";
259
+ }
260
+
261
+ .el-icon-lock:before {
262
+ content: "\e6e5";
263
+ }
264
+
265
+ .el-icon-watch:before {
266
+ content: "\e6fe";
267
+ }
268
+
269
+ .el-icon-watch-1:before {
270
+ content: "\e6ff";
271
+ }
272
+
273
+ .el-icon-timer:before {
274
+ content: "\e702";
275
+ }
276
+
277
+ .el-icon-alarm-clock:before {
278
+ content: "\e703";
279
+ }
280
+
281
+ .el-icon-map-location:before {
282
+ content: "\e704";
283
+ }
284
+
285
+ .el-icon-delete-location:before {
286
+ content: "\e705";
287
+ }
288
+
289
+ .el-icon-add-location:before {
290
+ content: "\e706";
291
+ }
292
+
293
+ .el-icon-location-information:before {
294
+ content: "\e707";
295
+ }
296
+
297
+ .el-icon-location-outline:before {
298
+ content: "\e708";
299
+ }
300
+
301
+ .el-icon-location:before {
302
+ content: "\e79e";
303
+ }
304
+
305
+ .el-icon-place:before {
306
+ content: "\e709";
307
+ }
308
+
309
+ .el-icon-discover:before {
310
+ content: "\e70a";
311
+ }
312
+
313
+ .el-icon-first-aid-kit:before {
314
+ content: "\e70b";
315
+ }
316
+
317
+ .el-icon-trophy-1:before {
318
+ content: "\e70c";
319
+ }
320
+
321
+ .el-icon-trophy:before {
322
+ content: "\e70d";
323
+ }
324
+
325
+ .el-icon-medal:before {
326
+ content: "\e70e";
327
+ }
328
+
329
+ .el-icon-medal-1:before {
330
+ content: "\e70f";
331
+ }
332
+
333
+ .el-icon-stopwatch:before {
334
+ content: "\e710";
335
+ }
336
+
337
+ .el-icon-mic:before {
338
+ content: "\e711";
339
+ }
340
+
341
+ .el-icon-copy-document:before {
342
+ content: "\e718";
343
+ }
344
+
345
+ .el-icon-full-screen:before {
346
+ content: "\e719";
347
+ }
348
+
349
+ .el-icon-switch-button:before {
350
+ content: "\e71b";
351
+ }
352
+
353
+ .el-icon-aim:before {
354
+ content: "\e71c";
355
+ }
356
+
357
+ .el-icon-crop:before {
358
+ content: "\e71d";
359
+ }
360
+
361
+ .el-icon-odometer:before {
362
+ content: "\e71e";
363
+ }
364
+
365
+ .el-icon-time:before {
366
+ content: "\e71f";
367
+ }
368
+
369
+ .el-icon-bangzhu:before {
370
+ content: "\e724";
371
+ }
372
+
373
+ .el-icon-close-notification:before {
374
+ content: "\e726";
375
+ }
376
+
377
+ .el-icon-microphone:before {
378
+ content: "\e727";
379
+ }
380
+
381
+ .el-icon-turn-off-microphone:before {
382
+ content: "\e728";
383
+ }
384
+
385
+ .el-icon-position:before {
386
+ content: "\e729";
387
+ }
388
+
389
+ .el-icon-postcard:before {
390
+ content: "\e72a";
391
+ }
392
+
393
+ .el-icon-message:before {
394
+ content: "\e72b";
395
+ }
396
+
397
+ .el-icon-chat-line-square:before {
398
+ content: "\e72d";
399
+ }
400
+
401
+ .el-icon-chat-dot-square:before {
402
+ content: "\e72e";
403
+ }
404
+
405
+ .el-icon-chat-dot-round:before {
406
+ content: "\e72f";
407
+ }
408
+
409
+ .el-icon-chat-square:before {
410
+ content: "\e730";
411
+ }
412
+
413
+ .el-icon-chat-line-round:before {
414
+ content: "\e731";
415
+ }
416
+
417
+ .el-icon-chat-round:before {
418
+ content: "\e732";
419
+ }
420
+
421
+ .el-icon-set-up:before {
422
+ content: "\e733";
423
+ }
424
+
425
+ .el-icon-turn-off:before {
426
+ content: "\e734";
427
+ }
428
+
429
+ .el-icon-open:before {
430
+ content: "\e735";
431
+ }
432
+
433
+ .el-icon-connection:before {
434
+ content: "\e736";
435
+ }
436
+
437
+ .el-icon-link:before {
438
+ content: "\e737";
439
+ }
440
+
441
+ .el-icon-cpu:before {
442
+ content: "\e738";
443
+ }
444
+
445
+ .el-icon-thumb:before {
446
+ content: "\e739";
447
+ }
448
+
449
+ .el-icon-female:before {
450
+ content: "\e73a";
451
+ }
452
+
453
+ .el-icon-male:before {
454
+ content: "\e73b";
455
+ }
456
+
457
+ .el-icon-guide:before {
458
+ content: "\e73c";
459
+ }
460
+
461
+ .el-icon-news:before {
462
+ content: "\e73e";
463
+ }
464
+
465
+ .el-icon-price-tag:before {
466
+ content: "\e744";
467
+ }
468
+
469
+ .el-icon-discount:before {
470
+ content: "\e745";
471
+ }
472
+
473
+ .el-icon-wallet:before {
474
+ content: "\e747";
475
+ }
476
+
477
+ .el-icon-coin:before {
478
+ content: "\e748";
479
+ }
480
+
481
+ .el-icon-money:before {
482
+ content: "\e749";
483
+ }
484
+
485
+ .el-icon-bank-card:before {
486
+ content: "\e74a";
487
+ }
488
+
489
+ .el-icon-box:before {
490
+ content: "\e74b";
491
+ }
492
+
493
+ .el-icon-present:before {
494
+ content: "\e74c";
495
+ }
496
+
497
+ .el-icon-sell:before {
498
+ content: "\e6d5";
499
+ }
500
+
501
+ .el-icon-sold-out:before {
502
+ content: "\e6d6";
503
+ }
504
+
505
+ .el-icon-shopping-bag-2:before {
506
+ content: "\e74d";
507
+ }
508
+
509
+ .el-icon-shopping-bag-1:before {
510
+ content: "\e74e";
511
+ }
512
+
513
+ .el-icon-shopping-cart-2:before {
514
+ content: "\e74f";
515
+ }
516
+
517
+ .el-icon-shopping-cart-1:before {
518
+ content: "\e750";
519
+ }
520
+
521
+ .el-icon-shopping-cart-full:before {
522
+ content: "\e751";
523
+ }
524
+
525
+ .el-icon-smoking:before {
526
+ content: "\e752";
527
+ }
528
+
529
+ .el-icon-no-smoking:before {
530
+ content: "\e753";
531
+ }
532
+
533
+ .el-icon-house:before {
534
+ content: "\e754";
535
+ }
536
+
537
+ .el-icon-table-lamp:before {
538
+ content: "\e755";
539
+ }
540
+
541
+ .el-icon-school:before {
542
+ content: "\e756";
543
+ }
544
+
545
+ .el-icon-office-building:before {
546
+ content: "\e757";
547
+ }
548
+
549
+ .el-icon-toilet-paper:before {
550
+ content: "\e758";
551
+ }
552
+
553
+ .el-icon-notebook-2:before {
554
+ content: "\e759";
555
+ }
556
+
557
+ .el-icon-notebook-1:before {
558
+ content: "\e75a";
559
+ }
560
+
561
+ .el-icon-files:before {
562
+ content: "\e75b";
563
+ }
564
+
565
+ .el-icon-collection:before {
566
+ content: "\e75c";
567
+ }
568
+
569
+ .el-icon-receiving:before {
570
+ content: "\e75d";
571
+ }
572
+
573
+ .el-icon-suitcase-1:before {
574
+ content: "\e760";
575
+ }
576
+
577
+ .el-icon-suitcase:before {
578
+ content: "\e761";
579
+ }
580
+
581
+ .el-icon-film:before {
582
+ content: "\e763";
583
+ }
584
+
585
+ .el-icon-collection-tag:before {
586
+ content: "\e765";
587
+ }
588
+
589
+ .el-icon-data-analysis:before {
590
+ content: "\e766";
591
+ }
592
+
593
+ .el-icon-pie-chart:before {
594
+ content: "\e767";
595
+ }
596
+
597
+ .el-icon-data-board:before {
598
+ content: "\e768";
599
+ }
600
+
601
+ .el-icon-data-line:before {
602
+ content: "\e76d";
603
+ }
604
+
605
+ .el-icon-reading:before {
606
+ content: "\e769";
607
+ }
608
+
609
+ .el-icon-magic-stick:before {
610
+ content: "\e76a";
611
+ }
612
+
613
+ .el-icon-coordinate:before {
614
+ content: "\e76b";
615
+ }
616
+
617
+ .el-icon-mouse:before {
618
+ content: "\e76c";
619
+ }
620
+
621
+ .el-icon-brush:before {
622
+ content: "\e76e";
623
+ }
624
+
625
+ .el-icon-headset:before {
626
+ content: "\e76f";
627
+ }
628
+
629
+ .el-icon-umbrella:before {
630
+ content: "\e770";
631
+ }
632
+
633
+ .el-icon-scissors:before {
634
+ content: "\e771";
635
+ }
636
+
637
+ .el-icon-mobile:before {
638
+ content: "\e773";
639
+ }
640
+
641
+ .el-icon-attract:before {
642
+ content: "\e774";
643
+ }
644
+
645
+ .el-icon-monitor:before {
646
+ content: "\e775";
647
+ }
648
+
649
+ .el-icon-search:before {
650
+ content: "\e778";
651
+ }
652
+
653
+ .el-icon-takeaway-box:before {
654
+ content: "\e77a";
655
+ }
656
+
657
+ .el-icon-paperclip:before {
658
+ content: "\e77d";
659
+ }
660
+
661
+ .el-icon-printer:before {
662
+ content: "\e77e";
663
+ }
664
+
665
+ .el-icon-document-add:before {
666
+ content: "\e782";
667
+ }
668
+
669
+ .el-icon-document:before {
670
+ content: "\e785";
671
+ }
672
+
673
+ .el-icon-document-checked:before {
674
+ content: "\e786";
675
+ }
676
+
677
+ .el-icon-document-copy:before {
678
+ content: "\e787";
679
+ }
680
+
681
+ .el-icon-document-delete:before {
682
+ content: "\e788";
683
+ }
684
+
685
+ .el-icon-document-remove:before {
686
+ content: "\e789";
687
+ }
688
+
689
+ .el-icon-tickets:before {
690
+ content: "\e78b";
691
+ }
692
+
693
+ .el-icon-folder-checked:before {
694
+ content: "\e77f";
695
+ }
696
+
697
+ .el-icon-folder-delete:before {
698
+ content: "\e780";
699
+ }
700
+
701
+ .el-icon-folder-remove:before {
702
+ content: "\e781";
703
+ }
704
+
705
+ .el-icon-folder-add:before {
706
+ content: "\e783";
707
+ }
708
+
709
+ .el-icon-folder-opened:before {
710
+ content: "\e784";
711
+ }
712
+
713
+ .el-icon-folder:before {
714
+ content: "\e78a";
715
+ }
716
+
717
+ .el-icon-edit-outline:before {
718
+ content: "\e764";
719
+ }
720
+
721
+ .el-icon-edit:before {
722
+ content: "\e78c";
723
+ }
724
+
725
+ .el-icon-date:before {
726
+ content: "\e78e";
727
+ }
728
+
729
+ .el-icon-c-scale-to-original:before {
730
+ content: "\e7c6";
731
+ }
732
+
733
+ .el-icon-view:before {
734
+ content: "\e6ce";
735
+ }
736
+
737
+ .el-icon-loading:before {
738
+ content: "\e6cf";
739
+ }
740
+
741
+ .el-icon-rank:before {
742
+ content: "\e6d1";
743
+ }
744
+
745
+ .el-icon-sort-down:before {
746
+ content: "\e7c4";
747
+ }
748
+
749
+ .el-icon-sort-up:before {
750
+ content: "\e7c5";
751
+ }
752
+
753
+ .el-icon-sort:before {
754
+ content: "\e6d2";
755
+ }
756
+
757
+ .el-icon-finished:before {
758
+ content: "\e6cd";
759
+ }
760
+
761
+ .el-icon-refresh-left:before {
762
+ content: "\e6c7";
763
+ }
764
+
765
+ .el-icon-refresh-right:before {
766
+ content: "\e6c8";
767
+ }
768
+
769
+ .el-icon-refresh:before {
770
+ content: "\e6d0";
771
+ }
772
+
773
+ .el-icon-video-play:before {
774
+ content: "\e7c0";
775
+ }
776
+
777
+ .el-icon-video-pause:before {
778
+ content: "\e7c1";
779
+ }
780
+
781
+ .el-icon-d-arrow-right:before {
782
+ content: "\e6dc";
783
+ }
784
+
785
+ .el-icon-d-arrow-left:before {
786
+ content: "\e6dd";
787
+ }
788
+
789
+ .el-icon-arrow-up:before {
790
+ content: "\e6e1";
791
+ }
792
+
793
+ .el-icon-arrow-down:before {
794
+ content: "\e6df";
795
+ }
796
+
797
+ .el-icon-arrow-right:before {
798
+ content: "\e6e0";
799
+ }
800
+
801
+ .el-icon-arrow-left:before {
802
+ content: "\e6de";
803
+ }
804
+
805
+ .el-icon-top-right:before {
806
+ content: "\e6e7";
807
+ }
808
+
809
+ .el-icon-top-left:before {
810
+ content: "\e6e8";
811
+ }
812
+
813
+ .el-icon-top:before {
814
+ content: "\e6e6";
815
+ }
816
+
817
+ .el-icon-bottom:before {
818
+ content: "\e6eb";
819
+ }
820
+
821
+ .el-icon-right:before {
822
+ content: "\e6e9";
823
+ }
824
+
825
+ .el-icon-back:before {
826
+ content: "\e6ea";
827
+ }
828
+
829
+ .el-icon-bottom-right:before {
830
+ content: "\e6ec";
831
+ }
832
+
833
+ .el-icon-bottom-left:before {
834
+ content: "\e6ed";
835
+ }
836
+
837
+ .el-icon-caret-top:before {
838
+ content: "\e78f";
839
+ }
840
+
841
+ .el-icon-caret-bottom:before {
842
+ content: "\e790";
843
+ }
844
+
845
+ .el-icon-caret-right:before {
846
+ content: "\e791";
847
+ }
848
+
849
+ .el-icon-caret-left:before {
850
+ content: "\e792";
851
+ }
852
+
853
+ .el-icon-d-caret:before {
854
+ content: "\e79a";
855
+ }
856
+
857
+ .el-icon-share:before {
858
+ content: "\e793";
859
+ }
860
+
861
+ .el-icon-menu:before {
862
+ content: "\e798";
863
+ }
864
+
865
+ .el-icon-s-grid:before {
866
+ content: "\e7a6";
867
+ }
868
+
869
+ .el-icon-s-check:before {
870
+ content: "\e7a7";
871
+ }
872
+
873
+ .el-icon-s-data:before {
874
+ content: "\e7a8";
875
+ }
876
+
877
+ .el-icon-s-opportunity:before {
878
+ content: "\e7aa";
879
+ }
880
+
881
+ .el-icon-s-custom:before {
882
+ content: "\e7ab";
883
+ }
884
+
885
+ .el-icon-s-claim:before {
886
+ content: "\e7ad";
887
+ }
888
+
889
+ .el-icon-s-finance:before {
890
+ content: "\e7ae";
891
+ }
892
+
893
+ .el-icon-s-comment:before {
894
+ content: "\e7af";
895
+ }
896
+
897
+ .el-icon-s-flag:before {
898
+ content: "\e7b0";
899
+ }
900
+
901
+ .el-icon-s-marketing:before {
902
+ content: "\e7b1";
903
+ }
904
+
905
+ .el-icon-s-shop:before {
906
+ content: "\e7b4";
907
+ }
908
+
909
+ .el-icon-s-open:before {
910
+ content: "\e7b5";
911
+ }
912
+
913
+ .el-icon-s-management:before {
914
+ content: "\e7b6";
915
+ }
916
+
917
+ .el-icon-s-ticket:before {
918
+ content: "\e7b7";
919
+ }
920
+
921
+ .el-icon-s-release:before {
922
+ content: "\e7b8";
923
+ }
924
+
925
+ .el-icon-s-home:before {
926
+ content: "\e7b9";
927
+ }
928
+
929
+ .el-icon-s-promotion:before {
930
+ content: "\e7ba";
931
+ }
932
+
933
+ .el-icon-s-operation:before {
934
+ content: "\e7bb";
935
+ }
936
+
937
+ .el-icon-s-unfold:before {
938
+ content: "\e7bc";
939
+ }
940
+
941
+ .el-icon-s-fold:before {
942
+ content: "\e7a9";
943
+ }
944
+
945
+ .el-icon-s-platform:before {
946
+ content: "\e7bd";
947
+ }
948
+
949
+ .el-icon-s-order:before {
950
+ content: "\e7be";
951
+ }
952
+
953
+ .el-icon-s-cooperation:before {
954
+ content: "\e7bf";
955
+ }
956
+
957
+ .el-icon-bell:before {
958
+ content: "\e725";
959
+ }
960
+
961
+ .el-icon-message-solid:before {
962
+ content: "\e799";
963
+ }
964
+
965
+ .el-icon-video-camera:before {
966
+ content: "\e772";
967
+ }
968
+
969
+ .el-icon-video-camera-solid:before {
970
+ content: "\e796";
971
+ }
972
+
973
+ .el-icon-camera:before {
974
+ content: "\e779";
975
+ }
976
+
977
+ .el-icon-camera-solid:before {
978
+ content: "\e79b";
979
+ }
980
+
981
+ .el-icon-download:before {
982
+ content: "\e77c";
983
+ }
984
+
985
+ .el-icon-upload2:before {
986
+ content: "\e77b";
987
+ }
988
+
989
+ .el-icon-upload:before {
990
+ content: "\e7c3";
991
+ }
992
+
993
+ .el-icon-picture-outline-round:before {
994
+ content: "\e75f";
995
+ }
996
+
997
+ .el-icon-picture-outline:before {
998
+ content: "\e75e";
999
+ }
1000
+
1001
+ .el-icon-picture:before {
1002
+ content: "\e79f";
1003
+ }
1004
+
1005
+ .el-icon-close:before {
1006
+ content: "\e6db";
1007
+ }
1008
+
1009
+ .el-icon-check:before {
1010
+ content: "\e6da";
1011
+ }
1012
+
1013
+ .el-icon-plus:before {
1014
+ content: "\e6d9";
1015
+ }
1016
+
1017
+ .el-icon-minus:before {
1018
+ content: "\e6d8";
1019
+ }
1020
+
1021
+ .el-icon-help:before {
1022
+ content: "\e73d";
1023
+ }
1024
+
1025
+ .el-icon-s-help:before {
1026
+ content: "\e7b3";
1027
+ }
1028
+
1029
+ .el-icon-circle-close:before {
1030
+ content: "\e78d";
1031
+ }
1032
+
1033
+ .el-icon-circle-check:before {
1034
+ content: "\e720";
1035
+ }
1036
+
1037
+ .el-icon-circle-plus-outline:before {
1038
+ content: "\e723";
1039
+ }
1040
+
1041
+ .el-icon-remove-outline:before {
1042
+ content: "\e722";
1043
+ }
1044
+
1045
+ .el-icon-zoom-out:before {
1046
+ content: "\e776";
1047
+ }
1048
+
1049
+ .el-icon-zoom-in:before {
1050
+ content: "\e777";
1051
+ }
1052
+
1053
+ .el-icon-error:before {
1054
+ content: "\e79d";
1055
+ }
1056
+
1057
+ .el-icon-success:before {
1058
+ content: "\e79c";
1059
+ }
1060
+
1061
+ .el-icon-circle-plus:before {
1062
+ content: "\e7a0";
1063
+ }
1064
+
1065
+ .el-icon-remove:before {
1066
+ content: "\e7a2";
1067
+ }
1068
+
1069
+ .el-icon-info:before {
1070
+ content: "\e7a1";
1071
+ }
1072
+
1073
+ .el-icon-question:before {
1074
+ content: "\e7a4";
1075
+ }
1076
+
1077
+ .el-icon-warning-outline:before {
1078
+ content: "\e6c9";
1079
+ }
1080
+
1081
+ .el-icon-warning:before {
1082
+ content: "\e7a3";
1083
+ }
1084
+
1085
+ .el-icon-goods:before {
1086
+ content: "\e7c2";
1087
+ }
1088
+
1089
+ .el-icon-s-goods:before {
1090
+ content: "\e7b2";
1091
+ }
1092
+
1093
+ .el-icon-star-off:before {
1094
+ content: "\e717";
1095
+ }
1096
+
1097
+ .el-icon-star-on:before {
1098
+ content: "\e797";
1099
+ }
1100
+
1101
+ .el-icon-more-outline:before {
1102
+ content: "\e6cc";
1103
+ }
1104
+
1105
+ .el-icon-more:before {
1106
+ content: "\e794";
1107
+ }
1108
+
1109
+ .el-icon-phone-outline:before {
1110
+ content: "\e6cb";
1111
+ }
1112
+
1113
+ .el-icon-phone:before {
1114
+ content: "\e795";
1115
+ }
1116
+
1117
+ .el-icon-user:before {
1118
+ content: "\e6e3";
1119
+ }
1120
+
1121
+ .el-icon-user-solid:before {
1122
+ content: "\e7a5";
1123
+ }
1124
+
1125
+ .el-icon-setting:before {
1126
+ content: "\e6ca";
1127
+ }
1128
+
1129
+ .el-icon-s-tools:before {
1130
+ content: "\e7ac";
1131
+ }
1132
+
1133
+ .el-icon-delete:before {
1134
+ content: "\e6d7";
1135
+ }
1136
+
1137
+ .el-icon-delete-solid:before {
1138
+ content: "\e7c9";
1139
+ }
1140
+
1141
+ .el-icon-eleme:before {
1142
+ content: "\e7c7";
1143
+ }
1144
+
1145
+ .el-icon-platform-eleme:before {
1146
+ content: "\e7ca";
1147
+ }
1148
+
1149
+ .el-icon-loading {
1150
+ animation: rotating 2s linear infinite;
1151
+ }
1152
+
1153
+ .el-icon--right {
1154
+ margin-left: 5px;
1155
+ }
1156
+ .el-icon--left {
1157
+ margin-right: 5px;
1158
+ }
1159
+
1160
+ @keyframes rotating {
1161
+ 0% {
1162
+ transform: rotateZ(0deg);
1163
+ }
1164
+ 100% {
1165
+ transform: rotateZ(360deg);
1166
+ }
1167
+ }