evui 3.3.36 → 3.3.39
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.
- package/LICENSE +21 -21
- package/README.md +40 -40
- package/dist/evui.common.js +1907 -1832
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +1907 -1832
- package/dist/evui.umd.js.map +1 -1
- package/dist/evui.umd.min.js +1 -1
- package/dist/evui.umd.min.js.map +1 -1
- package/dist/img/{EVUI.7f3588fb.svg → EVUI.b82ee81a.svg} +292 -292
- package/dist/img/{icon_mysql.7ea26d5d.svg → icon_mysql.1085fdc9.svg} +78 -78
- package/dist/img/{icon_oracle.9009b108.svg → icon_oracle.0572d3ee.svg} +13 -13
- package/dist/img/{icon_postgresql.f8fffba9.svg → icon_postgresql.ee12bde8.svg} +58 -58
- package/package.json +61 -61
- package/src/common/emitter.js +20 -20
- package/src/common/utils.debounce.js +223 -223
- package/src/common/utils.js +134 -134
- package/src/common/utils.table.js +78 -78
- package/src/common/utils.throttle.js +83 -83
- package/src/common/utils.tree.js +18 -18
- package/src/components/button/Button.vue +198 -198
- package/src/components/button/index.js +7 -7
- package/src/components/buttonGroup/ButtonGroup.vue +11 -11
- package/src/components/buttonGroup/index.js +7 -7
- package/src/components/calendar/Calendar.vue +661 -661
- package/src/components/calendar/index.js +7 -7
- package/src/components/calendar/uses.js +1272 -1272
- package/src/components/chart/Chart.vue +189 -192
- package/src/components/chart/chart.core.js +870 -870
- package/src/components/chart/element/element.bar.js +524 -524
- package/src/components/chart/element/element.bar.time.js +156 -156
- package/src/components/chart/element/element.heatmap.js +533 -533
- package/src/components/chart/element/element.line.js +339 -339
- package/src/components/chart/element/element.pie.js +197 -197
- package/src/components/chart/element/element.scatter.js +184 -184
- package/src/components/chart/element/element.tip.js +550 -542
- package/src/components/chart/helpers/helpers.canvas.js +265 -265
- package/src/components/chart/helpers/helpers.constant.js +206 -206
- package/src/components/chart/helpers/helpers.util.js +346 -338
- package/src/components/chart/index.js +9 -9
- package/src/components/chart/model/index.js +4 -4
- package/src/components/chart/model/model.series.js +93 -93
- package/src/components/chart/model/model.store.js +977 -967
- package/src/components/chart/plugins/plugins.interaction.js +769 -769
- package/src/components/chart/plugins/plugins.legend.gradient.js +602 -602
- package/src/components/chart/plugins/plugins.legend.js +1155 -1151
- package/src/components/chart/plugins/plugins.pie.js +254 -254
- package/src/components/chart/plugins/plugins.title.js +56 -56
- package/src/components/chart/plugins/plugins.tooltip.js +692 -692
- package/src/components/chart/scale/scale.js +848 -848
- package/src/components/chart/scale/scale.linear.js +38 -38
- package/src/components/chart/scale/scale.logarithmic.js +128 -128
- package/src/components/chart/scale/scale.step.js +336 -336
- package/src/components/chart/scale/scale.time.category.js +277 -277
- package/src/components/chart/scale/scale.time.js +48 -48
- package/src/components/chart/style/chart.scss +312 -312
- package/src/components/chart/uses.js +264 -252
- package/src/components/checkbox/Checkbox.vue +200 -200
- package/src/components/checkbox/index.js +7 -7
- package/src/components/checkboxGroup/CheckboxGroup.vue +44 -44
- package/src/components/checkboxGroup/index.js +7 -7
- package/src/components/contextMenu/ContextMenu.vue +80 -80
- package/src/components/contextMenu/MenuList.vue +149 -149
- package/src/components/contextMenu/index.js +7 -7
- package/src/components/contextMenu/uses.js +203 -203
- package/src/components/datePicker/DatePicker.vue +437 -437
- package/src/components/datePicker/index.js +7 -7
- package/src/components/datePicker/uses.js +419 -419
- package/src/components/grid/Grid.vue +827 -827
- package/src/components/grid/grid.filter.window.vue +493 -493
- package/src/components/grid/grid.pagination.vue +75 -75
- package/src/components/grid/grid.summary.vue +265 -265
- package/src/components/grid/grid.toolbar.vue +26 -26
- package/src/components/grid/index.js +11 -11
- package/src/components/grid/style/grid.scss +263 -263
- package/src/components/grid/uses.js +1002 -1007
- package/src/components/icon/Icon.vue +49 -49
- package/src/components/icon/index.js +8 -8
- package/src/components/inputNumber/InputNumber.vue +212 -212
- package/src/components/inputNumber/index.js +7 -7
- package/src/components/inputNumber/uses.js +217 -217
- package/src/components/loading/Loading.vue +125 -125
- package/src/components/loading/index.js +7 -7
- package/src/components/menu/Menu.vue +68 -68
- package/src/components/menu/MenuItem.vue +187 -187
- package/src/components/menu/index.js +7 -7
- package/src/components/message/Message.vue +223 -223
- package/src/components/message/index.js +31 -31
- package/src/components/messageBox/MessageBox.vue +358 -358
- package/src/components/messageBox/index.js +22 -22
- package/src/components/notification/Notification.vue +316 -316
- package/src/components/notification/index.js +49 -49
- package/src/components/pagination/Pagination.vue +271 -271
- package/src/components/pagination/index.js +7 -7
- package/src/components/pagination/pageButton.vue +30 -30
- package/src/components/progress/Progress.vue +139 -139
- package/src/components/progress/index.js +7 -7
- package/src/components/radio/Radio.vue +159 -159
- package/src/components/radio/index.js +7 -7
- package/src/components/radioGroup/RadioGroup.vue +41 -41
- package/src/components/radioGroup/index.js +7 -7
- package/src/components/scheduler/Scheduler.vue +149 -149
- package/src/components/scheduler/index.js +7 -7
- package/src/components/scheduler/uses.js +183 -183
- package/src/components/select/Select.vue +440 -440
- package/src/components/select/index.js +7 -7
- package/src/components/select/uses.js +270 -270
- package/src/components/slider/Slider.vue +505 -505
- package/src/components/slider/index.js +7 -7
- package/src/components/slider/uses.js +390 -390
- package/src/components/tabPanel/TabPanel.vue +74 -74
- package/src/components/tabPanel/index.js +7 -7
- package/src/components/tabs/Tabs.vue +517 -517
- package/src/components/tabs/index.js +7 -7
- package/src/components/textField/TextField.vue +375 -375
- package/src/components/textField/index.js +7 -7
- package/src/components/timePicker/TimePicker.vue +352 -352
- package/src/components/timePicker/index.js +7 -7
- package/src/components/toggle/Toggle.vue +115 -115
- package/src/components/toggle/index.js +7 -7
- package/src/components/tree/Tree.vue +313 -313
- package/src/components/tree/TreeNode.vue +293 -293
- package/src/components/tree/index.js +7 -7
- package/src/components/treeGrid/TreeGrid.vue +758 -758
- package/src/components/treeGrid/TreeGridNode.vue +275 -275
- package/src/components/treeGrid/index.js +9 -9
- package/src/components/treeGrid/style/treeGrid.scss +261 -261
- package/src/components/treeGrid/treeGrid.toolbar.vue +26 -26
- package/src/components/treeGrid/uses.js +867 -867
- package/src/components/window/Window.vue +329 -329
- package/src/components/window/index.js +7 -7
- package/src/components/window/uses.js +899 -899
- package/src/directives/clickoutside.js +90 -90
- package/src/main.js +116 -116
- package/src/style/components/input.scss +108 -108
- package/src/style/functions.scss +3 -3
- package/src/style/index.scss +6 -6
- package/src/style/lib/fonts/EVUI.svg +292 -292
- package/src/style/lib/icon.css +888 -888
- package/src/style/mixins.scss +94 -94
- package/src/style/themes.scss +67 -67
- package/src/style/variables.scss +22 -22
package/src/style/lib/icon.css
CHANGED
|
@@ -1,888 +1,888 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: 'EVUI';
|
|
3
|
-
src: url('~@/style/lib/fonts/EVUI.eot');
|
|
4
|
-
src: url('~@/style/lib/fonts/EVUI.eot#iefix') format('embedded-opentype'),
|
|
5
|
-
url('~@/style/lib/fonts/EVUI.ttf') format('truetype'),
|
|
6
|
-
url('~@/style/lib/fonts/EVUI.woff') format('woff'),
|
|
7
|
-
url('~@/style/lib/fonts/EVUI.svg') format('svg');
|
|
8
|
-
font-weight: normal;
|
|
9
|
-
font-style: normal;
|
|
10
|
-
font-display: block;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
[class^="ev-icon-"], [class*=" ev-icon-"] {
|
|
14
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
|
-
font-family: 'EVUI' !important;
|
|
16
|
-
speak: none;
|
|
17
|
-
font-style: normal;
|
|
18
|
-
font-weight: normal;
|
|
19
|
-
font-variant: normal;
|
|
20
|
-
text-transform: none;
|
|
21
|
-
line-hev-iconght: 1;
|
|
22
|
-
|
|
23
|
-
/* Better Font Rendering =========== */
|
|
24
|
-
-webkit-font-smoothing: antialiased;
|
|
25
|
-
-moz-osx-font-smoothing: grayscale;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.ev-icon-small {
|
|
29
|
-
font-size: 16px;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.ev-icon-medium {
|
|
33
|
-
font-size: 20px;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.ev-icon-large {
|
|
37
|
-
font-size: 25px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.ev-icon-zoomout:before {
|
|
41
|
-
content: '\e900';
|
|
42
|
-
}
|
|
43
|
-
.ev-icon-zoomin:before {
|
|
44
|
-
content: '\e901';
|
|
45
|
-
}
|
|
46
|
-
.ev-icon-workflow:before {
|
|
47
|
-
content: '\e902';
|
|
48
|
-
}
|
|
49
|
-
.ev-icon-window:before {
|
|
50
|
-
content: '\e903';
|
|
51
|
-
}
|
|
52
|
-
.ev-icon-window-minimize:before {
|
|
53
|
-
content: '\e904';
|
|
54
|
-
}
|
|
55
|
-
.ev-icon-window-maximize:before {
|
|
56
|
-
content: '\e905';
|
|
57
|
-
}
|
|
58
|
-
.ev-icon-warning3:before {
|
|
59
|
-
content: '\e906';
|
|
60
|
-
}
|
|
61
|
-
.ev-icon-warning2:before {
|
|
62
|
-
content: '\e907';
|
|
63
|
-
}
|
|
64
|
-
.ev-icon-warning:before {
|
|
65
|
-
content: '\e908';
|
|
66
|
-
}
|
|
67
|
-
.ev-icon-visibility:before {
|
|
68
|
-
content: '\e909';
|
|
69
|
-
}
|
|
70
|
-
.ev-icon-visibility-off:before {
|
|
71
|
-
content: '\e90a';
|
|
72
|
-
}
|
|
73
|
-
.ev-icon-user2:before {
|
|
74
|
-
content: '\e90b';
|
|
75
|
-
}
|
|
76
|
-
.ev-icon-user:before {
|
|
77
|
-
content: '\e90c';
|
|
78
|
-
}
|
|
79
|
-
.ev-icon-user-plus2:before {
|
|
80
|
-
content: '\e90d';
|
|
81
|
-
}
|
|
82
|
-
.ev-icon-user-plus:before {
|
|
83
|
-
content: '\e90e';
|
|
84
|
-
}
|
|
85
|
-
.ev-icon-user-minus:before {
|
|
86
|
-
content: '\e90f';
|
|
87
|
-
}
|
|
88
|
-
.ev-icon-user-delete:before {
|
|
89
|
-
content: '\e910';
|
|
90
|
-
}
|
|
91
|
-
.ev-icon-user-check:before {
|
|
92
|
-
content: '\e911';
|
|
93
|
-
}
|
|
94
|
-
.ev-icon-upload:before {
|
|
95
|
-
content: '\e912';
|
|
96
|
-
}
|
|
97
|
-
.ev-icon-unlock2:before {
|
|
98
|
-
content: '\e913';
|
|
99
|
-
}
|
|
100
|
-
.ev-icon-unlock:before {
|
|
101
|
-
content: '\e914';
|
|
102
|
-
}
|
|
103
|
-
.ev-icon-undo:before {
|
|
104
|
-
content: '\e915';
|
|
105
|
-
}
|
|
106
|
-
.ev-icon-triangle-up:before {
|
|
107
|
-
content: '\e916';
|
|
108
|
-
}
|
|
109
|
-
.ev-icon-triangle-down:before {
|
|
110
|
-
content: '\e917';
|
|
111
|
-
}
|
|
112
|
-
.ev-icon-trash3:before {
|
|
113
|
-
content: '\e918';
|
|
114
|
-
}
|
|
115
|
-
.ev-icon-trash2:before {
|
|
116
|
-
content: '\e919';
|
|
117
|
-
}
|
|
118
|
-
.ev-icon-trash:before {
|
|
119
|
-
content: '\e91a';
|
|
120
|
-
}
|
|
121
|
-
.ev-icon-topology:before {
|
|
122
|
-
content: '\e91b';
|
|
123
|
-
}
|
|
124
|
-
.ev-icon-tool:before {
|
|
125
|
-
content: '\e91c';
|
|
126
|
-
}
|
|
127
|
-
.ev-icon-timeline:before {
|
|
128
|
-
content: '\e91d';
|
|
129
|
-
}
|
|
130
|
-
.ev-icon-time2:before {
|
|
131
|
-
content: '\e91e';
|
|
132
|
-
}
|
|
133
|
-
.ev-icon-time:before {
|
|
134
|
-
content: '\e91f';
|
|
135
|
-
}
|
|
136
|
-
.ev-icon-time-line:before {
|
|
137
|
-
content: '\e920';
|
|
138
|
-
}
|
|
139
|
-
.ev-icon-text-vertical:before {
|
|
140
|
-
content: '\e921';
|
|
141
|
-
}
|
|
142
|
-
.ev-icon-text-up:before {
|
|
143
|
-
content: '\e922';
|
|
144
|
-
}
|
|
145
|
-
.ev-icon-terminal:before {
|
|
146
|
-
content: '\e923';
|
|
147
|
-
}
|
|
148
|
-
.ev-icon-sun:before {
|
|
149
|
-
content: '\e924';
|
|
150
|
-
}
|
|
151
|
-
.ev-icon-stop2:before {
|
|
152
|
-
content: '\e925';
|
|
153
|
-
}
|
|
154
|
-
.ev-icon-stop1:before {
|
|
155
|
-
content: '\e926';
|
|
156
|
-
}
|
|
157
|
-
.ev-icon-square-plus:before {
|
|
158
|
-
content: '\e927';
|
|
159
|
-
}
|
|
160
|
-
.ev-icon-square-minus:before {
|
|
161
|
-
content: '\e928';
|
|
162
|
-
}
|
|
163
|
-
.ev-icon-square-double-up:before {
|
|
164
|
-
content: '\e929';
|
|
165
|
-
}
|
|
166
|
-
.ev-icon-square-double-right:before {
|
|
167
|
-
content: '\e92a';
|
|
168
|
-
}
|
|
169
|
-
.ev-icon-square-double-left:before {
|
|
170
|
-
content: '\e92b';
|
|
171
|
-
}
|
|
172
|
-
.ev-icon-square-double-down:before {
|
|
173
|
-
content: '\e92c';
|
|
174
|
-
}
|
|
175
|
-
.ev-icon-square-arrow-up:before {
|
|
176
|
-
content: '\e92d';
|
|
177
|
-
}
|
|
178
|
-
.ev-icon-square-arrow-right:before {
|
|
179
|
-
content: '\e92e';
|
|
180
|
-
}
|
|
181
|
-
.ev-icon-square-arrow-left:before {
|
|
182
|
-
content: '\e92f';
|
|
183
|
-
}
|
|
184
|
-
.ev-icon-square-arrow-down:before {
|
|
185
|
-
content: '\e930';
|
|
186
|
-
}
|
|
187
|
-
.ev-icon-spinner:before {
|
|
188
|
-
content: '\e931';
|
|
189
|
-
}
|
|
190
|
-
.ev-icon-spark:before {
|
|
191
|
-
content: '\e932';
|
|
192
|
-
}
|
|
193
|
-
.ev-icon-shovel:before {
|
|
194
|
-
content: '\e933';
|
|
195
|
-
}
|
|
196
|
-
.ev-icon-share:before {
|
|
197
|
-
content: '\e934';
|
|
198
|
-
}
|
|
199
|
-
.ev-icon-shard:before {
|
|
200
|
-
content: '\e935';
|
|
201
|
-
}
|
|
202
|
-
.ev-icon-server2:before {
|
|
203
|
-
content: '\e936';
|
|
204
|
-
}
|
|
205
|
-
.ev-icon-server:before {
|
|
206
|
-
content: '\e937';
|
|
207
|
-
}
|
|
208
|
-
.ev-icon-search2:before {
|
|
209
|
-
content: '\e938';
|
|
210
|
-
}
|
|
211
|
-
.ev-icon-search:before {
|
|
212
|
-
content: '\e939';
|
|
213
|
-
}
|
|
214
|
-
.ev-icon-search-chart:before {
|
|
215
|
-
content: '\e93a';
|
|
216
|
-
}
|
|
217
|
-
.ev-icon-save:before {
|
|
218
|
-
content: '\e93b';
|
|
219
|
-
}
|
|
220
|
-
.ev-icon-s-time-backward:before {
|
|
221
|
-
content: '\e93c';
|
|
222
|
-
}
|
|
223
|
-
.ev-icon-s-stop:before {
|
|
224
|
-
content: '\e93d';
|
|
225
|
-
}
|
|
226
|
-
.ev-icon-s-step-forward:before {
|
|
227
|
-
content: '\e93e';
|
|
228
|
-
}
|
|
229
|
-
.ev-icon-s-step-backward:before {
|
|
230
|
-
content: '\e93f';
|
|
231
|
-
}
|
|
232
|
-
.ev-icon-s-square-plus:before {
|
|
233
|
-
content: '\e940';
|
|
234
|
-
}
|
|
235
|
-
.ev-icon-s-square-minus:before {
|
|
236
|
-
content: '\e941';
|
|
237
|
-
}
|
|
238
|
-
.ev-icon-s-resume:before {
|
|
239
|
-
content: '\e942';
|
|
240
|
-
}
|
|
241
|
-
.ev-icon-s-plus:before {
|
|
242
|
-
content: '\e943';
|
|
243
|
-
}
|
|
244
|
-
.ev-icon-s-play:before {
|
|
245
|
-
content: '\e944';
|
|
246
|
-
}
|
|
247
|
-
.ev-icon-s-pause:before {
|
|
248
|
-
content: '\e945';
|
|
249
|
-
}
|
|
250
|
-
.ev-icon-s-panel-out:before {
|
|
251
|
-
content: '\e946';
|
|
252
|
-
}
|
|
253
|
-
.ev-icon-s-minus:before {
|
|
254
|
-
content: '\e947';
|
|
255
|
-
}
|
|
256
|
-
.ev-icon-s-hamburger:before {
|
|
257
|
-
content: '\e948';
|
|
258
|
-
}
|
|
259
|
-
.ev-icon-s-forward:before {
|
|
260
|
-
content: '\e949';
|
|
261
|
-
}
|
|
262
|
-
.ev-icon-s-double-up:before {
|
|
263
|
-
content: '\e94a';
|
|
264
|
-
}
|
|
265
|
-
.ev-icon-s-double-right:before {
|
|
266
|
-
content: '\e94b';
|
|
267
|
-
}
|
|
268
|
-
.ev-icon-s-double-left:before {
|
|
269
|
-
content: '\e94c';
|
|
270
|
-
}
|
|
271
|
-
.ev-icon-s-double-down:before {
|
|
272
|
-
content: '\e94d';
|
|
273
|
-
}
|
|
274
|
-
.ev-icon-s-close:before {
|
|
275
|
-
content: '\e94e';
|
|
276
|
-
}
|
|
277
|
-
.ev-icon-s-backward:before {
|
|
278
|
-
content: '\e94f';
|
|
279
|
-
}
|
|
280
|
-
.ev-icon-s-back:before {
|
|
281
|
-
content: '\e950';
|
|
282
|
-
}
|
|
283
|
-
.ev-icon-s-arrow-up:before {
|
|
284
|
-
content: '\e951';
|
|
285
|
-
}
|
|
286
|
-
.ev-icon-s-arrow-right:before {
|
|
287
|
-
content: '\e952';
|
|
288
|
-
}
|
|
289
|
-
.ev-icon-s-arrow-left:before {
|
|
290
|
-
content: '\e953';
|
|
291
|
-
}
|
|
292
|
-
.ev-icon-s-arrow-down:before {
|
|
293
|
-
content: '\e954';
|
|
294
|
-
}
|
|
295
|
-
.ev-icon-RTM:before {
|
|
296
|
-
content: '\e955';
|
|
297
|
-
}
|
|
298
|
-
.ev-icon-replicaset:before {
|
|
299
|
-
content: '\e956';
|
|
300
|
-
}
|
|
301
|
-
.ev-icon-registration:before {
|
|
302
|
-
content: '\e957';
|
|
303
|
-
}
|
|
304
|
-
.ev-icon-refresh3:before {
|
|
305
|
-
content: '\e958';
|
|
306
|
-
}
|
|
307
|
-
.ev-icon-refresh2:before {
|
|
308
|
-
content: '\e959';
|
|
309
|
-
}
|
|
310
|
-
.ev-icon-refresh:before {
|
|
311
|
-
content: '\e95a';
|
|
312
|
-
}
|
|
313
|
-
.ev-icon-redo:before {
|
|
314
|
-
content: '\e95b';
|
|
315
|
-
}
|
|
316
|
-
.ev-icon-radio-on2:before {
|
|
317
|
-
content: '\e95c';
|
|
318
|
-
}
|
|
319
|
-
.ev-icon-radio-on:before {
|
|
320
|
-
content: '\e95d';
|
|
321
|
-
}
|
|
322
|
-
.ev-icon-radio-off2:before {
|
|
323
|
-
content: '\e95e';
|
|
324
|
-
}
|
|
325
|
-
.ev-icon-radio-off:before {
|
|
326
|
-
content: '\e95f';
|
|
327
|
-
}
|
|
328
|
-
.ev-icon-r:before {
|
|
329
|
-
content: '\e960';
|
|
330
|
-
}
|
|
331
|
-
.ev-icon-question:before {
|
|
332
|
-
content: '\e961';
|
|
333
|
-
}
|
|
334
|
-
.ev-icon-query:before {
|
|
335
|
-
content: '\e962';
|
|
336
|
-
}
|
|
337
|
-
.ev-icon-printer:before {
|
|
338
|
-
content: '\e963';
|
|
339
|
-
}
|
|
340
|
-
.ev-icon-plus:before {
|
|
341
|
-
content: '\e964';
|
|
342
|
-
}
|
|
343
|
-
.ev-icon-plus-16px:before {
|
|
344
|
-
content: '\e965';
|
|
345
|
-
}
|
|
346
|
-
.ev-icon-plug:before {
|
|
347
|
-
content: '\e966';
|
|
348
|
-
}
|
|
349
|
-
.ev-icon-play_circle:before {
|
|
350
|
-
content: '\e967';
|
|
351
|
-
}
|
|
352
|
-
.ev-icon-pin:before {
|
|
353
|
-
content: '\e968';
|
|
354
|
-
}
|
|
355
|
-
.ev-icon-pig:before {
|
|
356
|
-
content: '\e969';
|
|
357
|
-
}
|
|
358
|
-
.ev-icon-piece:before {
|
|
359
|
-
content: '\e96a';
|
|
360
|
-
}
|
|
361
|
-
.ev-icon-pencil:before {
|
|
362
|
-
content: '\e96b';
|
|
363
|
-
}
|
|
364
|
-
.ev-icon-panel-out:before {
|
|
365
|
-
content: '\e96c';
|
|
366
|
-
}
|
|
367
|
-
.ev-icon-PA:before {
|
|
368
|
-
content: '\e96d';
|
|
369
|
-
}
|
|
370
|
-
.ev-icon-ok:before {
|
|
371
|
-
content: '\e96e';
|
|
372
|
-
}
|
|
373
|
-
.ev-icon-notice:before {
|
|
374
|
-
content: '\e96f';
|
|
375
|
-
}
|
|
376
|
-
.ev-icon-node:before {
|
|
377
|
-
content: '\e970';
|
|
378
|
-
}
|
|
379
|
-
.ev-icon-network-twoway:before {
|
|
380
|
-
content: '\e971';
|
|
381
|
-
}
|
|
382
|
-
.ev-icon-network-oneway:before {
|
|
383
|
-
content: '\e972';
|
|
384
|
-
}
|
|
385
|
-
.ev-icon-network-division:before {
|
|
386
|
-
content: '\e973';
|
|
387
|
-
}
|
|
388
|
-
.ev-icon-network-check:before {
|
|
389
|
-
content: '\e974';
|
|
390
|
-
}
|
|
391
|
-
.ev-icon-moon:before {
|
|
392
|
-
content: '\e975';
|
|
393
|
-
}
|
|
394
|
-
.ev-icon-monitor:before {
|
|
395
|
-
content: '\e976';
|
|
396
|
-
}
|
|
397
|
-
.ev-icon-monitor-grid:before {
|
|
398
|
-
content: '\e977';
|
|
399
|
-
}
|
|
400
|
-
.ev-icon-monitor-chart:before {
|
|
401
|
-
content: '\e978';
|
|
402
|
-
}
|
|
403
|
-
.ev-icon-mobius:before {
|
|
404
|
-
content: '\e979';
|
|
405
|
-
}
|
|
406
|
-
.ev-icon-minus:before {
|
|
407
|
-
content: '\e97a';
|
|
408
|
-
}
|
|
409
|
-
.ev-icon-menu2:before {
|
|
410
|
-
content: '\e97b';
|
|
411
|
-
}
|
|
412
|
-
.ev-icon-menu:before {
|
|
413
|
-
content: '\e97c';
|
|
414
|
-
}
|
|
415
|
-
.ev-icon-memory2:before {
|
|
416
|
-
content: '\e97d';
|
|
417
|
-
}
|
|
418
|
-
.ev-icon-memory:before {
|
|
419
|
-
content: '\e97e';
|
|
420
|
-
}
|
|
421
|
-
.ev-icon-Medium:before {
|
|
422
|
-
content: '\e97f';
|
|
423
|
-
}
|
|
424
|
-
.ev-icon-manual2:before {
|
|
425
|
-
content: '\e980';
|
|
426
|
-
}
|
|
427
|
-
.ev-icon-manual:before {
|
|
428
|
-
content: '\e981';
|
|
429
|
-
}
|
|
430
|
-
.ev-icon-Low:before {
|
|
431
|
-
content: '\e982';
|
|
432
|
-
}
|
|
433
|
-
.ev-icon-logout3:before {
|
|
434
|
-
content: '\e983';
|
|
435
|
-
}
|
|
436
|
-
.ev-icon-logout2:before {
|
|
437
|
-
content: '\e984';
|
|
438
|
-
}
|
|
439
|
-
.ev-icon-logout:before {
|
|
440
|
-
content: '\e985';
|
|
441
|
-
}
|
|
442
|
-
.ev-icon-login:before {
|
|
443
|
-
content: '\e986';
|
|
444
|
-
}
|
|
445
|
-
.ev-icon-lock2:before {
|
|
446
|
-
content: '\e987';
|
|
447
|
-
}
|
|
448
|
-
.ev-icon-lock2_line:before {
|
|
449
|
-
content: '\e988';
|
|
450
|
-
}
|
|
451
|
-
.ev-icon-lock:before {
|
|
452
|
-
content: '\e989';
|
|
453
|
-
}
|
|
454
|
-
.ev-icon-list:before {
|
|
455
|
-
content: '\e98a';
|
|
456
|
-
}
|
|
457
|
-
.ev-icon-link:before {
|
|
458
|
-
content: '\e98b';
|
|
459
|
-
}
|
|
460
|
-
.ev-icon-link-off:before {
|
|
461
|
-
content: '\e98c';
|
|
462
|
-
}
|
|
463
|
-
.ev-icon-License:before {
|
|
464
|
-
content: '\e98d';
|
|
465
|
-
}
|
|
466
|
-
.ev-icon-layout:before {
|
|
467
|
-
content: '\e98e';
|
|
468
|
-
}
|
|
469
|
-
.ev-icon-kafka:before {
|
|
470
|
-
content: '\e98f';
|
|
471
|
-
}
|
|
472
|
-
.ev-icon-Information:before {
|
|
473
|
-
content: '\e990';
|
|
474
|
-
}
|
|
475
|
-
.ev-icon-info2:before {
|
|
476
|
-
content: '\e991';
|
|
477
|
-
}
|
|
478
|
-
.ev-icon-info:before {
|
|
479
|
-
content: '\e992';
|
|
480
|
-
}
|
|
481
|
-
.ev-icon-hive2:before {
|
|
482
|
-
content: '\e993';
|
|
483
|
-
}
|
|
484
|
-
.ev-icon-hive:before {
|
|
485
|
-
content: '\e994';
|
|
486
|
-
}
|
|
487
|
-
.ev-icon-highlight-on:before {
|
|
488
|
-
content: '\e995';
|
|
489
|
-
}
|
|
490
|
-
.ev-icon-highlight-off:before {
|
|
491
|
-
content: '\e996';
|
|
492
|
-
}
|
|
493
|
-
.ev-icon-High:before {
|
|
494
|
-
content: '\e997';
|
|
495
|
-
}
|
|
496
|
-
.ev-icon-help:before {
|
|
497
|
-
content: '\e998';
|
|
498
|
-
}
|
|
499
|
-
.ev-icon-hamburger2:before {
|
|
500
|
-
content: '\e999';
|
|
501
|
-
}
|
|
502
|
-
.ev-icon-hamburger:before {
|
|
503
|
-
content: '\e99a';
|
|
504
|
-
}
|
|
505
|
-
.ev-icon-group:before {
|
|
506
|
-
content: '\e99b';
|
|
507
|
-
}
|
|
508
|
-
.ev-icon-grid:before {
|
|
509
|
-
content: '\e99c';
|
|
510
|
-
}
|
|
511
|
-
.ev-icon-grid-script:before {
|
|
512
|
-
content: '\e99d';
|
|
513
|
-
}
|
|
514
|
-
.ev-icon-grid-plus:before {
|
|
515
|
-
content: '\e99e';
|
|
516
|
-
}
|
|
517
|
-
.ev-icon-grid-minus:before {
|
|
518
|
-
content: '\e99f';
|
|
519
|
-
}
|
|
520
|
-
.ev-icon-grid-check:before {
|
|
521
|
-
content: '\e9a0';
|
|
522
|
-
}
|
|
523
|
-
.ev-icon-getmore:before {
|
|
524
|
-
content: '\e9a1';
|
|
525
|
-
}
|
|
526
|
-
.ev-icon-gear:before {
|
|
527
|
-
content: '\e9a2';
|
|
528
|
-
}
|
|
529
|
-
.ev-icon-gauge:before {
|
|
530
|
-
content: '\e9a3';
|
|
531
|
-
}
|
|
532
|
-
.ev-icon-funnel:before {
|
|
533
|
-
content: '\e9a4';
|
|
534
|
-
}
|
|
535
|
-
.ev-icon-folder2:before {
|
|
536
|
-
content: '\e9a5';
|
|
537
|
-
}
|
|
538
|
-
.ev-icon-folder:before {
|
|
539
|
-
content: '\e9a6';
|
|
540
|
-
}
|
|
541
|
-
.ev-icon-folder-share:before {
|
|
542
|
-
content: '\e9a7';
|
|
543
|
-
}
|
|
544
|
-
.ev-icon-folder-plus:before {
|
|
545
|
-
content: '\e9a8';
|
|
546
|
-
}
|
|
547
|
-
.ev-icon-folder-open:before {
|
|
548
|
-
content: '\e9a9';
|
|
549
|
-
}
|
|
550
|
-
.ev-icon-folder-minus:before {
|
|
551
|
-
content: '\e9aa';
|
|
552
|
-
}
|
|
553
|
-
.ev-icon-folder-merge:before {
|
|
554
|
-
content: '\e9ab';
|
|
555
|
-
}
|
|
556
|
-
.ev-icon-flow2:before {
|
|
557
|
-
content: '\e9ac';
|
|
558
|
-
}
|
|
559
|
-
.ev-icon-flow:before {
|
|
560
|
-
content: '\e9ad';
|
|
561
|
-
}
|
|
562
|
-
.ev-icon-filter2:before {
|
|
563
|
-
content: '\e9ae';
|
|
564
|
-
}
|
|
565
|
-
.ev-icon-filter:before {
|
|
566
|
-
content: '\e9af';
|
|
567
|
-
}
|
|
568
|
-
.ev-icon-filter-list:before {
|
|
569
|
-
content: '\e9b0';
|
|
570
|
-
}
|
|
571
|
-
.ev-icon-external-link3:before {
|
|
572
|
-
content: '\e9b1';
|
|
573
|
-
}
|
|
574
|
-
.ev-icon-external-link2:before {
|
|
575
|
-
content: '\e9b2';
|
|
576
|
-
}
|
|
577
|
-
.ev-icon-external-link:before {
|
|
578
|
-
content: '\e9b3';
|
|
579
|
-
}
|
|
580
|
-
.ev-icon-expand2:before {
|
|
581
|
-
content: '\e9b4';
|
|
582
|
-
}
|
|
583
|
-
.ev-icon-expand:before {
|
|
584
|
-
content: '\e9b5';
|
|
585
|
-
}
|
|
586
|
-
.ev-icon-exchange:before {
|
|
587
|
-
content: '\e9b6';
|
|
588
|
-
}
|
|
589
|
-
.ev-icon-Error2:before {
|
|
590
|
-
content: '\e9b7';
|
|
591
|
-
}
|
|
592
|
-
.ev-icon-error:before {
|
|
593
|
-
content: '\e9b8';
|
|
594
|
-
}
|
|
595
|
-
.ev-icon-elapse2:before {
|
|
596
|
-
content: '\e9b9';
|
|
597
|
-
}
|
|
598
|
-
.ev-icon-elapse:before {
|
|
599
|
-
content: '\e9ba';
|
|
600
|
-
}
|
|
601
|
-
.ev-icon-edit:before {
|
|
602
|
-
content: '\e9bb';
|
|
603
|
-
}
|
|
604
|
-
.ev-icon-edit-code:before {
|
|
605
|
-
content: '\e9bc';
|
|
606
|
-
}
|
|
607
|
-
.ev-icon-download:before {
|
|
608
|
-
content: '\e9bd';
|
|
609
|
-
}
|
|
610
|
-
.ev-icon-double-square:before {
|
|
611
|
-
content: '\e9be';
|
|
612
|
-
}
|
|
613
|
-
.ev-icon-done:before {
|
|
614
|
-
content: '\e9bf';
|
|
615
|
-
}
|
|
616
|
-
.ev-icon-dolphin:before {
|
|
617
|
-
content: '\e9c0';
|
|
618
|
-
}
|
|
619
|
-
.ev-icon-document:before {
|
|
620
|
-
content: '\e9c1';
|
|
621
|
-
}
|
|
622
|
-
.ev-icon-document-vertically:before {
|
|
623
|
-
content: '\e9c2';
|
|
624
|
-
}
|
|
625
|
-
.ev-icon-document-share:before {
|
|
626
|
-
content: '\e9c3';
|
|
627
|
-
}
|
|
628
|
-
.ev-icon-document-search:before {
|
|
629
|
-
content: '\e9c4';
|
|
630
|
-
}
|
|
631
|
-
.ev-icon-document-script:before {
|
|
632
|
-
content: '\e9c5';
|
|
633
|
-
}
|
|
634
|
-
.ev-icon-document-move:before {
|
|
635
|
-
content: '\e9c6';
|
|
636
|
-
}
|
|
637
|
-
.ev-icon-document-merge:before {
|
|
638
|
-
content: '\e9c7';
|
|
639
|
-
}
|
|
640
|
-
.ev-icon-document-horizontally:before {
|
|
641
|
-
content: '\e9c8';
|
|
642
|
-
}
|
|
643
|
-
.ev-icon-document-edit:before {
|
|
644
|
-
content: '\e9c9';
|
|
645
|
-
}
|
|
646
|
-
.ev-icon-document-division2:before {
|
|
647
|
-
content: '\e9ca';
|
|
648
|
-
}
|
|
649
|
-
.ev-icon-document-division:before {
|
|
650
|
-
content: '\e9cb';
|
|
651
|
-
}
|
|
652
|
-
.ev-icon-document-copy2:before {
|
|
653
|
-
content: '\e9cc';
|
|
654
|
-
}
|
|
655
|
-
.ev-icon-document-copy:before {
|
|
656
|
-
content: '\e9cd';
|
|
657
|
-
}
|
|
658
|
-
.ev-icon-document-a:before {
|
|
659
|
-
content: '\e9ce';
|
|
660
|
-
}
|
|
661
|
-
.ev-icon-description:before {
|
|
662
|
-
content: '\e9cf';
|
|
663
|
-
}
|
|
664
|
-
.ev-icon-descending:before {
|
|
665
|
-
content: '\e9d0';
|
|
666
|
-
}
|
|
667
|
-
.ev-icon-db2:before {
|
|
668
|
-
content: '\e9d1';
|
|
669
|
-
}
|
|
670
|
-
.ev-icon-db:before {
|
|
671
|
-
content: '\e9d2';
|
|
672
|
-
}
|
|
673
|
-
.ev-icon-db-plus:before {
|
|
674
|
-
content: '\e9d3';
|
|
675
|
-
}
|
|
676
|
-
.ev-icon-db-minus:before {
|
|
677
|
-
content: '\e9d4';
|
|
678
|
-
}
|
|
679
|
-
.ev-icon-db-delete:before {
|
|
680
|
-
content: '\e9d5';
|
|
681
|
-
}
|
|
682
|
-
.ev-icon-Dashboard:before {
|
|
683
|
-
content: '\e9d6';
|
|
684
|
-
}
|
|
685
|
-
.ev-icon-cpu:before {
|
|
686
|
-
content: '\e9d7';
|
|
687
|
-
}
|
|
688
|
-
.ev-icon-cpu-2:before {
|
|
689
|
-
content: '\e9d8';
|
|
690
|
-
}
|
|
691
|
-
.ev-icon-connection:before {
|
|
692
|
-
content: '\e9d9';
|
|
693
|
-
}
|
|
694
|
-
.ev-icon-connection-line:before {
|
|
695
|
-
content: '\e9da';
|
|
696
|
-
}
|
|
697
|
-
.ev-icon-configuration:before {
|
|
698
|
-
content: '\e9db';
|
|
699
|
-
}
|
|
700
|
-
.ev-icon-configuration-line:before {
|
|
701
|
-
content: '\e9dc';
|
|
702
|
-
}
|
|
703
|
-
.ev-icon-compress2:before {
|
|
704
|
-
content: '\e9dd';
|
|
705
|
-
}
|
|
706
|
-
.ev-icon-compress:before {
|
|
707
|
-
content: '\e9de';
|
|
708
|
-
}
|
|
709
|
-
.ev-icon-column:before {
|
|
710
|
-
content: '\e9df';
|
|
711
|
-
}
|
|
712
|
-
.ev-icon-collapse2:before {
|
|
713
|
-
content: '\e9e0';
|
|
714
|
-
}
|
|
715
|
-
.ev-icon-collapse:before {
|
|
716
|
-
content: '\e9e1';
|
|
717
|
-
}
|
|
718
|
-
.ev-icon-cluster:before {
|
|
719
|
-
content: '\e9e2';
|
|
720
|
-
}
|
|
721
|
-
.ev-icon-cloud_upload:before {
|
|
722
|
-
content: '\e9e3';
|
|
723
|
-
}
|
|
724
|
-
.ev-icon-close3:before {
|
|
725
|
-
content: '\e9e4';
|
|
726
|
-
}
|
|
727
|
-
.ev-icon-close2:before {
|
|
728
|
-
content: '\e9e5';
|
|
729
|
-
}
|
|
730
|
-
.ev-icon-close:before {
|
|
731
|
-
content: '\e9e6';
|
|
732
|
-
}
|
|
733
|
-
.ev-icon-circle-plus:before {
|
|
734
|
-
content: '\e9e7';
|
|
735
|
-
}
|
|
736
|
-
.ev-icon-circle-minus:before {
|
|
737
|
-
content: '\e9e8';
|
|
738
|
-
}
|
|
739
|
-
.ev-icon-circle-arrow-up:before {
|
|
740
|
-
content: '\e9e9';
|
|
741
|
-
}
|
|
742
|
-
.ev-icon-circle-arrow-right:before {
|
|
743
|
-
content: '\e9ea';
|
|
744
|
-
}
|
|
745
|
-
.ev-icon-circle-arrow-left:before {
|
|
746
|
-
content: '\e9eb';
|
|
747
|
-
}
|
|
748
|
-
.ev-icon-circle-arrow-down:before {
|
|
749
|
-
content: '\e9ec';
|
|
750
|
-
}
|
|
751
|
-
.ev-icon-check-on2:before {
|
|
752
|
-
content: '\e9ed';
|
|
753
|
-
}
|
|
754
|
-
.ev-icon-check-on:before {
|
|
755
|
-
content: '\e9ee';
|
|
756
|
-
}
|
|
757
|
-
.ev-icon-check-off2:before {
|
|
758
|
-
content: '\e9ef';
|
|
759
|
-
}
|
|
760
|
-
.ev-icon-check-off:before {
|
|
761
|
-
content: '\e9f0';
|
|
762
|
-
}
|
|
763
|
-
.ev-icon-chart-pie:before {
|
|
764
|
-
content: '\e9f1';
|
|
765
|
-
}
|
|
766
|
-
.ev-icon-chart-line:before {
|
|
767
|
-
content: '\e9f2';
|
|
768
|
-
}
|
|
769
|
-
.ev-icon-chart-line-plus:before {
|
|
770
|
-
content: '\e9f3';
|
|
771
|
-
}
|
|
772
|
-
.ev-icon-chart-line-minus:before {
|
|
773
|
-
content: '\e9f4';
|
|
774
|
-
}
|
|
775
|
-
.ev-icon-chart-bar:before {
|
|
776
|
-
content: '\e9f5';
|
|
777
|
-
}
|
|
778
|
-
.ev-icon-change:before {
|
|
779
|
-
content: '\e9f6';
|
|
780
|
-
}
|
|
781
|
-
.ev-icon-calendar2:before {
|
|
782
|
-
content: '\e9f7';
|
|
783
|
-
}
|
|
784
|
-
.ev-icon-calendar:before {
|
|
785
|
-
content: '\e9f8';
|
|
786
|
-
}
|
|
787
|
-
.ev-icon-calendar-two:before {
|
|
788
|
-
content: '\e9f9';
|
|
789
|
-
}
|
|
790
|
-
.ev-icon-calendar-plus:before {
|
|
791
|
-
content: '\e9fa';
|
|
792
|
-
}
|
|
793
|
-
.ev-icon-calendar-one:before {
|
|
794
|
-
content: '\e9fb';
|
|
795
|
-
}
|
|
796
|
-
.ev-icon-calendar-minus:before {
|
|
797
|
-
content: '\e9fc';
|
|
798
|
-
}
|
|
799
|
-
.ev-icon-briefcase:before {
|
|
800
|
-
content: '\e9fd';
|
|
801
|
-
}
|
|
802
|
-
.ev-icon-binder:before {
|
|
803
|
-
content: '\e9fe';
|
|
804
|
-
}
|
|
805
|
-
.ev-icon-binary:before {
|
|
806
|
-
content: '\e9ff';
|
|
807
|
-
}
|
|
808
|
-
.ev-icon-bell2:before {
|
|
809
|
-
content: '\ea00';
|
|
810
|
-
}
|
|
811
|
-
.ev-icon-bell:before {
|
|
812
|
-
content: '\ea01';
|
|
813
|
-
}
|
|
814
|
-
.ev-icon-bell-warning:before {
|
|
815
|
-
content: '\ea02';
|
|
816
|
-
}
|
|
817
|
-
.ev-icon-bell-line:before {
|
|
818
|
-
content: '\ea03';
|
|
819
|
-
}
|
|
820
|
-
.ev-icon-avatar2:before {
|
|
821
|
-
content: '\ea04';
|
|
822
|
-
}
|
|
823
|
-
.ev-icon-avatar:before {
|
|
824
|
-
content: '\ea05';
|
|
825
|
-
}
|
|
826
|
-
.ev-icon-ascending:before {
|
|
827
|
-
content: '\ea06';
|
|
828
|
-
}
|
|
829
|
-
.ev-icon-arrow-up:before {
|
|
830
|
-
content: '\ea07';
|
|
831
|
-
}
|
|
832
|
-
.ev-icon-arrow-right2:before {
|
|
833
|
-
content: '\ea08';
|
|
834
|
-
}
|
|
835
|
-
.ev-icon-arrow-right:before {
|
|
836
|
-
content: '\ea09';
|
|
837
|
-
}
|
|
838
|
-
.ev-icon-arrow-left2:before {
|
|
839
|
-
content: '\ea0a';
|
|
840
|
-
}
|
|
841
|
-
.ev-icon-arrow-left:before {
|
|
842
|
-
content: '\ea0b';
|
|
843
|
-
}
|
|
844
|
-
.ev-icon-arrow-down2:before {
|
|
845
|
-
content: '\ea0c';
|
|
846
|
-
}
|
|
847
|
-
.ev-icon-arrow-down:before {
|
|
848
|
-
content: '\ea0d';
|
|
849
|
-
}
|
|
850
|
-
.ev-icon-arrow-check:before {
|
|
851
|
-
content: '\ea0e';
|
|
852
|
-
}
|
|
853
|
-
.ev-icon-allow2-up:before {
|
|
854
|
-
content: '\ea0f';
|
|
855
|
-
}
|
|
856
|
-
.ev-icon-allow2-right2:before {
|
|
857
|
-
content: '\ea10';
|
|
858
|
-
}
|
|
859
|
-
.ev-icon-allow2-right:before {
|
|
860
|
-
content: '\ea11';
|
|
861
|
-
}
|
|
862
|
-
.ev-icon-allow2-left2:before {
|
|
863
|
-
content: '\ea12';
|
|
864
|
-
}
|
|
865
|
-
.ev-icon-allow2-left:before {
|
|
866
|
-
content: '\ea13';
|
|
867
|
-
}
|
|
868
|
-
.ev-icon-allow2-down:before {
|
|
869
|
-
content: '\ea14';
|
|
870
|
-
}
|
|
871
|
-
.ev-icon-all-check:before {
|
|
872
|
-
content: '\ea15';
|
|
873
|
-
}
|
|
874
|
-
.ev-icon-alert4:before {
|
|
875
|
-
content: '\ea16';
|
|
876
|
-
}
|
|
877
|
-
.ev-icon-alert3:before {
|
|
878
|
-
content: '\ea17';
|
|
879
|
-
}
|
|
880
|
-
.ev-icon-add:before {
|
|
881
|
-
content: '\ea18';
|
|
882
|
-
}
|
|
883
|
-
.ev-icon-add-box:before {
|
|
884
|
-
content: '\ea19';
|
|
885
|
-
}
|
|
886
|
-
.ev-icon-active:before {
|
|
887
|
-
content: '\ea1a';
|
|
888
|
-
}
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'EVUI';
|
|
3
|
+
src: url('~@/style/lib/fonts/EVUI.eot');
|
|
4
|
+
src: url('~@/style/lib/fonts/EVUI.eot#iefix') format('embedded-opentype'),
|
|
5
|
+
url('~@/style/lib/fonts/EVUI.ttf') format('truetype'),
|
|
6
|
+
url('~@/style/lib/fonts/EVUI.woff') format('woff'),
|
|
7
|
+
url('~@/style/lib/fonts/EVUI.svg') format('svg');
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
font-display: block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
[class^="ev-icon-"], [class*=" ev-icon-"] {
|
|
14
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
|
+
font-family: 'EVUI' !important;
|
|
16
|
+
speak: none;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-weight: normal;
|
|
19
|
+
font-variant: normal;
|
|
20
|
+
text-transform: none;
|
|
21
|
+
line-hev-iconght: 1;
|
|
22
|
+
|
|
23
|
+
/* Better Font Rendering =========== */
|
|
24
|
+
-webkit-font-smoothing: antialiased;
|
|
25
|
+
-moz-osx-font-smoothing: grayscale;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.ev-icon-small {
|
|
29
|
+
font-size: 16px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.ev-icon-medium {
|
|
33
|
+
font-size: 20px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.ev-icon-large {
|
|
37
|
+
font-size: 25px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.ev-icon-zoomout:before {
|
|
41
|
+
content: '\e900';
|
|
42
|
+
}
|
|
43
|
+
.ev-icon-zoomin:before {
|
|
44
|
+
content: '\e901';
|
|
45
|
+
}
|
|
46
|
+
.ev-icon-workflow:before {
|
|
47
|
+
content: '\e902';
|
|
48
|
+
}
|
|
49
|
+
.ev-icon-window:before {
|
|
50
|
+
content: '\e903';
|
|
51
|
+
}
|
|
52
|
+
.ev-icon-window-minimize:before {
|
|
53
|
+
content: '\e904';
|
|
54
|
+
}
|
|
55
|
+
.ev-icon-window-maximize:before {
|
|
56
|
+
content: '\e905';
|
|
57
|
+
}
|
|
58
|
+
.ev-icon-warning3:before {
|
|
59
|
+
content: '\e906';
|
|
60
|
+
}
|
|
61
|
+
.ev-icon-warning2:before {
|
|
62
|
+
content: '\e907';
|
|
63
|
+
}
|
|
64
|
+
.ev-icon-warning:before {
|
|
65
|
+
content: '\e908';
|
|
66
|
+
}
|
|
67
|
+
.ev-icon-visibility:before {
|
|
68
|
+
content: '\e909';
|
|
69
|
+
}
|
|
70
|
+
.ev-icon-visibility-off:before {
|
|
71
|
+
content: '\e90a';
|
|
72
|
+
}
|
|
73
|
+
.ev-icon-user2:before {
|
|
74
|
+
content: '\e90b';
|
|
75
|
+
}
|
|
76
|
+
.ev-icon-user:before {
|
|
77
|
+
content: '\e90c';
|
|
78
|
+
}
|
|
79
|
+
.ev-icon-user-plus2:before {
|
|
80
|
+
content: '\e90d';
|
|
81
|
+
}
|
|
82
|
+
.ev-icon-user-plus:before {
|
|
83
|
+
content: '\e90e';
|
|
84
|
+
}
|
|
85
|
+
.ev-icon-user-minus:before {
|
|
86
|
+
content: '\e90f';
|
|
87
|
+
}
|
|
88
|
+
.ev-icon-user-delete:before {
|
|
89
|
+
content: '\e910';
|
|
90
|
+
}
|
|
91
|
+
.ev-icon-user-check:before {
|
|
92
|
+
content: '\e911';
|
|
93
|
+
}
|
|
94
|
+
.ev-icon-upload:before {
|
|
95
|
+
content: '\e912';
|
|
96
|
+
}
|
|
97
|
+
.ev-icon-unlock2:before {
|
|
98
|
+
content: '\e913';
|
|
99
|
+
}
|
|
100
|
+
.ev-icon-unlock:before {
|
|
101
|
+
content: '\e914';
|
|
102
|
+
}
|
|
103
|
+
.ev-icon-undo:before {
|
|
104
|
+
content: '\e915';
|
|
105
|
+
}
|
|
106
|
+
.ev-icon-triangle-up:before {
|
|
107
|
+
content: '\e916';
|
|
108
|
+
}
|
|
109
|
+
.ev-icon-triangle-down:before {
|
|
110
|
+
content: '\e917';
|
|
111
|
+
}
|
|
112
|
+
.ev-icon-trash3:before {
|
|
113
|
+
content: '\e918';
|
|
114
|
+
}
|
|
115
|
+
.ev-icon-trash2:before {
|
|
116
|
+
content: '\e919';
|
|
117
|
+
}
|
|
118
|
+
.ev-icon-trash:before {
|
|
119
|
+
content: '\e91a';
|
|
120
|
+
}
|
|
121
|
+
.ev-icon-topology:before {
|
|
122
|
+
content: '\e91b';
|
|
123
|
+
}
|
|
124
|
+
.ev-icon-tool:before {
|
|
125
|
+
content: '\e91c';
|
|
126
|
+
}
|
|
127
|
+
.ev-icon-timeline:before {
|
|
128
|
+
content: '\e91d';
|
|
129
|
+
}
|
|
130
|
+
.ev-icon-time2:before {
|
|
131
|
+
content: '\e91e';
|
|
132
|
+
}
|
|
133
|
+
.ev-icon-time:before {
|
|
134
|
+
content: '\e91f';
|
|
135
|
+
}
|
|
136
|
+
.ev-icon-time-line:before {
|
|
137
|
+
content: '\e920';
|
|
138
|
+
}
|
|
139
|
+
.ev-icon-text-vertical:before {
|
|
140
|
+
content: '\e921';
|
|
141
|
+
}
|
|
142
|
+
.ev-icon-text-up:before {
|
|
143
|
+
content: '\e922';
|
|
144
|
+
}
|
|
145
|
+
.ev-icon-terminal:before {
|
|
146
|
+
content: '\e923';
|
|
147
|
+
}
|
|
148
|
+
.ev-icon-sun:before {
|
|
149
|
+
content: '\e924';
|
|
150
|
+
}
|
|
151
|
+
.ev-icon-stop2:before {
|
|
152
|
+
content: '\e925';
|
|
153
|
+
}
|
|
154
|
+
.ev-icon-stop1:before {
|
|
155
|
+
content: '\e926';
|
|
156
|
+
}
|
|
157
|
+
.ev-icon-square-plus:before {
|
|
158
|
+
content: '\e927';
|
|
159
|
+
}
|
|
160
|
+
.ev-icon-square-minus:before {
|
|
161
|
+
content: '\e928';
|
|
162
|
+
}
|
|
163
|
+
.ev-icon-square-double-up:before {
|
|
164
|
+
content: '\e929';
|
|
165
|
+
}
|
|
166
|
+
.ev-icon-square-double-right:before {
|
|
167
|
+
content: '\e92a';
|
|
168
|
+
}
|
|
169
|
+
.ev-icon-square-double-left:before {
|
|
170
|
+
content: '\e92b';
|
|
171
|
+
}
|
|
172
|
+
.ev-icon-square-double-down:before {
|
|
173
|
+
content: '\e92c';
|
|
174
|
+
}
|
|
175
|
+
.ev-icon-square-arrow-up:before {
|
|
176
|
+
content: '\e92d';
|
|
177
|
+
}
|
|
178
|
+
.ev-icon-square-arrow-right:before {
|
|
179
|
+
content: '\e92e';
|
|
180
|
+
}
|
|
181
|
+
.ev-icon-square-arrow-left:before {
|
|
182
|
+
content: '\e92f';
|
|
183
|
+
}
|
|
184
|
+
.ev-icon-square-arrow-down:before {
|
|
185
|
+
content: '\e930';
|
|
186
|
+
}
|
|
187
|
+
.ev-icon-spinner:before {
|
|
188
|
+
content: '\e931';
|
|
189
|
+
}
|
|
190
|
+
.ev-icon-spark:before {
|
|
191
|
+
content: '\e932';
|
|
192
|
+
}
|
|
193
|
+
.ev-icon-shovel:before {
|
|
194
|
+
content: '\e933';
|
|
195
|
+
}
|
|
196
|
+
.ev-icon-share:before {
|
|
197
|
+
content: '\e934';
|
|
198
|
+
}
|
|
199
|
+
.ev-icon-shard:before {
|
|
200
|
+
content: '\e935';
|
|
201
|
+
}
|
|
202
|
+
.ev-icon-server2:before {
|
|
203
|
+
content: '\e936';
|
|
204
|
+
}
|
|
205
|
+
.ev-icon-server:before {
|
|
206
|
+
content: '\e937';
|
|
207
|
+
}
|
|
208
|
+
.ev-icon-search2:before {
|
|
209
|
+
content: '\e938';
|
|
210
|
+
}
|
|
211
|
+
.ev-icon-search:before {
|
|
212
|
+
content: '\e939';
|
|
213
|
+
}
|
|
214
|
+
.ev-icon-search-chart:before {
|
|
215
|
+
content: '\e93a';
|
|
216
|
+
}
|
|
217
|
+
.ev-icon-save:before {
|
|
218
|
+
content: '\e93b';
|
|
219
|
+
}
|
|
220
|
+
.ev-icon-s-time-backward:before {
|
|
221
|
+
content: '\e93c';
|
|
222
|
+
}
|
|
223
|
+
.ev-icon-s-stop:before {
|
|
224
|
+
content: '\e93d';
|
|
225
|
+
}
|
|
226
|
+
.ev-icon-s-step-forward:before {
|
|
227
|
+
content: '\e93e';
|
|
228
|
+
}
|
|
229
|
+
.ev-icon-s-step-backward:before {
|
|
230
|
+
content: '\e93f';
|
|
231
|
+
}
|
|
232
|
+
.ev-icon-s-square-plus:before {
|
|
233
|
+
content: '\e940';
|
|
234
|
+
}
|
|
235
|
+
.ev-icon-s-square-minus:before {
|
|
236
|
+
content: '\e941';
|
|
237
|
+
}
|
|
238
|
+
.ev-icon-s-resume:before {
|
|
239
|
+
content: '\e942';
|
|
240
|
+
}
|
|
241
|
+
.ev-icon-s-plus:before {
|
|
242
|
+
content: '\e943';
|
|
243
|
+
}
|
|
244
|
+
.ev-icon-s-play:before {
|
|
245
|
+
content: '\e944';
|
|
246
|
+
}
|
|
247
|
+
.ev-icon-s-pause:before {
|
|
248
|
+
content: '\e945';
|
|
249
|
+
}
|
|
250
|
+
.ev-icon-s-panel-out:before {
|
|
251
|
+
content: '\e946';
|
|
252
|
+
}
|
|
253
|
+
.ev-icon-s-minus:before {
|
|
254
|
+
content: '\e947';
|
|
255
|
+
}
|
|
256
|
+
.ev-icon-s-hamburger:before {
|
|
257
|
+
content: '\e948';
|
|
258
|
+
}
|
|
259
|
+
.ev-icon-s-forward:before {
|
|
260
|
+
content: '\e949';
|
|
261
|
+
}
|
|
262
|
+
.ev-icon-s-double-up:before {
|
|
263
|
+
content: '\e94a';
|
|
264
|
+
}
|
|
265
|
+
.ev-icon-s-double-right:before {
|
|
266
|
+
content: '\e94b';
|
|
267
|
+
}
|
|
268
|
+
.ev-icon-s-double-left:before {
|
|
269
|
+
content: '\e94c';
|
|
270
|
+
}
|
|
271
|
+
.ev-icon-s-double-down:before {
|
|
272
|
+
content: '\e94d';
|
|
273
|
+
}
|
|
274
|
+
.ev-icon-s-close:before {
|
|
275
|
+
content: '\e94e';
|
|
276
|
+
}
|
|
277
|
+
.ev-icon-s-backward:before {
|
|
278
|
+
content: '\e94f';
|
|
279
|
+
}
|
|
280
|
+
.ev-icon-s-back:before {
|
|
281
|
+
content: '\e950';
|
|
282
|
+
}
|
|
283
|
+
.ev-icon-s-arrow-up:before {
|
|
284
|
+
content: '\e951';
|
|
285
|
+
}
|
|
286
|
+
.ev-icon-s-arrow-right:before {
|
|
287
|
+
content: '\e952';
|
|
288
|
+
}
|
|
289
|
+
.ev-icon-s-arrow-left:before {
|
|
290
|
+
content: '\e953';
|
|
291
|
+
}
|
|
292
|
+
.ev-icon-s-arrow-down:before {
|
|
293
|
+
content: '\e954';
|
|
294
|
+
}
|
|
295
|
+
.ev-icon-RTM:before {
|
|
296
|
+
content: '\e955';
|
|
297
|
+
}
|
|
298
|
+
.ev-icon-replicaset:before {
|
|
299
|
+
content: '\e956';
|
|
300
|
+
}
|
|
301
|
+
.ev-icon-registration:before {
|
|
302
|
+
content: '\e957';
|
|
303
|
+
}
|
|
304
|
+
.ev-icon-refresh3:before {
|
|
305
|
+
content: '\e958';
|
|
306
|
+
}
|
|
307
|
+
.ev-icon-refresh2:before {
|
|
308
|
+
content: '\e959';
|
|
309
|
+
}
|
|
310
|
+
.ev-icon-refresh:before {
|
|
311
|
+
content: '\e95a';
|
|
312
|
+
}
|
|
313
|
+
.ev-icon-redo:before {
|
|
314
|
+
content: '\e95b';
|
|
315
|
+
}
|
|
316
|
+
.ev-icon-radio-on2:before {
|
|
317
|
+
content: '\e95c';
|
|
318
|
+
}
|
|
319
|
+
.ev-icon-radio-on:before {
|
|
320
|
+
content: '\e95d';
|
|
321
|
+
}
|
|
322
|
+
.ev-icon-radio-off2:before {
|
|
323
|
+
content: '\e95e';
|
|
324
|
+
}
|
|
325
|
+
.ev-icon-radio-off:before {
|
|
326
|
+
content: '\e95f';
|
|
327
|
+
}
|
|
328
|
+
.ev-icon-r:before {
|
|
329
|
+
content: '\e960';
|
|
330
|
+
}
|
|
331
|
+
.ev-icon-question:before {
|
|
332
|
+
content: '\e961';
|
|
333
|
+
}
|
|
334
|
+
.ev-icon-query:before {
|
|
335
|
+
content: '\e962';
|
|
336
|
+
}
|
|
337
|
+
.ev-icon-printer:before {
|
|
338
|
+
content: '\e963';
|
|
339
|
+
}
|
|
340
|
+
.ev-icon-plus:before {
|
|
341
|
+
content: '\e964';
|
|
342
|
+
}
|
|
343
|
+
.ev-icon-plus-16px:before {
|
|
344
|
+
content: '\e965';
|
|
345
|
+
}
|
|
346
|
+
.ev-icon-plug:before {
|
|
347
|
+
content: '\e966';
|
|
348
|
+
}
|
|
349
|
+
.ev-icon-play_circle:before {
|
|
350
|
+
content: '\e967';
|
|
351
|
+
}
|
|
352
|
+
.ev-icon-pin:before {
|
|
353
|
+
content: '\e968';
|
|
354
|
+
}
|
|
355
|
+
.ev-icon-pig:before {
|
|
356
|
+
content: '\e969';
|
|
357
|
+
}
|
|
358
|
+
.ev-icon-piece:before {
|
|
359
|
+
content: '\e96a';
|
|
360
|
+
}
|
|
361
|
+
.ev-icon-pencil:before {
|
|
362
|
+
content: '\e96b';
|
|
363
|
+
}
|
|
364
|
+
.ev-icon-panel-out:before {
|
|
365
|
+
content: '\e96c';
|
|
366
|
+
}
|
|
367
|
+
.ev-icon-PA:before {
|
|
368
|
+
content: '\e96d';
|
|
369
|
+
}
|
|
370
|
+
.ev-icon-ok:before {
|
|
371
|
+
content: '\e96e';
|
|
372
|
+
}
|
|
373
|
+
.ev-icon-notice:before {
|
|
374
|
+
content: '\e96f';
|
|
375
|
+
}
|
|
376
|
+
.ev-icon-node:before {
|
|
377
|
+
content: '\e970';
|
|
378
|
+
}
|
|
379
|
+
.ev-icon-network-twoway:before {
|
|
380
|
+
content: '\e971';
|
|
381
|
+
}
|
|
382
|
+
.ev-icon-network-oneway:before {
|
|
383
|
+
content: '\e972';
|
|
384
|
+
}
|
|
385
|
+
.ev-icon-network-division:before {
|
|
386
|
+
content: '\e973';
|
|
387
|
+
}
|
|
388
|
+
.ev-icon-network-check:before {
|
|
389
|
+
content: '\e974';
|
|
390
|
+
}
|
|
391
|
+
.ev-icon-moon:before {
|
|
392
|
+
content: '\e975';
|
|
393
|
+
}
|
|
394
|
+
.ev-icon-monitor:before {
|
|
395
|
+
content: '\e976';
|
|
396
|
+
}
|
|
397
|
+
.ev-icon-monitor-grid:before {
|
|
398
|
+
content: '\e977';
|
|
399
|
+
}
|
|
400
|
+
.ev-icon-monitor-chart:before {
|
|
401
|
+
content: '\e978';
|
|
402
|
+
}
|
|
403
|
+
.ev-icon-mobius:before {
|
|
404
|
+
content: '\e979';
|
|
405
|
+
}
|
|
406
|
+
.ev-icon-minus:before {
|
|
407
|
+
content: '\e97a';
|
|
408
|
+
}
|
|
409
|
+
.ev-icon-menu2:before {
|
|
410
|
+
content: '\e97b';
|
|
411
|
+
}
|
|
412
|
+
.ev-icon-menu:before {
|
|
413
|
+
content: '\e97c';
|
|
414
|
+
}
|
|
415
|
+
.ev-icon-memory2:before {
|
|
416
|
+
content: '\e97d';
|
|
417
|
+
}
|
|
418
|
+
.ev-icon-memory:before {
|
|
419
|
+
content: '\e97e';
|
|
420
|
+
}
|
|
421
|
+
.ev-icon-Medium:before {
|
|
422
|
+
content: '\e97f';
|
|
423
|
+
}
|
|
424
|
+
.ev-icon-manual2:before {
|
|
425
|
+
content: '\e980';
|
|
426
|
+
}
|
|
427
|
+
.ev-icon-manual:before {
|
|
428
|
+
content: '\e981';
|
|
429
|
+
}
|
|
430
|
+
.ev-icon-Low:before {
|
|
431
|
+
content: '\e982';
|
|
432
|
+
}
|
|
433
|
+
.ev-icon-logout3:before {
|
|
434
|
+
content: '\e983';
|
|
435
|
+
}
|
|
436
|
+
.ev-icon-logout2:before {
|
|
437
|
+
content: '\e984';
|
|
438
|
+
}
|
|
439
|
+
.ev-icon-logout:before {
|
|
440
|
+
content: '\e985';
|
|
441
|
+
}
|
|
442
|
+
.ev-icon-login:before {
|
|
443
|
+
content: '\e986';
|
|
444
|
+
}
|
|
445
|
+
.ev-icon-lock2:before {
|
|
446
|
+
content: '\e987';
|
|
447
|
+
}
|
|
448
|
+
.ev-icon-lock2_line:before {
|
|
449
|
+
content: '\e988';
|
|
450
|
+
}
|
|
451
|
+
.ev-icon-lock:before {
|
|
452
|
+
content: '\e989';
|
|
453
|
+
}
|
|
454
|
+
.ev-icon-list:before {
|
|
455
|
+
content: '\e98a';
|
|
456
|
+
}
|
|
457
|
+
.ev-icon-link:before {
|
|
458
|
+
content: '\e98b';
|
|
459
|
+
}
|
|
460
|
+
.ev-icon-link-off:before {
|
|
461
|
+
content: '\e98c';
|
|
462
|
+
}
|
|
463
|
+
.ev-icon-License:before {
|
|
464
|
+
content: '\e98d';
|
|
465
|
+
}
|
|
466
|
+
.ev-icon-layout:before {
|
|
467
|
+
content: '\e98e';
|
|
468
|
+
}
|
|
469
|
+
.ev-icon-kafka:before {
|
|
470
|
+
content: '\e98f';
|
|
471
|
+
}
|
|
472
|
+
.ev-icon-Information:before {
|
|
473
|
+
content: '\e990';
|
|
474
|
+
}
|
|
475
|
+
.ev-icon-info2:before {
|
|
476
|
+
content: '\e991';
|
|
477
|
+
}
|
|
478
|
+
.ev-icon-info:before {
|
|
479
|
+
content: '\e992';
|
|
480
|
+
}
|
|
481
|
+
.ev-icon-hive2:before {
|
|
482
|
+
content: '\e993';
|
|
483
|
+
}
|
|
484
|
+
.ev-icon-hive:before {
|
|
485
|
+
content: '\e994';
|
|
486
|
+
}
|
|
487
|
+
.ev-icon-highlight-on:before {
|
|
488
|
+
content: '\e995';
|
|
489
|
+
}
|
|
490
|
+
.ev-icon-highlight-off:before {
|
|
491
|
+
content: '\e996';
|
|
492
|
+
}
|
|
493
|
+
.ev-icon-High:before {
|
|
494
|
+
content: '\e997';
|
|
495
|
+
}
|
|
496
|
+
.ev-icon-help:before {
|
|
497
|
+
content: '\e998';
|
|
498
|
+
}
|
|
499
|
+
.ev-icon-hamburger2:before {
|
|
500
|
+
content: '\e999';
|
|
501
|
+
}
|
|
502
|
+
.ev-icon-hamburger:before {
|
|
503
|
+
content: '\e99a';
|
|
504
|
+
}
|
|
505
|
+
.ev-icon-group:before {
|
|
506
|
+
content: '\e99b';
|
|
507
|
+
}
|
|
508
|
+
.ev-icon-grid:before {
|
|
509
|
+
content: '\e99c';
|
|
510
|
+
}
|
|
511
|
+
.ev-icon-grid-script:before {
|
|
512
|
+
content: '\e99d';
|
|
513
|
+
}
|
|
514
|
+
.ev-icon-grid-plus:before {
|
|
515
|
+
content: '\e99e';
|
|
516
|
+
}
|
|
517
|
+
.ev-icon-grid-minus:before {
|
|
518
|
+
content: '\e99f';
|
|
519
|
+
}
|
|
520
|
+
.ev-icon-grid-check:before {
|
|
521
|
+
content: '\e9a0';
|
|
522
|
+
}
|
|
523
|
+
.ev-icon-getmore:before {
|
|
524
|
+
content: '\e9a1';
|
|
525
|
+
}
|
|
526
|
+
.ev-icon-gear:before {
|
|
527
|
+
content: '\e9a2';
|
|
528
|
+
}
|
|
529
|
+
.ev-icon-gauge:before {
|
|
530
|
+
content: '\e9a3';
|
|
531
|
+
}
|
|
532
|
+
.ev-icon-funnel:before {
|
|
533
|
+
content: '\e9a4';
|
|
534
|
+
}
|
|
535
|
+
.ev-icon-folder2:before {
|
|
536
|
+
content: '\e9a5';
|
|
537
|
+
}
|
|
538
|
+
.ev-icon-folder:before {
|
|
539
|
+
content: '\e9a6';
|
|
540
|
+
}
|
|
541
|
+
.ev-icon-folder-share:before {
|
|
542
|
+
content: '\e9a7';
|
|
543
|
+
}
|
|
544
|
+
.ev-icon-folder-plus:before {
|
|
545
|
+
content: '\e9a8';
|
|
546
|
+
}
|
|
547
|
+
.ev-icon-folder-open:before {
|
|
548
|
+
content: '\e9a9';
|
|
549
|
+
}
|
|
550
|
+
.ev-icon-folder-minus:before {
|
|
551
|
+
content: '\e9aa';
|
|
552
|
+
}
|
|
553
|
+
.ev-icon-folder-merge:before {
|
|
554
|
+
content: '\e9ab';
|
|
555
|
+
}
|
|
556
|
+
.ev-icon-flow2:before {
|
|
557
|
+
content: '\e9ac';
|
|
558
|
+
}
|
|
559
|
+
.ev-icon-flow:before {
|
|
560
|
+
content: '\e9ad';
|
|
561
|
+
}
|
|
562
|
+
.ev-icon-filter2:before {
|
|
563
|
+
content: '\e9ae';
|
|
564
|
+
}
|
|
565
|
+
.ev-icon-filter:before {
|
|
566
|
+
content: '\e9af';
|
|
567
|
+
}
|
|
568
|
+
.ev-icon-filter-list:before {
|
|
569
|
+
content: '\e9b0';
|
|
570
|
+
}
|
|
571
|
+
.ev-icon-external-link3:before {
|
|
572
|
+
content: '\e9b1';
|
|
573
|
+
}
|
|
574
|
+
.ev-icon-external-link2:before {
|
|
575
|
+
content: '\e9b2';
|
|
576
|
+
}
|
|
577
|
+
.ev-icon-external-link:before {
|
|
578
|
+
content: '\e9b3';
|
|
579
|
+
}
|
|
580
|
+
.ev-icon-expand2:before {
|
|
581
|
+
content: '\e9b4';
|
|
582
|
+
}
|
|
583
|
+
.ev-icon-expand:before {
|
|
584
|
+
content: '\e9b5';
|
|
585
|
+
}
|
|
586
|
+
.ev-icon-exchange:before {
|
|
587
|
+
content: '\e9b6';
|
|
588
|
+
}
|
|
589
|
+
.ev-icon-Error2:before {
|
|
590
|
+
content: '\e9b7';
|
|
591
|
+
}
|
|
592
|
+
.ev-icon-error:before {
|
|
593
|
+
content: '\e9b8';
|
|
594
|
+
}
|
|
595
|
+
.ev-icon-elapse2:before {
|
|
596
|
+
content: '\e9b9';
|
|
597
|
+
}
|
|
598
|
+
.ev-icon-elapse:before {
|
|
599
|
+
content: '\e9ba';
|
|
600
|
+
}
|
|
601
|
+
.ev-icon-edit:before {
|
|
602
|
+
content: '\e9bb';
|
|
603
|
+
}
|
|
604
|
+
.ev-icon-edit-code:before {
|
|
605
|
+
content: '\e9bc';
|
|
606
|
+
}
|
|
607
|
+
.ev-icon-download:before {
|
|
608
|
+
content: '\e9bd';
|
|
609
|
+
}
|
|
610
|
+
.ev-icon-double-square:before {
|
|
611
|
+
content: '\e9be';
|
|
612
|
+
}
|
|
613
|
+
.ev-icon-done:before {
|
|
614
|
+
content: '\e9bf';
|
|
615
|
+
}
|
|
616
|
+
.ev-icon-dolphin:before {
|
|
617
|
+
content: '\e9c0';
|
|
618
|
+
}
|
|
619
|
+
.ev-icon-document:before {
|
|
620
|
+
content: '\e9c1';
|
|
621
|
+
}
|
|
622
|
+
.ev-icon-document-vertically:before {
|
|
623
|
+
content: '\e9c2';
|
|
624
|
+
}
|
|
625
|
+
.ev-icon-document-share:before {
|
|
626
|
+
content: '\e9c3';
|
|
627
|
+
}
|
|
628
|
+
.ev-icon-document-search:before {
|
|
629
|
+
content: '\e9c4';
|
|
630
|
+
}
|
|
631
|
+
.ev-icon-document-script:before {
|
|
632
|
+
content: '\e9c5';
|
|
633
|
+
}
|
|
634
|
+
.ev-icon-document-move:before {
|
|
635
|
+
content: '\e9c6';
|
|
636
|
+
}
|
|
637
|
+
.ev-icon-document-merge:before {
|
|
638
|
+
content: '\e9c7';
|
|
639
|
+
}
|
|
640
|
+
.ev-icon-document-horizontally:before {
|
|
641
|
+
content: '\e9c8';
|
|
642
|
+
}
|
|
643
|
+
.ev-icon-document-edit:before {
|
|
644
|
+
content: '\e9c9';
|
|
645
|
+
}
|
|
646
|
+
.ev-icon-document-division2:before {
|
|
647
|
+
content: '\e9ca';
|
|
648
|
+
}
|
|
649
|
+
.ev-icon-document-division:before {
|
|
650
|
+
content: '\e9cb';
|
|
651
|
+
}
|
|
652
|
+
.ev-icon-document-copy2:before {
|
|
653
|
+
content: '\e9cc';
|
|
654
|
+
}
|
|
655
|
+
.ev-icon-document-copy:before {
|
|
656
|
+
content: '\e9cd';
|
|
657
|
+
}
|
|
658
|
+
.ev-icon-document-a:before {
|
|
659
|
+
content: '\e9ce';
|
|
660
|
+
}
|
|
661
|
+
.ev-icon-description:before {
|
|
662
|
+
content: '\e9cf';
|
|
663
|
+
}
|
|
664
|
+
.ev-icon-descending:before {
|
|
665
|
+
content: '\e9d0';
|
|
666
|
+
}
|
|
667
|
+
.ev-icon-db2:before {
|
|
668
|
+
content: '\e9d1';
|
|
669
|
+
}
|
|
670
|
+
.ev-icon-db:before {
|
|
671
|
+
content: '\e9d2';
|
|
672
|
+
}
|
|
673
|
+
.ev-icon-db-plus:before {
|
|
674
|
+
content: '\e9d3';
|
|
675
|
+
}
|
|
676
|
+
.ev-icon-db-minus:before {
|
|
677
|
+
content: '\e9d4';
|
|
678
|
+
}
|
|
679
|
+
.ev-icon-db-delete:before {
|
|
680
|
+
content: '\e9d5';
|
|
681
|
+
}
|
|
682
|
+
.ev-icon-Dashboard:before {
|
|
683
|
+
content: '\e9d6';
|
|
684
|
+
}
|
|
685
|
+
.ev-icon-cpu:before {
|
|
686
|
+
content: '\e9d7';
|
|
687
|
+
}
|
|
688
|
+
.ev-icon-cpu-2:before {
|
|
689
|
+
content: '\e9d8';
|
|
690
|
+
}
|
|
691
|
+
.ev-icon-connection:before {
|
|
692
|
+
content: '\e9d9';
|
|
693
|
+
}
|
|
694
|
+
.ev-icon-connection-line:before {
|
|
695
|
+
content: '\e9da';
|
|
696
|
+
}
|
|
697
|
+
.ev-icon-configuration:before {
|
|
698
|
+
content: '\e9db';
|
|
699
|
+
}
|
|
700
|
+
.ev-icon-configuration-line:before {
|
|
701
|
+
content: '\e9dc';
|
|
702
|
+
}
|
|
703
|
+
.ev-icon-compress2:before {
|
|
704
|
+
content: '\e9dd';
|
|
705
|
+
}
|
|
706
|
+
.ev-icon-compress:before {
|
|
707
|
+
content: '\e9de';
|
|
708
|
+
}
|
|
709
|
+
.ev-icon-column:before {
|
|
710
|
+
content: '\e9df';
|
|
711
|
+
}
|
|
712
|
+
.ev-icon-collapse2:before {
|
|
713
|
+
content: '\e9e0';
|
|
714
|
+
}
|
|
715
|
+
.ev-icon-collapse:before {
|
|
716
|
+
content: '\e9e1';
|
|
717
|
+
}
|
|
718
|
+
.ev-icon-cluster:before {
|
|
719
|
+
content: '\e9e2';
|
|
720
|
+
}
|
|
721
|
+
.ev-icon-cloud_upload:before {
|
|
722
|
+
content: '\e9e3';
|
|
723
|
+
}
|
|
724
|
+
.ev-icon-close3:before {
|
|
725
|
+
content: '\e9e4';
|
|
726
|
+
}
|
|
727
|
+
.ev-icon-close2:before {
|
|
728
|
+
content: '\e9e5';
|
|
729
|
+
}
|
|
730
|
+
.ev-icon-close:before {
|
|
731
|
+
content: '\e9e6';
|
|
732
|
+
}
|
|
733
|
+
.ev-icon-circle-plus:before {
|
|
734
|
+
content: '\e9e7';
|
|
735
|
+
}
|
|
736
|
+
.ev-icon-circle-minus:before {
|
|
737
|
+
content: '\e9e8';
|
|
738
|
+
}
|
|
739
|
+
.ev-icon-circle-arrow-up:before {
|
|
740
|
+
content: '\e9e9';
|
|
741
|
+
}
|
|
742
|
+
.ev-icon-circle-arrow-right:before {
|
|
743
|
+
content: '\e9ea';
|
|
744
|
+
}
|
|
745
|
+
.ev-icon-circle-arrow-left:before {
|
|
746
|
+
content: '\e9eb';
|
|
747
|
+
}
|
|
748
|
+
.ev-icon-circle-arrow-down:before {
|
|
749
|
+
content: '\e9ec';
|
|
750
|
+
}
|
|
751
|
+
.ev-icon-check-on2:before {
|
|
752
|
+
content: '\e9ed';
|
|
753
|
+
}
|
|
754
|
+
.ev-icon-check-on:before {
|
|
755
|
+
content: '\e9ee';
|
|
756
|
+
}
|
|
757
|
+
.ev-icon-check-off2:before {
|
|
758
|
+
content: '\e9ef';
|
|
759
|
+
}
|
|
760
|
+
.ev-icon-check-off:before {
|
|
761
|
+
content: '\e9f0';
|
|
762
|
+
}
|
|
763
|
+
.ev-icon-chart-pie:before {
|
|
764
|
+
content: '\e9f1';
|
|
765
|
+
}
|
|
766
|
+
.ev-icon-chart-line:before {
|
|
767
|
+
content: '\e9f2';
|
|
768
|
+
}
|
|
769
|
+
.ev-icon-chart-line-plus:before {
|
|
770
|
+
content: '\e9f3';
|
|
771
|
+
}
|
|
772
|
+
.ev-icon-chart-line-minus:before {
|
|
773
|
+
content: '\e9f4';
|
|
774
|
+
}
|
|
775
|
+
.ev-icon-chart-bar:before {
|
|
776
|
+
content: '\e9f5';
|
|
777
|
+
}
|
|
778
|
+
.ev-icon-change:before {
|
|
779
|
+
content: '\e9f6';
|
|
780
|
+
}
|
|
781
|
+
.ev-icon-calendar2:before {
|
|
782
|
+
content: '\e9f7';
|
|
783
|
+
}
|
|
784
|
+
.ev-icon-calendar:before {
|
|
785
|
+
content: '\e9f8';
|
|
786
|
+
}
|
|
787
|
+
.ev-icon-calendar-two:before {
|
|
788
|
+
content: '\e9f9';
|
|
789
|
+
}
|
|
790
|
+
.ev-icon-calendar-plus:before {
|
|
791
|
+
content: '\e9fa';
|
|
792
|
+
}
|
|
793
|
+
.ev-icon-calendar-one:before {
|
|
794
|
+
content: '\e9fb';
|
|
795
|
+
}
|
|
796
|
+
.ev-icon-calendar-minus:before {
|
|
797
|
+
content: '\e9fc';
|
|
798
|
+
}
|
|
799
|
+
.ev-icon-briefcase:before {
|
|
800
|
+
content: '\e9fd';
|
|
801
|
+
}
|
|
802
|
+
.ev-icon-binder:before {
|
|
803
|
+
content: '\e9fe';
|
|
804
|
+
}
|
|
805
|
+
.ev-icon-binary:before {
|
|
806
|
+
content: '\e9ff';
|
|
807
|
+
}
|
|
808
|
+
.ev-icon-bell2:before {
|
|
809
|
+
content: '\ea00';
|
|
810
|
+
}
|
|
811
|
+
.ev-icon-bell:before {
|
|
812
|
+
content: '\ea01';
|
|
813
|
+
}
|
|
814
|
+
.ev-icon-bell-warning:before {
|
|
815
|
+
content: '\ea02';
|
|
816
|
+
}
|
|
817
|
+
.ev-icon-bell-line:before {
|
|
818
|
+
content: '\ea03';
|
|
819
|
+
}
|
|
820
|
+
.ev-icon-avatar2:before {
|
|
821
|
+
content: '\ea04';
|
|
822
|
+
}
|
|
823
|
+
.ev-icon-avatar:before {
|
|
824
|
+
content: '\ea05';
|
|
825
|
+
}
|
|
826
|
+
.ev-icon-ascending:before {
|
|
827
|
+
content: '\ea06';
|
|
828
|
+
}
|
|
829
|
+
.ev-icon-arrow-up:before {
|
|
830
|
+
content: '\ea07';
|
|
831
|
+
}
|
|
832
|
+
.ev-icon-arrow-right2:before {
|
|
833
|
+
content: '\ea08';
|
|
834
|
+
}
|
|
835
|
+
.ev-icon-arrow-right:before {
|
|
836
|
+
content: '\ea09';
|
|
837
|
+
}
|
|
838
|
+
.ev-icon-arrow-left2:before {
|
|
839
|
+
content: '\ea0a';
|
|
840
|
+
}
|
|
841
|
+
.ev-icon-arrow-left:before {
|
|
842
|
+
content: '\ea0b';
|
|
843
|
+
}
|
|
844
|
+
.ev-icon-arrow-down2:before {
|
|
845
|
+
content: '\ea0c';
|
|
846
|
+
}
|
|
847
|
+
.ev-icon-arrow-down:before {
|
|
848
|
+
content: '\ea0d';
|
|
849
|
+
}
|
|
850
|
+
.ev-icon-arrow-check:before {
|
|
851
|
+
content: '\ea0e';
|
|
852
|
+
}
|
|
853
|
+
.ev-icon-allow2-up:before {
|
|
854
|
+
content: '\ea0f';
|
|
855
|
+
}
|
|
856
|
+
.ev-icon-allow2-right2:before {
|
|
857
|
+
content: '\ea10';
|
|
858
|
+
}
|
|
859
|
+
.ev-icon-allow2-right:before {
|
|
860
|
+
content: '\ea11';
|
|
861
|
+
}
|
|
862
|
+
.ev-icon-allow2-left2:before {
|
|
863
|
+
content: '\ea12';
|
|
864
|
+
}
|
|
865
|
+
.ev-icon-allow2-left:before {
|
|
866
|
+
content: '\ea13';
|
|
867
|
+
}
|
|
868
|
+
.ev-icon-allow2-down:before {
|
|
869
|
+
content: '\ea14';
|
|
870
|
+
}
|
|
871
|
+
.ev-icon-all-check:before {
|
|
872
|
+
content: '\ea15';
|
|
873
|
+
}
|
|
874
|
+
.ev-icon-alert4:before {
|
|
875
|
+
content: '\ea16';
|
|
876
|
+
}
|
|
877
|
+
.ev-icon-alert3:before {
|
|
878
|
+
content: '\ea17';
|
|
879
|
+
}
|
|
880
|
+
.ev-icon-add:before {
|
|
881
|
+
content: '\ea18';
|
|
882
|
+
}
|
|
883
|
+
.ev-icon-add-box:before {
|
|
884
|
+
content: '\ea19';
|
|
885
|
+
}
|
|
886
|
+
.ev-icon-active:before {
|
|
887
|
+
content: '\ea1a';
|
|
888
|
+
}
|