evui 2.1.0 → 2.1.3
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/dist/{adac9fa4f723f9d2cb5b6640517114a9.png → 0b8d1200e71cae8d747dce4e69c4efb6.png} +0 -0
- package/dist/1.css +4 -0
- package/dist/1.css.map +1 -0
- package/dist/1.evui.min.js +2 -0
- package/dist/1.evui.min.js.map +1 -0
- package/dist/1ba679c05036b34bf359aa2e6c450faa.ttf +0 -0
- package/dist/2.css +4 -0
- package/dist/2.css.map +1 -0
- package/dist/2.evui.min.js +2 -0
- package/dist/2.evui.min.js.map +1 -0
- package/dist/{e8c322de9658cbeb8a774b6624167c2c.woff2 → 278156e41e0ad908cf7f841b17130502.woff2} +0 -0
- package/dist/3.evui.min.js +2 -0
- package/dist/3.evui.min.js.map +1 -0
- package/dist/32be89b11725274cd3e801192ba88361.ttf +0 -0
- package/dist/{0ab54153eeeca0ce03978cc463b257f7.woff2 → 38c6d8bab26db77d8c806813e1497763.woff2} +0 -0
- package/dist/4.evui.min.js +2 -0
- package/dist/4.evui.min.js.map +1 -0
- package/dist/{faff92145777a3cbaf8e7367b4807987.woff → 425399f81e4ce7cbd967685402ba0260.woff} +0 -0
- package/dist/4730076470a665bbc7b783c56d29a72e.svg +261 -0
- package/dist/52e9a7f6ff3af5ad261e5292d07ebdca.eot +0 -0
- package/dist/{ad97afd3337e8cda302d10ff5a4026b8.ttf → 5367103510b27b78482794590e1ce3b0.ttf} +0 -0
- package/dist/{65363c4d55617bbeb57d8ce6dcd46099.svg → 57e963e3d6dd0a9cf05150b40eebf69b.svg} +0 -0
- package/dist/{c5ebe0b32dc1b5cc449a76c4204d13bb.ttf → 65a2fb6d9aaa164b41a039302093995b.ttf} +0 -0
- package/dist/{cd6c777f1945164224dee082abaea03a.woff2 → 687a4990ea22bb1a49d469a5d9319790.woff2} +0 -0
- package/dist/{7583da5c07275cd5eb364507616f998f.ttf → 6c1d906bf5ba48676f65b2d65e935e1a.ttf} +0 -0
- package/dist/6dafca5a4f1e31f2bdf11939b24ff422.ttf +0 -0
- package/dist/{701ae6abd4719e9c2ada3535a497b341.eot → 752905fa5edf21fc52a10a0c1ca9c7a4.eot} +0 -0
- package/dist/76c05d80dda67cdc5d03f345b7bd063f.ttf +0 -0
- package/dist/{b551b554a67e86a840bc80cbb8066c30.svg → 7d62eb50e7bb05eedb2a4656f7fe8f3b.svg} +0 -0
- package/dist/{8e3c7f5520f5ae906c6cf6d7f3ddcd19.eot → a01e3f2d6c83dc3aee175e2482b3f777.eot} +0 -0
- package/dist/{448f2aaa315fa9dce7b2cf6ce31caed6.svg → b30fd8419d7e6d5918856c7531d33482.svg} +0 -0
- package/dist/c57dd55fa982e8940f69ca1d69a8a999.woff +0 -0
- package/dist/{b87b9ba532ace76ae9f6edfe9f72ded2.ttf → c656b8caa454ed19b9a2ef7f4f5b8fea.ttf} +0 -0
- package/dist/{a046592bac8f2fd96e994733faf3858c.woff → cac87dc00c87a5d74711d0276713808a.woff} +0 -0
- package/dist/{13db00b7a34fee4d819ab7f9838cc428.eot → d68fa3e67dbb653a13cec44b1bcabcfe.eot} +0 -0
- package/dist/{ef60a4f6c25ef7f39f2d25a748dbecfe.woff → ddae9b1ba9b0b42f58809904b0b21349.woff} +0 -0
- package/dist/evui.min.js +6 -86054
- package/dist/evui.min.js.gz +0 -0
- package/dist/evui.min.js.map +1 -1
- package/dist/main.css +43 -5541
- package/dist/main.css.gz +0 -0
- package/dist/main.css.map +1 -1
- package/package.json +56 -76
- package/src/common/emitter.js +20 -0
- package/src/common/utils.debounce.js +223 -0
- package/src/common/utils.js +51 -17
- package/src/common/utils.throttle.js +83 -0
- package/src/common/utils.tree.js +18 -0
- package/src/components/button/button.vue +317 -241
- package/src/components/chart/chart.core.js +378 -85
- package/src/components/chart/chart.vue +133 -115
- package/src/components/chart/element/element.bar.js +219 -25
- package/src/components/chart/element/element.bar.time.js +115 -0
- package/src/components/chart/element/element.line.js +172 -21
- package/src/components/chart/element/element.pie.js +86 -0
- package/src/components/chart/element/element.scatter.js +9 -2
- package/src/components/chart/element/element.tip.js +356 -0
- package/src/components/chart/helpers/helpers.canvas.js +94 -0
- package/src/components/chart/helpers/helpers.constant.js +25 -6
- package/src/components/chart/helpers/helpers.util.js +83 -38
- package/src/components/chart/index.js +0 -1
- package/src/components/chart/model/model.series.js +43 -14
- package/src/components/chart/model/model.store.js +440 -46
- package/src/components/chart/plugins/plugins.interaction.js +324 -0
- package/src/components/chart/plugins/plugins.legend.js +233 -91
- package/src/components/chart/plugins/plugins.pie.js +179 -0
- package/src/components/chart/plugins/plugins.title.js +25 -2
- package/src/components/chart/plugins/plugins.tooltip.js +384 -0
- package/src/components/chart/scale/scale.js +91 -29
- package/src/components/chart/scale/scale.linear.js +12 -0
- package/src/components/chart/scale/scale.logarithmic.js +25 -0
- package/src/components/chart/scale/scale.step.js +89 -52
- package/src/components/chart/scale/scale.time.category.js +204 -0
- package/src/components/chart/scale/scale.time.js +19 -1
- package/src/components/checkbox/checkbox-group.vue +15 -11
- package/src/components/checkbox/checkbox.vue +210 -138
- package/src/components/codeview/code.vue +42 -29
- package/src/components/contextmenu/contextmenu.child.vue +79 -0
- package/src/components/contextmenu/contextmenu.vue +276 -0
- package/src/components/contextmenu/contextmenu.wrap.vue +189 -0
- package/src/components/contextmenu/index.js +3 -0
- package/src/components/datepicker/calendar.core.js +588 -492
- package/src/components/datepicker/calendar.vue +0 -3
- package/src/components/datepicker/datepicker.vue +43 -15
- package/src/components/datepicker/index.js +5 -1
- package/src/components/grid/grid.filter.vue +290 -0
- package/src/components/grid/grid.filter.window.vue +411 -0
- package/src/components/grid/grid.render.vue +45 -0
- package/src/components/grid/grid.vue +1338 -0
- package/src/components/icon/icon.vue +23 -7
- package/src/components/input/input.number.vue +309 -277
- package/src/components/label/label.vue +2 -2
- package/src/components/loadingmask/loadingmask.vue +6 -13
- package/src/components/loginfield/loginfield.vue +46 -37
- package/src/components/markdown/index.js +3 -0
- package/src/components/markdown/markdown.vue +1001 -0
- package/src/components/menu/index.js +1 -3
- package/src/components/menu/menu.nav.item.vue +115 -0
- package/src/components/menu/menu.nav.sub.vue +42 -0
- package/src/components/menu/menu.nav.vue +71 -98
- package/src/components/message/index.js +3 -0
- package/src/components/message/message.js +63 -0
- package/src/components/message/message.vue +191 -0
- package/src/components/message-box/index.js +7 -0
- package/src/components/message-box/message-box.js +32 -0
- package/src/components/message-box/message-box.vue +291 -0
- package/src/components/notification/index.js +3 -0
- package/src/components/notification/notification.js +75 -0
- package/src/components/notification/notification.vue +242 -0
- package/src/components/radio/radio-group.vue +6 -2
- package/src/components/radio/radio.vue +156 -76
- package/src/components/selectbox/dropdown.vue +86 -40
- package/src/components/selectbox/listbox.vue +47 -18
- package/src/components/selectbox/option.vue +1 -1
- package/src/components/selectbox/selectbox.vue +304 -316
- package/src/components/slider/slider-tooltip.vue +7 -7
- package/src/components/slider/slider.vue +20 -25
- package/src/components/splitter/splitter.vue +104 -94
- package/src/components/table/table.black.css +1 -1
- package/src/components/table/table.filter.lite.vue +7 -7
- package/src/components/table/table.filter.vue +1 -1
- package/src/components/table/table.grey.css +5 -6
- package/src/components/table/table.navy.css +1 -1
- package/src/components/table/table.vue +55 -48
- package/src/components/tabs/tab-panel.vue +19 -5
- package/src/components/tabs/tabs.vue +182 -87
- package/src/components/textfield/textfield.vue +110 -87
- package/src/components/timepicker/index.js +2 -2
- package/src/components/timepicker/spinner.vue +15 -17
- package/src/components/timepicker/timepicker.vue +98 -53
- package/src/components/toggle/toggle.vue +148 -109
- package/src/components/tree/index.js +2 -6
- package/src/components/tree/render.js +17 -0
- package/src/components/tree/tree-node.vue +214 -0
- package/src/components/tree/tree.vue +296 -0
- package/src/components/tree-table/index.js +7 -0
- package/src/components/{tree → tree-table}/tree.table.black.css +0 -0
- package/src/components/{tree → tree-table}/tree.table.grey.css +0 -0
- package/src/components/{tree → tree-table}/tree.table.vue +36 -41
- package/src/components/{tree → tree-table}/tree.util.js +0 -0
- package/src/components/window/window.vue +238 -191
- package/src/index.js +28 -12
- package/src/styles/base/base.scss +50 -0
- package/src/styles/base/index.scss +1 -0
- package/src/styles/default.scss +5 -0
- package/src/styles/{codemirror.css → lib/codemirror.css} +0 -0
- package/src/styles/{all.css → lib/fontawesome.css} +1 -1
- package/src/styles/lib/icon.css +792 -0
- package/src/styles/themes/index.scss +2 -0
- package/src/styles/themes/mixin.scss +33 -0
- package/src/styles/themes/variables.scss +206 -0
- package/src/styles/utils/colors.scss +222 -0
- package/src/styles/utils/index.scss +2 -0
- package/src/styles/utils/mixins.scss +34 -0
- package/src/styles/utils/variables.scss +27 -0
- package/src/webfonts/EVUI.eot +0 -0
- package/src/webfonts/EVUI.svg +251 -173
- package/src/webfonts/EVUI.ttf +0 -0
- package/src/webfonts/EVUI.woff +0 -0
- package/src/webfonts/Roboto-Bold.ttf +0 -0
- package/src/webfonts/Roboto-Medium.ttf +0 -0
- package/src/webfonts/Roboto-Regular.ttf +0 -0
- package/dist/3c9453211570a4ede66a4b4954a32bbb.ttf +0 -0
- package/dist/8634884f932627fc43782e6963b64ccd.svg +0 -183
- package/dist/b9e64d9b5fa6b500eb5df6fa980d3e5b.eot +0 -0
- package/dist/f0ac0c8b3c9cd3ef9002749985ae546f.woff +0 -0
- package/src/components/chart/charts/chart.bar.js +0 -334
- package/src/components/chart/charts/chart.base.js +0 -1075
- package/src/components/chart/charts/chart.line.js +0 -262
- package/src/components/chart/charts/chart.pie.js +0 -383
- package/src/components/chart/charts/chart.scatter.js +0 -349
- package/src/components/chart/charts/chart.sunburst.js +0 -193
- package/src/components/chart/core/axis/axis.js +0 -217
- package/src/components/chart/core/axis/axis.scale.auto.js +0 -69
- package/src/components/chart/core/axis/axis.scale.fixed.js +0 -65
- package/src/components/chart/core/axis/axis.scale.steps.js +0 -149
- package/src/components/chart/core/core.constant.js +0 -116
- package/src/components/chart/core/core.legend.js +0 -473
- package/src/components/chart/core/core.util.js +0 -66
- package/src/components/chart/core/data/data.js +0 -412
- package/src/components/chart/core/data/data.pie.js +0 -70
- package/src/components/chart/core/data/data.stack.js +0 -222
- package/src/components/chart/core/data/data.sunburst.js +0 -172
- package/src/components/menu/menu.context.children.vue +0 -201
- package/src/components/menu/menu.context.vue +0 -144
- package/src/components/tabs/jun/tab.vue +0 -123
- package/src/components/tabs/jun/tabs.vue +0 -484
- package/src/styles/evui.css +0 -386
- package/src/styles/icon.css +0 -557
|
@@ -0,0 +1,792 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'EVUI';
|
|
3
|
+
src: url('../../webfonts/EVUI.eot?xnf1pg');
|
|
4
|
+
src: url('../../webfonts/EVUI.eot?xnf1pg#iefix') format('embedded-opentype'),
|
|
5
|
+
url('../../webfonts/EVUI.ttf?xnf1pg') format('truetype'),
|
|
6
|
+
url('../../webfonts/EVUI.woff?xnf1pg') format('woff'),
|
|
7
|
+
url('../../webfonts/EVUI.svg?xnf1pg#EVUI') format('svg');
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
font-display: block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.ei {
|
|
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-height: 1;
|
|
22
|
+
|
|
23
|
+
/* Better Font Rendering =========== */
|
|
24
|
+
-webkit-font-smoothing: antialiased;
|
|
25
|
+
-moz-osx-font-smoothing: grayscale;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.ei-s {
|
|
29
|
+
font-size: 16px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.ei-m {
|
|
33
|
+
font-size: 20px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.ei-l {
|
|
37
|
+
font-size: 25px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.ei-filter-list:before {
|
|
41
|
+
content: '\e9fa';
|
|
42
|
+
}
|
|
43
|
+
.ei-filter:before {
|
|
44
|
+
content: '\e9f7';
|
|
45
|
+
}
|
|
46
|
+
.ei-text-up:before {
|
|
47
|
+
content: '\e9f8';
|
|
48
|
+
}
|
|
49
|
+
.ei-text-vertical:before {
|
|
50
|
+
content: '\e9f9';
|
|
51
|
+
}
|
|
52
|
+
.ei-add-box:before {
|
|
53
|
+
content: '\e9ec';
|
|
54
|
+
}
|
|
55
|
+
.ei-add:before {
|
|
56
|
+
content: '\e9ed';
|
|
57
|
+
}
|
|
58
|
+
.ei-binary:before {
|
|
59
|
+
content: '\e9ee';
|
|
60
|
+
}
|
|
61
|
+
.ei-change:before {
|
|
62
|
+
content: '\e9ef';
|
|
63
|
+
}
|
|
64
|
+
.ei-cloud_upload:before {
|
|
65
|
+
content: '\e9f0';
|
|
66
|
+
}
|
|
67
|
+
.ei-cpu:before {
|
|
68
|
+
content: '\e9f1';
|
|
69
|
+
}
|
|
70
|
+
.ei-description:before {
|
|
71
|
+
content: '\e9f2';
|
|
72
|
+
}
|
|
73
|
+
.ei-done:before {
|
|
74
|
+
content: '\e9f3';
|
|
75
|
+
}
|
|
76
|
+
.ei-edit:before {
|
|
77
|
+
content: '\e9f4';
|
|
78
|
+
}
|
|
79
|
+
.ei-License:before {
|
|
80
|
+
content: '\e9f5';
|
|
81
|
+
}
|
|
82
|
+
.ei-play_circle:before {
|
|
83
|
+
content: '\e9f6';
|
|
84
|
+
}
|
|
85
|
+
.ei-getmore:before {
|
|
86
|
+
content: '\e9e9';
|
|
87
|
+
}
|
|
88
|
+
.ei-query:before {
|
|
89
|
+
content: '\e9ea';
|
|
90
|
+
}
|
|
91
|
+
.ei-trash3:before {
|
|
92
|
+
content: '\e9eb';
|
|
93
|
+
}
|
|
94
|
+
.ei-info2:before {
|
|
95
|
+
content: '\e9de';
|
|
96
|
+
}
|
|
97
|
+
.ei-question:before {
|
|
98
|
+
content: '\e9e7';
|
|
99
|
+
}
|
|
100
|
+
.ei-shard:before {
|
|
101
|
+
content: '\e9e6';
|
|
102
|
+
}
|
|
103
|
+
.ei-allow2-right2:before {
|
|
104
|
+
content: '\e9e4';
|
|
105
|
+
}
|
|
106
|
+
.ei-compress2:before {
|
|
107
|
+
content: '\e9e5';
|
|
108
|
+
}
|
|
109
|
+
.ei-all-check:before {
|
|
110
|
+
content: '\e900';
|
|
111
|
+
}
|
|
112
|
+
.ei-allow2-down:before {
|
|
113
|
+
content: '\e901';
|
|
114
|
+
}
|
|
115
|
+
.ei-allow2-left:before {
|
|
116
|
+
content: '\e902';
|
|
117
|
+
}
|
|
118
|
+
.ei-allow2-left2:before {
|
|
119
|
+
content: '\e903';
|
|
120
|
+
}
|
|
121
|
+
.ei-allow2-right:before {
|
|
122
|
+
content: '\e904';
|
|
123
|
+
}
|
|
124
|
+
.ei-allow2-up:before {
|
|
125
|
+
content: '\e905';
|
|
126
|
+
}
|
|
127
|
+
.ei-arrow-check:before {
|
|
128
|
+
content: '\e906';
|
|
129
|
+
}
|
|
130
|
+
.ei-arrow-down:before {
|
|
131
|
+
content: '\e907';
|
|
132
|
+
}
|
|
133
|
+
.ei-arrow-down2:before {
|
|
134
|
+
content: '\e908';
|
|
135
|
+
}
|
|
136
|
+
.ei-arrow-left:before {
|
|
137
|
+
content: '\e909';
|
|
138
|
+
}
|
|
139
|
+
.ei-arrow-left2:before {
|
|
140
|
+
content: '\e90a';
|
|
141
|
+
}
|
|
142
|
+
.ei-arrow-right:before {
|
|
143
|
+
content: '\e90b';
|
|
144
|
+
}
|
|
145
|
+
.ei-arrow-right2:before {
|
|
146
|
+
content: '\e90c';
|
|
147
|
+
}
|
|
148
|
+
.ei-arrow-up:before {
|
|
149
|
+
content: '\e90d';
|
|
150
|
+
}
|
|
151
|
+
.ei-ascending:before {
|
|
152
|
+
content: '\e90e';
|
|
153
|
+
}
|
|
154
|
+
.ei-bell-line:before {
|
|
155
|
+
content: '\e90f';
|
|
156
|
+
}
|
|
157
|
+
.ei-bell-warning:before {
|
|
158
|
+
content: '\e910';
|
|
159
|
+
}
|
|
160
|
+
.ei-bell:before {
|
|
161
|
+
content: '\e911';
|
|
162
|
+
}
|
|
163
|
+
.ei-bell2:before {
|
|
164
|
+
content: '\e912';
|
|
165
|
+
}
|
|
166
|
+
.ei-binder:before {
|
|
167
|
+
content: '\e913';
|
|
168
|
+
}
|
|
169
|
+
.ei-briefcase:before {
|
|
170
|
+
content: '\e914';
|
|
171
|
+
}
|
|
172
|
+
.ei-calendar-minus:before {
|
|
173
|
+
content: '\e915';
|
|
174
|
+
}
|
|
175
|
+
.ei-calendar-one:before {
|
|
176
|
+
content: '\e916';
|
|
177
|
+
}
|
|
178
|
+
.ei-calendar-plus:before {
|
|
179
|
+
content: '\e917';
|
|
180
|
+
}
|
|
181
|
+
.ei-calendar-two:before {
|
|
182
|
+
content: '\e918';
|
|
183
|
+
}
|
|
184
|
+
.ei-calendar:before {
|
|
185
|
+
content: '\e919';
|
|
186
|
+
}
|
|
187
|
+
.ei-calendar2:before {
|
|
188
|
+
content: '\e91a';
|
|
189
|
+
}
|
|
190
|
+
.ei-chart-bar:before {
|
|
191
|
+
content: '\e91b';
|
|
192
|
+
}
|
|
193
|
+
.ei-chart-line-minus:before {
|
|
194
|
+
content: '\e91c';
|
|
195
|
+
}
|
|
196
|
+
.ei-chart-line-plus:before {
|
|
197
|
+
content: '\e91d';
|
|
198
|
+
}
|
|
199
|
+
.ei-chart-line:before {
|
|
200
|
+
content: '\e91e';
|
|
201
|
+
}
|
|
202
|
+
.ei-chart-pie:before {
|
|
203
|
+
content: '\e91f';
|
|
204
|
+
}
|
|
205
|
+
.ei-check-off:before {
|
|
206
|
+
content: '\e920';
|
|
207
|
+
}
|
|
208
|
+
.ei-check-off2:before {
|
|
209
|
+
content: '\e921';
|
|
210
|
+
}
|
|
211
|
+
.ei-check-on:before {
|
|
212
|
+
content: '\e922';
|
|
213
|
+
}
|
|
214
|
+
.ei-check-on2:before {
|
|
215
|
+
content: '\e923';
|
|
216
|
+
}
|
|
217
|
+
.ei-circle-arrow-down:before {
|
|
218
|
+
content: '\e924';
|
|
219
|
+
}
|
|
220
|
+
.ei-circle-arrow-left:before {
|
|
221
|
+
content: '\e925';
|
|
222
|
+
}
|
|
223
|
+
.ei-circle-arrow-right:before {
|
|
224
|
+
content: '\e926';
|
|
225
|
+
}
|
|
226
|
+
.ei-circle-arrow-up:before {
|
|
227
|
+
content: '\e927';
|
|
228
|
+
}
|
|
229
|
+
.ei-circle-minus:before {
|
|
230
|
+
content: '\e928';
|
|
231
|
+
}
|
|
232
|
+
.ei-circle-plus:before {
|
|
233
|
+
content: '\e929';
|
|
234
|
+
}
|
|
235
|
+
.ei-close:before {
|
|
236
|
+
content: '\e92a';
|
|
237
|
+
}
|
|
238
|
+
.ei-close2:before {
|
|
239
|
+
content: '\e92b';
|
|
240
|
+
}
|
|
241
|
+
.ei-collapse:before {
|
|
242
|
+
content: '\e92c';
|
|
243
|
+
}
|
|
244
|
+
.ei-collapse2:before {
|
|
245
|
+
content: '\e92d';
|
|
246
|
+
}
|
|
247
|
+
.ei-column:before {
|
|
248
|
+
content: '\e92e';
|
|
249
|
+
}
|
|
250
|
+
.ei-compress:before {
|
|
251
|
+
content: '\e92f';
|
|
252
|
+
}
|
|
253
|
+
.ei-configuration-line:before {
|
|
254
|
+
content: '\e930';
|
|
255
|
+
}
|
|
256
|
+
.ei-configuration:before {
|
|
257
|
+
content: '\e931';
|
|
258
|
+
}
|
|
259
|
+
.ei-connection:before {
|
|
260
|
+
content: '\e932';
|
|
261
|
+
}
|
|
262
|
+
.ei-db-delete:before {
|
|
263
|
+
content: '\e933';
|
|
264
|
+
}
|
|
265
|
+
.ei-db-minus:before {
|
|
266
|
+
content: '\e934';
|
|
267
|
+
}
|
|
268
|
+
.ei-db-plus:before {
|
|
269
|
+
content: '\e935';
|
|
270
|
+
}
|
|
271
|
+
.ei-db:before {
|
|
272
|
+
content: '\e936';
|
|
273
|
+
}
|
|
274
|
+
.ei-db2:before {
|
|
275
|
+
content: '\e937';
|
|
276
|
+
}
|
|
277
|
+
.ei-descending:before {
|
|
278
|
+
content: '\e938';
|
|
279
|
+
}
|
|
280
|
+
.ei-document-a:before {
|
|
281
|
+
content: '\e939';
|
|
282
|
+
}
|
|
283
|
+
.ei-document-copy:before {
|
|
284
|
+
content: '\e93a';
|
|
285
|
+
}
|
|
286
|
+
.ei-document-copy2:before {
|
|
287
|
+
content: '\e93b';
|
|
288
|
+
}
|
|
289
|
+
.ei-document-division:before {
|
|
290
|
+
content: '\e93c';
|
|
291
|
+
}
|
|
292
|
+
.ei-document-division2:before {
|
|
293
|
+
content: '\e93d';
|
|
294
|
+
}
|
|
295
|
+
.ei-document-edit:before {
|
|
296
|
+
content: '\e93e';
|
|
297
|
+
}
|
|
298
|
+
.ei-document-horizontally:before {
|
|
299
|
+
content: '\e93f';
|
|
300
|
+
}
|
|
301
|
+
.ei-document-merge:before {
|
|
302
|
+
content: '\e940';
|
|
303
|
+
}
|
|
304
|
+
.ei-document-move:before {
|
|
305
|
+
content: '\e941';
|
|
306
|
+
}
|
|
307
|
+
.ei-document-script:before {
|
|
308
|
+
content: '\e942';
|
|
309
|
+
}
|
|
310
|
+
.ei-document-search:before {
|
|
311
|
+
content: '\e943';
|
|
312
|
+
}
|
|
313
|
+
.ei-document-share:before {
|
|
314
|
+
content: '\e944';
|
|
315
|
+
}
|
|
316
|
+
.ei-document-vertically:before {
|
|
317
|
+
content: '\e945';
|
|
318
|
+
}
|
|
319
|
+
.ei-document:before {
|
|
320
|
+
content: '\e946';
|
|
321
|
+
}
|
|
322
|
+
.ei-dolphin:before {
|
|
323
|
+
content: '\e947';
|
|
324
|
+
}
|
|
325
|
+
.ei-double-square:before {
|
|
326
|
+
content: '\e948';
|
|
327
|
+
}
|
|
328
|
+
.ei-download:before {
|
|
329
|
+
content: '\e949';
|
|
330
|
+
}
|
|
331
|
+
.ei-edit-code:before {
|
|
332
|
+
content: '\e94a';
|
|
333
|
+
}
|
|
334
|
+
.ei-elapse:before {
|
|
335
|
+
content: '\e94b';
|
|
336
|
+
}
|
|
337
|
+
.ei-elapse2:before {
|
|
338
|
+
content: '\e94c';
|
|
339
|
+
}
|
|
340
|
+
.ei-error:before {
|
|
341
|
+
content: '\e94d';
|
|
342
|
+
}
|
|
343
|
+
.ei-exchange:before {
|
|
344
|
+
content: '\e94e';
|
|
345
|
+
}
|
|
346
|
+
.ei-expand:before {
|
|
347
|
+
content: '\e94f';
|
|
348
|
+
}
|
|
349
|
+
.ei-expand2:before {
|
|
350
|
+
content: '\e950';
|
|
351
|
+
}
|
|
352
|
+
.ei-external-link:before {
|
|
353
|
+
content: '\e951';
|
|
354
|
+
}
|
|
355
|
+
.ei-external-link2:before {
|
|
356
|
+
content: '\e952';
|
|
357
|
+
}
|
|
358
|
+
.ei-flow:before {
|
|
359
|
+
content: '\e953';
|
|
360
|
+
}
|
|
361
|
+
.ei-flow2:before {
|
|
362
|
+
content: '\e954';
|
|
363
|
+
}
|
|
364
|
+
.ei-folder-merge:before {
|
|
365
|
+
content: '\e955';
|
|
366
|
+
}
|
|
367
|
+
.ei-folder-minus:before {
|
|
368
|
+
content: '\e956';
|
|
369
|
+
}
|
|
370
|
+
.ei-folder-open:before {
|
|
371
|
+
content: '\e957';
|
|
372
|
+
}
|
|
373
|
+
.ei-folder-plus:before {
|
|
374
|
+
content: '\e958';
|
|
375
|
+
}
|
|
376
|
+
.ei-folder-share:before {
|
|
377
|
+
content: '\e959';
|
|
378
|
+
}
|
|
379
|
+
.ei-folder:before {
|
|
380
|
+
content: '\e95a';
|
|
381
|
+
}
|
|
382
|
+
.ei-folder2:before {
|
|
383
|
+
content: '\e95b';
|
|
384
|
+
}
|
|
385
|
+
.ei-funnel:before {
|
|
386
|
+
content: '\e95c';
|
|
387
|
+
}
|
|
388
|
+
.ei-gauge:before {
|
|
389
|
+
content: '\e95d';
|
|
390
|
+
}
|
|
391
|
+
.ei-gear:before {
|
|
392
|
+
content: '\e95e';
|
|
393
|
+
}
|
|
394
|
+
.ei-grid-check:before {
|
|
395
|
+
content: '\e95f';
|
|
396
|
+
}
|
|
397
|
+
.ei-grid-minus:before {
|
|
398
|
+
content: '\e960';
|
|
399
|
+
}
|
|
400
|
+
.ei-grid-plus:before {
|
|
401
|
+
content: '\e961';
|
|
402
|
+
}
|
|
403
|
+
.ei-grid-script:before {
|
|
404
|
+
content: '\e962';
|
|
405
|
+
}
|
|
406
|
+
.ei-grid:before {
|
|
407
|
+
content: '\e963';
|
|
408
|
+
}
|
|
409
|
+
.ei-group:before {
|
|
410
|
+
content: '\e964';
|
|
411
|
+
}
|
|
412
|
+
.ei-hamburger:before {
|
|
413
|
+
content: '\e965';
|
|
414
|
+
}
|
|
415
|
+
.ei-hamburger2:before {
|
|
416
|
+
content: '\e966';
|
|
417
|
+
}
|
|
418
|
+
.ei-help:before {
|
|
419
|
+
content: '\e967';
|
|
420
|
+
}
|
|
421
|
+
.ei-hive:before {
|
|
422
|
+
content: '\e968';
|
|
423
|
+
}
|
|
424
|
+
.ei-hive2:before {
|
|
425
|
+
content: '\e969';
|
|
426
|
+
}
|
|
427
|
+
.ei-info:before {
|
|
428
|
+
content: '\e96a';
|
|
429
|
+
}
|
|
430
|
+
.ei-kafka:before {
|
|
431
|
+
content: '\e96b';
|
|
432
|
+
}
|
|
433
|
+
.ei-layout:before {
|
|
434
|
+
content: '\e96c';
|
|
435
|
+
}
|
|
436
|
+
.ei-link-off:before {
|
|
437
|
+
content: '\e96d';
|
|
438
|
+
}
|
|
439
|
+
.ei-link:before {
|
|
440
|
+
content: '\e96e';
|
|
441
|
+
}
|
|
442
|
+
.ei-list:before {
|
|
443
|
+
content: '\e96f';
|
|
444
|
+
}
|
|
445
|
+
.ei-lock:before {
|
|
446
|
+
content: '\e970';
|
|
447
|
+
}
|
|
448
|
+
.ei-lock2:before {
|
|
449
|
+
content: '\e971';
|
|
450
|
+
}
|
|
451
|
+
.ei-login:before {
|
|
452
|
+
content: '\e972';
|
|
453
|
+
}
|
|
454
|
+
.ei-logout:before {
|
|
455
|
+
content: '\e973';
|
|
456
|
+
}
|
|
457
|
+
.ei-logout2:before {
|
|
458
|
+
content: '\e974';
|
|
459
|
+
}
|
|
460
|
+
.ei-manual:before {
|
|
461
|
+
content: '\e975';
|
|
462
|
+
}
|
|
463
|
+
.ei-manual2:before {
|
|
464
|
+
content: '\e976';
|
|
465
|
+
}
|
|
466
|
+
.ei-memory:before {
|
|
467
|
+
content: '\e977';
|
|
468
|
+
}
|
|
469
|
+
.ei-menu:before {
|
|
470
|
+
content: '\e978';
|
|
471
|
+
}
|
|
472
|
+
.ei-minus:before {
|
|
473
|
+
content: '\e979';
|
|
474
|
+
}
|
|
475
|
+
.ei-mobius:before {
|
|
476
|
+
content: '\e97a';
|
|
477
|
+
}
|
|
478
|
+
.ei-monitor-chart:before {
|
|
479
|
+
content: '\e97b';
|
|
480
|
+
}
|
|
481
|
+
.ei-monitor-grid:before {
|
|
482
|
+
content: '\e97c';
|
|
483
|
+
}
|
|
484
|
+
.ei-monitor:before {
|
|
485
|
+
content: '\e97d';
|
|
486
|
+
}
|
|
487
|
+
.ei-moon:before {
|
|
488
|
+
content: '\e97e';
|
|
489
|
+
}
|
|
490
|
+
.ei-network-check:before {
|
|
491
|
+
content: '\e97f';
|
|
492
|
+
}
|
|
493
|
+
.ei-network-division:before {
|
|
494
|
+
content: '\e980';
|
|
495
|
+
}
|
|
496
|
+
.ei-network-oneway:before {
|
|
497
|
+
content: '\e981';
|
|
498
|
+
}
|
|
499
|
+
.ei-network-twoway:before {
|
|
500
|
+
content: '\e982';
|
|
501
|
+
}
|
|
502
|
+
.ei-node:before {
|
|
503
|
+
content: '\e983';
|
|
504
|
+
}
|
|
505
|
+
.ei-notice:before {
|
|
506
|
+
content: '\e984';
|
|
507
|
+
}
|
|
508
|
+
.ei-panel-out:before {
|
|
509
|
+
content: '\e985';
|
|
510
|
+
}
|
|
511
|
+
.ei-pencil:before {
|
|
512
|
+
content: '\e986';
|
|
513
|
+
}
|
|
514
|
+
.ei-piece:before {
|
|
515
|
+
content: '\e987';
|
|
516
|
+
}
|
|
517
|
+
.ei-pig:before {
|
|
518
|
+
content: '\e988';
|
|
519
|
+
}
|
|
520
|
+
.ei-pin:before {
|
|
521
|
+
content: '\e989';
|
|
522
|
+
}
|
|
523
|
+
.ei-plug:before {
|
|
524
|
+
content: '\e98a';
|
|
525
|
+
}
|
|
526
|
+
.ei-plus:before {
|
|
527
|
+
content: '\e98b';
|
|
528
|
+
}
|
|
529
|
+
.ei-printer:before {
|
|
530
|
+
content: '\e98c';
|
|
531
|
+
}
|
|
532
|
+
.ei-r:before {
|
|
533
|
+
content: '\e98d';
|
|
534
|
+
}
|
|
535
|
+
.ei-radio-off:before {
|
|
536
|
+
content: '\e98e';
|
|
537
|
+
}
|
|
538
|
+
.ei-radio-off2:before {
|
|
539
|
+
content: '\e98f';
|
|
540
|
+
}
|
|
541
|
+
.ei-radio-on:before {
|
|
542
|
+
content: '\e990';
|
|
543
|
+
}
|
|
544
|
+
.ei-radio-on2:before {
|
|
545
|
+
content: '\e991';
|
|
546
|
+
}
|
|
547
|
+
.ei-redo:before {
|
|
548
|
+
content: '\e992';
|
|
549
|
+
}
|
|
550
|
+
.ei-refresh:before {
|
|
551
|
+
content: '\e993';
|
|
552
|
+
}
|
|
553
|
+
.ei-refresh2:before {
|
|
554
|
+
content: '\e994';
|
|
555
|
+
}
|
|
556
|
+
.ei-registration:before {
|
|
557
|
+
content: '\e995';
|
|
558
|
+
}
|
|
559
|
+
.ei-replicaset:before {
|
|
560
|
+
content: '\e996';
|
|
561
|
+
}
|
|
562
|
+
.ei-s-arrow-down:before {
|
|
563
|
+
content: '\e997';
|
|
564
|
+
}
|
|
565
|
+
.ei-s-arrow-left:before {
|
|
566
|
+
content: '\e998';
|
|
567
|
+
}
|
|
568
|
+
.ei-s-arrow-right:before {
|
|
569
|
+
content: '\e999';
|
|
570
|
+
}
|
|
571
|
+
.ei-s-arrow-up:before {
|
|
572
|
+
content: '\e99a';
|
|
573
|
+
}
|
|
574
|
+
.ei-s-back:before {
|
|
575
|
+
content: '\e99b';
|
|
576
|
+
}
|
|
577
|
+
.ei-s-backward:before {
|
|
578
|
+
content: '\e99c';
|
|
579
|
+
}
|
|
580
|
+
.ei-s-close:before {
|
|
581
|
+
content: '\e99d';
|
|
582
|
+
}
|
|
583
|
+
.ei-s-double-down:before {
|
|
584
|
+
content: '\e99e';
|
|
585
|
+
}
|
|
586
|
+
.ei-s-double-left:before {
|
|
587
|
+
content: '\e99f';
|
|
588
|
+
}
|
|
589
|
+
.ei-s-double-right:before {
|
|
590
|
+
content: '\e9a0';
|
|
591
|
+
}
|
|
592
|
+
.ei-s-double-up:before {
|
|
593
|
+
content: '\e9a1';
|
|
594
|
+
}
|
|
595
|
+
.ei-s-forward:before {
|
|
596
|
+
content: '\e9a2';
|
|
597
|
+
}
|
|
598
|
+
.ei-s-hamburger:before {
|
|
599
|
+
content: '\e9a3';
|
|
600
|
+
}
|
|
601
|
+
.ei-s-minus:before {
|
|
602
|
+
content: '\e9a4';
|
|
603
|
+
}
|
|
604
|
+
.ei-s-panel-out:before {
|
|
605
|
+
content: '\e9a5';
|
|
606
|
+
}
|
|
607
|
+
.ei-s-pause:before {
|
|
608
|
+
content: '\e9a6';
|
|
609
|
+
}
|
|
610
|
+
.ei-s-play:before {
|
|
611
|
+
content: '\e9a7';
|
|
612
|
+
}
|
|
613
|
+
.ei-s-plus:before {
|
|
614
|
+
content: '\e9a8';
|
|
615
|
+
}
|
|
616
|
+
.ei-s-resume:before {
|
|
617
|
+
content: '\e9a9';
|
|
618
|
+
}
|
|
619
|
+
.ei-s-square-minus:before {
|
|
620
|
+
content: '\e9aa';
|
|
621
|
+
}
|
|
622
|
+
.ei-s-square-plus:before {
|
|
623
|
+
content: '\e9ab';
|
|
624
|
+
}
|
|
625
|
+
.ei-s-step-backward:before {
|
|
626
|
+
content: '\e9ac';
|
|
627
|
+
}
|
|
628
|
+
.ei-s-step-forward:before {
|
|
629
|
+
content: '\e9ad';
|
|
630
|
+
}
|
|
631
|
+
.ei-s-stop:before {
|
|
632
|
+
content: '\e9ae';
|
|
633
|
+
}
|
|
634
|
+
.ei-s-time-backward:before {
|
|
635
|
+
content: '\e9af';
|
|
636
|
+
}
|
|
637
|
+
.ei-save:before {
|
|
638
|
+
content: '\e9b0';
|
|
639
|
+
}
|
|
640
|
+
.ei-search-chart:before {
|
|
641
|
+
content: '\e9b1';
|
|
642
|
+
}
|
|
643
|
+
.ei-search:before {
|
|
644
|
+
content: '\e9b2';
|
|
645
|
+
}
|
|
646
|
+
.ei-search2:before {
|
|
647
|
+
content: '\e9b3';
|
|
648
|
+
}
|
|
649
|
+
.ei-server:before {
|
|
650
|
+
content: '\e9b4';
|
|
651
|
+
}
|
|
652
|
+
.ei-server2:before {
|
|
653
|
+
content: '\e9b5';
|
|
654
|
+
}
|
|
655
|
+
.ei-share:before {
|
|
656
|
+
content: '\e9b6';
|
|
657
|
+
}
|
|
658
|
+
.ei-shovel:before {
|
|
659
|
+
content: '\e9b7';
|
|
660
|
+
}
|
|
661
|
+
.ei-spark:before {
|
|
662
|
+
content: '\e9b8';
|
|
663
|
+
}
|
|
664
|
+
.ei-spinner:before {
|
|
665
|
+
content: '\e9b9';
|
|
666
|
+
}
|
|
667
|
+
.ei-square-arrow-down:before {
|
|
668
|
+
content: '\e9ba';
|
|
669
|
+
}
|
|
670
|
+
.ei-square-arrow-left:before {
|
|
671
|
+
content: '\e9bb';
|
|
672
|
+
}
|
|
673
|
+
.ei-square-arrow-right:before {
|
|
674
|
+
content: '\e9bc';
|
|
675
|
+
}
|
|
676
|
+
.ei-square-arrow-up:before {
|
|
677
|
+
content: '\e9bd';
|
|
678
|
+
}
|
|
679
|
+
.ei-square-double-down:before {
|
|
680
|
+
content: '\e9be';
|
|
681
|
+
}
|
|
682
|
+
.ei-square-double-left:before {
|
|
683
|
+
content: '\e9bf';
|
|
684
|
+
}
|
|
685
|
+
.ei-square-double-right:before {
|
|
686
|
+
content: '\e9c0';
|
|
687
|
+
}
|
|
688
|
+
.ei-square-double-up:before {
|
|
689
|
+
content: '\e9c1';
|
|
690
|
+
}
|
|
691
|
+
.ei-square-minus:before {
|
|
692
|
+
content: '\e9c2';
|
|
693
|
+
}
|
|
694
|
+
.ei-square-plus:before {
|
|
695
|
+
content: '\e9c3';
|
|
696
|
+
}
|
|
697
|
+
.ei-sun:before {
|
|
698
|
+
content: '\e9c4';
|
|
699
|
+
}
|
|
700
|
+
.ei-terminal:before {
|
|
701
|
+
content: '\e9c5';
|
|
702
|
+
}
|
|
703
|
+
.ei-time-line:before {
|
|
704
|
+
content: '\e9c6';
|
|
705
|
+
}
|
|
706
|
+
.ei-time:before {
|
|
707
|
+
content: '\e9c7';
|
|
708
|
+
}
|
|
709
|
+
.ei-time2:before {
|
|
710
|
+
content: '\e9c8';
|
|
711
|
+
}
|
|
712
|
+
.ei-timeline:before {
|
|
713
|
+
content: '\e9c9';
|
|
714
|
+
}
|
|
715
|
+
.ei-tool:before {
|
|
716
|
+
content: '\e9ca';
|
|
717
|
+
}
|
|
718
|
+
.ei-topology:before {
|
|
719
|
+
content: '\e9cb';
|
|
720
|
+
}
|
|
721
|
+
.ei-trash:before {
|
|
722
|
+
content: '\e9cc';
|
|
723
|
+
}
|
|
724
|
+
.ei-trash2:before {
|
|
725
|
+
content: '\e9cd';
|
|
726
|
+
}
|
|
727
|
+
.ei-triangle-down:before {
|
|
728
|
+
content: '\e9ce';
|
|
729
|
+
}
|
|
730
|
+
.ei-triangle-up:before {
|
|
731
|
+
content: '\e9cf';
|
|
732
|
+
}
|
|
733
|
+
.ei-undo:before {
|
|
734
|
+
content: '\e9d0';
|
|
735
|
+
}
|
|
736
|
+
.ei-unlock:before {
|
|
737
|
+
content: '\e9d1';
|
|
738
|
+
}
|
|
739
|
+
.ei-unlock2:before {
|
|
740
|
+
content: '\e9d2';
|
|
741
|
+
}
|
|
742
|
+
.ei-upload:before {
|
|
743
|
+
content: '\e9d3';
|
|
744
|
+
}
|
|
745
|
+
.ei-user-check:before {
|
|
746
|
+
content: '\e9d4';
|
|
747
|
+
}
|
|
748
|
+
.ei-user-delete:before {
|
|
749
|
+
content: '\e9d5';
|
|
750
|
+
}
|
|
751
|
+
.ei-user-minus:before {
|
|
752
|
+
content: '\e9d6';
|
|
753
|
+
}
|
|
754
|
+
.ei-user-plus:before {
|
|
755
|
+
content: '\e9d7';
|
|
756
|
+
}
|
|
757
|
+
.ei-user-plus2:before {
|
|
758
|
+
content: '\e9d8';
|
|
759
|
+
}
|
|
760
|
+
.ei-user:before {
|
|
761
|
+
content: '\e9d9';
|
|
762
|
+
}
|
|
763
|
+
.ei-user2:before {
|
|
764
|
+
content: '\e9da';
|
|
765
|
+
}
|
|
766
|
+
.ei-warning:before {
|
|
767
|
+
content: '\e9db';
|
|
768
|
+
}
|
|
769
|
+
.ei-warning2:before {
|
|
770
|
+
content: '\e9dc';
|
|
771
|
+
}
|
|
772
|
+
.ei-warning3:before {
|
|
773
|
+
content: '\e9dd';
|
|
774
|
+
}
|
|
775
|
+
.ei-window-maximize:before {
|
|
776
|
+
content: '\e9e8';
|
|
777
|
+
}
|
|
778
|
+
.ei-window-minimize:before {
|
|
779
|
+
content: '\e9df';
|
|
780
|
+
}
|
|
781
|
+
.ei-window:before {
|
|
782
|
+
content: '\e9e0';
|
|
783
|
+
}
|
|
784
|
+
.ei-workflow:before {
|
|
785
|
+
content: '\e9e1';
|
|
786
|
+
}
|
|
787
|
+
.ei-zoomin:before {
|
|
788
|
+
content: '\e9e2';
|
|
789
|
+
}
|
|
790
|
+
.ei-zoomout:before {
|
|
791
|
+
content: '\e9e3';
|
|
792
|
+
}
|