@progress/kendo-font-icons 0.1.0 → 0.3.0
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/icon-list.json +2596 -2599
- package/dist/index.css +1262 -978
- package/dist/kendo-font-icons.ttf +0 -0
- package/package.json +5 -4
- package/scss/_font.scss +1 -4
- package/scss/_icons.scss +73 -2
- package/scss/_variables.scss +7 -5
- package/scss/index.scss +72 -5
- package/CHANGELOG.md +0 -46
- package/scss/_core.scss +0 -62
package/dist/index.css
CHANGED
|
@@ -1,3804 +1,4088 @@
|
|
|
1
1
|
@font-face {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
font-family: "WebComponentsIcons";
|
|
3
|
+
font-style: normal;
|
|
4
|
+
font-weight: normal;
|
|
5
|
+
src: url("kendo-font-icons.ttf") format("truetype");
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.k-icon {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
9
|
+
width: 1em;
|
|
10
|
+
height: 1em;
|
|
11
|
+
outline: 0;
|
|
12
|
+
font-size: 16px;
|
|
13
|
+
font-family: "WebComponentsIcons";
|
|
14
|
+
font-style: normal;
|
|
15
|
+
font-variant: normal;
|
|
16
|
+
font-weight: normal;
|
|
17
|
+
line-height: 1;
|
|
18
|
+
speak: none;
|
|
19
|
+
text-transform: none;
|
|
20
|
+
text-decoration: none;
|
|
21
|
+
flex-shrink: 0;
|
|
22
|
+
display: inline-flex;
|
|
23
|
+
flex-flow: row nowrap;
|
|
24
|
+
align-items: center;
|
|
25
|
+
justify-content: center;
|
|
26
|
+
vertical-align: middle;
|
|
27
|
+
position: relative;
|
|
28
|
+
-moz-osx-font-smoothing: grayscale;
|
|
29
|
+
-webkit-font-smoothing: antialiased;
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
.k-icon:hover, .k-icon:focus {
|
|
32
|
-
|
|
33
|
+
text-decoration: none;
|
|
33
34
|
}
|
|
34
35
|
|
|
35
36
|
.k-svg-icon {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
37
|
+
width: 1em;
|
|
38
|
+
height: 1em;
|
|
39
|
+
outline: 0;
|
|
40
|
+
line-height: 1;
|
|
41
|
+
display: inline-flex;
|
|
42
|
+
flex-flow: row nowrap;
|
|
43
|
+
align-items: center;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
vertical-align: middle;
|
|
46
|
+
position: relative;
|
|
42
47
|
}
|
|
43
48
|
|
|
44
49
|
.k-svg-icon > svg {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.k-i-none {
|
|
50
|
-
color: transparent;
|
|
50
|
+
fill: currentColor;
|
|
51
|
+
flex: 1 1 auto;
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
.k-i-none::before {
|
|
54
|
-
|
|
55
|
-
display: none;
|
|
55
|
+
display: none !important;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
.k-icon-xs {
|
|
59
|
-
|
|
59
|
+
font-size: calc( 16px * .5);
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
.k-icon-sm {
|
|
63
|
-
|
|
63
|
+
font-size: calc( 16px * .75);
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
.k-icon-md {
|
|
67
|
-
|
|
67
|
+
font-size: calc( 16px * 2);
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
.k-icon-lg {
|
|
71
|
-
|
|
71
|
+
font-size: calc( 16px * 3);
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
.k-icon-xl {
|
|
75
|
-
|
|
75
|
+
font-size: calc( 16px * 4);
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
.k-i-caret-tr::before {
|
|
79
|
-
|
|
79
|
+
content: "\e000";
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
.k-i-arrow-45-up-right::before {
|
|
83
|
-
|
|
83
|
+
content: "\e000";
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
.k-i-collapse-ne::before {
|
|
87
|
-
|
|
87
|
+
content: "\e000";
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
.k-i-resize-ne::before {
|
|
91
|
-
|
|
91
|
+
content: "\e000";
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
.k-i-caret-br::before {
|
|
95
|
-
|
|
95
|
+
content: "\e001";
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
.k-i-arrow-45-down-right::before {
|
|
99
|
-
|
|
99
|
+
content: "\e001";
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
.k-i-collapse-se::before {
|
|
103
|
-
|
|
103
|
+
content: "\e001";
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
.k-i-resize-se::before {
|
|
107
|
-
|
|
107
|
+
content: "\e001";
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
.k-i-caret-bl::before {
|
|
111
|
-
|
|
111
|
+
content: "\e002";
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
.k-i-arrow-45-down-left::before {
|
|
115
|
-
|
|
115
|
+
content: "\e002";
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
.k-i-collapse-sw::before {
|
|
119
|
-
|
|
119
|
+
content: "\e002";
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
.k-i-resize-sw::before {
|
|
123
|
-
|
|
123
|
+
content: "\e002";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
.k-i-caret-tl::before {
|
|
127
|
-
|
|
127
|
+
content: "\e003";
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
.k-i-arrow-45-up-left::before {
|
|
131
|
-
|
|
131
|
+
content: "\e003";
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
.k-i-collapse-nw::before {
|
|
135
|
-
|
|
135
|
+
content: "\e003";
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
.k-i-resize-nw::before {
|
|
139
|
-
|
|
139
|
+
content: "\e003";
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
.k-i-caret-alt-up::before {
|
|
143
|
-
|
|
143
|
+
content: "\e004";
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
.k-i-arrow-60-up::before {
|
|
147
|
-
|
|
147
|
+
content: "\e004";
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
.k-i-arrow-n::before {
|
|
151
|
-
|
|
151
|
+
content: "\e004";
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
.k-i-kpi-trend-increase::before {
|
|
155
|
-
|
|
155
|
+
content: "\e004";
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
.k-i-expand-n::before {
|
|
159
|
-
|
|
159
|
+
content: "\e004";
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
.k-i-sarrow-n::before {
|
|
163
|
-
|
|
163
|
+
content: "\e004";
|
|
164
164
|
}
|
|
165
165
|
|
|
166
166
|
.k-i-caret-alt-right::before {
|
|
167
|
-
|
|
167
|
+
content: "\e005";
|
|
168
168
|
}
|
|
169
169
|
|
|
170
170
|
.k-i-arrow-60-right::before {
|
|
171
|
-
|
|
171
|
+
content: "\e005";
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
.k-i-arrow-e::before {
|
|
175
|
-
|
|
175
|
+
content: "\e005";
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
.k-i-expand::before {
|
|
179
|
-
|
|
179
|
+
content: "\e005";
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
.k-i-expand-e::before {
|
|
183
|
-
|
|
183
|
+
content: "\e005";
|
|
184
184
|
}
|
|
185
185
|
|
|
186
186
|
.k-i-sarrow-e::before {
|
|
187
|
-
|
|
187
|
+
content: "\e005";
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
.k-i-caret-alt-down::before {
|
|
191
|
-
|
|
191
|
+
content: "\e006";
|
|
192
192
|
}
|
|
193
193
|
|
|
194
194
|
.k-i-arrow-60-down::before {
|
|
195
|
-
|
|
195
|
+
content: "\e006";
|
|
196
196
|
}
|
|
197
197
|
|
|
198
198
|
.k-i-arrow-s::before {
|
|
199
|
-
|
|
199
|
+
content: "\e006";
|
|
200
200
|
}
|
|
201
201
|
|
|
202
202
|
.k-i-kpi-trend-decrease::before {
|
|
203
|
-
|
|
203
|
+
content: "\e006";
|
|
204
204
|
}
|
|
205
205
|
|
|
206
206
|
.k-i-expand-s::before {
|
|
207
|
-
|
|
207
|
+
content: "\e006";
|
|
208
208
|
}
|
|
209
209
|
|
|
210
210
|
.k-i-collapse::before {
|
|
211
|
-
|
|
211
|
+
content: "\e006";
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
.k-i-sarrow-s::before {
|
|
215
|
-
|
|
215
|
+
content: "\e006";
|
|
216
216
|
}
|
|
217
217
|
|
|
218
218
|
.k-i-caret-alt-left::before {
|
|
219
|
-
|
|
219
|
+
content: "\e007";
|
|
220
220
|
}
|
|
221
221
|
|
|
222
222
|
.k-i-arrow-60-left::before {
|
|
223
|
-
|
|
223
|
+
content: "\e007";
|
|
224
224
|
}
|
|
225
225
|
|
|
226
226
|
.k-i-arrow-w::before {
|
|
227
|
-
|
|
227
|
+
content: "\e007";
|
|
228
228
|
}
|
|
229
229
|
|
|
230
230
|
.k-i-expand-w::before {
|
|
231
|
-
|
|
231
|
+
content: "\e007";
|
|
232
232
|
}
|
|
233
233
|
|
|
234
234
|
.k-i-sarrow-w::before {
|
|
235
|
-
|
|
235
|
+
content: "\e007";
|
|
236
236
|
}
|
|
237
237
|
|
|
238
238
|
.k-i-caret-alt-to-top::before {
|
|
239
|
-
|
|
239
|
+
content: "\e008";
|
|
240
240
|
}
|
|
241
241
|
|
|
242
242
|
.k-i-arrow-end-up::before {
|
|
243
|
-
|
|
243
|
+
content: "\e008";
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
.k-i-seek-n::before {
|
|
247
|
-
|
|
247
|
+
content: "\e008";
|
|
248
248
|
}
|
|
249
249
|
|
|
250
250
|
.k-i-caret-alt-to-right::before {
|
|
251
|
-
|
|
251
|
+
content: "\e009";
|
|
252
252
|
}
|
|
253
253
|
|
|
254
254
|
.k-i-arrow-end-right::before {
|
|
255
|
-
|
|
255
|
+
content: "\e009";
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
.k-i-seek-e::before {
|
|
259
|
-
|
|
259
|
+
content: "\e009";
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
.k-i-caret-alt-to-bottom::before {
|
|
263
|
-
|
|
263
|
+
content: "\e00a";
|
|
264
264
|
}
|
|
265
265
|
|
|
266
266
|
.k-i-arrow-end-down::before {
|
|
267
|
-
|
|
267
|
+
content: "\e00a";
|
|
268
268
|
}
|
|
269
269
|
|
|
270
270
|
.k-i-seek-s::before {
|
|
271
|
-
|
|
271
|
+
content: "\e00a";
|
|
272
272
|
}
|
|
273
273
|
|
|
274
274
|
.k-i-caret-alt-to-left::before {
|
|
275
|
-
|
|
275
|
+
content: "\e00b";
|
|
276
276
|
}
|
|
277
277
|
|
|
278
278
|
.k-i-arrow-end-left::before {
|
|
279
|
-
|
|
279
|
+
content: "\e00b";
|
|
280
280
|
}
|
|
281
281
|
|
|
282
282
|
.k-i-seek-w::before {
|
|
283
|
-
|
|
283
|
+
content: "\e00b";
|
|
284
284
|
}
|
|
285
285
|
|
|
286
286
|
.k-i-caret-double-alt-up::before {
|
|
287
|
-
|
|
287
|
+
content: "\e00c";
|
|
288
288
|
}
|
|
289
289
|
|
|
290
290
|
.k-i-arrow-double-60-up::before {
|
|
291
|
-
|
|
291
|
+
content: "\e00c";
|
|
292
292
|
}
|
|
293
293
|
|
|
294
294
|
.k-i-arrow-seek-up::before {
|
|
295
|
-
|
|
295
|
+
content: "\e00c";
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
.k-i-caret-double-alt-right::before {
|
|
299
|
-
|
|
299
|
+
content: "\e00d";
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
.k-i-arrow-double-60-right::before {
|
|
303
|
-
|
|
303
|
+
content: "\e00d";
|
|
304
304
|
}
|
|
305
305
|
|
|
306
306
|
.k-i-arrow-seek-right::before {
|
|
307
|
-
|
|
307
|
+
content: "\e00d";
|
|
308
308
|
}
|
|
309
309
|
|
|
310
310
|
.k-i-forward-sm::before {
|
|
311
|
-
|
|
311
|
+
content: "\e00d";
|
|
312
312
|
}
|
|
313
313
|
|
|
314
314
|
.k-i-caret-double-alt-down::before {
|
|
315
|
-
|
|
315
|
+
content: "\e00e";
|
|
316
316
|
}
|
|
317
317
|
|
|
318
318
|
.k-i-arrow-double-60-down::before {
|
|
319
|
-
|
|
319
|
+
content: "\e00e";
|
|
320
320
|
}
|
|
321
321
|
|
|
322
322
|
.k-i-arrow-seek-down::before {
|
|
323
|
-
|
|
323
|
+
content: "\e00e";
|
|
324
324
|
}
|
|
325
325
|
|
|
326
326
|
.k-i-caret-double-alt-left::before {
|
|
327
|
-
|
|
327
|
+
content: "\e00f";
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
.k-i-arrow-double-60-left::before {
|
|
331
|
-
|
|
331
|
+
content: "\e00f";
|
|
332
332
|
}
|
|
333
333
|
|
|
334
334
|
.k-i-arrow-seek-left::before {
|
|
335
|
-
|
|
335
|
+
content: "\e00f";
|
|
336
336
|
}
|
|
337
337
|
|
|
338
338
|
.k-i-rewind-sm::before {
|
|
339
|
-
|
|
339
|
+
content: "\e00f";
|
|
340
340
|
}
|
|
341
341
|
|
|
342
342
|
.k-i-caret-alt-expand::before {
|
|
343
|
-
|
|
343
|
+
content: "\e010";
|
|
344
344
|
}
|
|
345
345
|
|
|
346
346
|
.k-i-arrows-kpi::before {
|
|
347
|
-
|
|
347
|
+
content: "\e010";
|
|
348
348
|
}
|
|
349
349
|
|
|
350
350
|
.k-i-kpi::before {
|
|
351
|
-
|
|
351
|
+
content: "\e010";
|
|
352
352
|
}
|
|
353
353
|
|
|
354
354
|
.k-i-caret-alt-sort::before {
|
|
355
|
-
|
|
355
|
+
content: "\e010";
|
|
356
356
|
}
|
|
357
357
|
|
|
358
358
|
.k-i-arrows-no-change::before {
|
|
359
|
-
|
|
359
|
+
content: "\e011";
|
|
360
360
|
}
|
|
361
361
|
|
|
362
362
|
.k-i-arrow-overflow-down::before {
|
|
363
|
-
|
|
363
|
+
content: "\e012";
|
|
364
364
|
}
|
|
365
365
|
|
|
366
366
|
.k-i-chevron-up::before {
|
|
367
|
-
|
|
367
|
+
content: "\e013";
|
|
368
368
|
}
|
|
369
369
|
|
|
370
370
|
.k-i-arrow-chevron-up::before {
|
|
371
|
-
|
|
371
|
+
content: "\e013";
|
|
372
372
|
}
|
|
373
373
|
|
|
374
374
|
.k-i-arrowhead-n::before {
|
|
375
|
-
|
|
375
|
+
content: "\e013";
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
.k-i-chevron-right::before {
|
|
379
|
-
|
|
379
|
+
content: "\e014";
|
|
380
380
|
}
|
|
381
381
|
|
|
382
382
|
.k-i-arrow-chevron-right::before {
|
|
383
|
-
|
|
383
|
+
content: "\e014";
|
|
384
384
|
}
|
|
385
385
|
|
|
386
386
|
.k-i-arrowhead-e::before {
|
|
387
|
-
|
|
387
|
+
content: "\e014";
|
|
388
388
|
}
|
|
389
389
|
|
|
390
390
|
.k-i-chevron-down::before {
|
|
391
|
-
|
|
391
|
+
content: "\e015";
|
|
392
392
|
}
|
|
393
393
|
|
|
394
394
|
.k-i-arrow-chevron-down::before {
|
|
395
|
-
|
|
395
|
+
content: "\e015";
|
|
396
396
|
}
|
|
397
397
|
|
|
398
398
|
.k-i-arrowhead-s::before {
|
|
399
|
-
|
|
399
|
+
content: "\e015";
|
|
400
400
|
}
|
|
401
401
|
|
|
402
402
|
.k-i-chevron-left::before {
|
|
403
|
-
|
|
403
|
+
content: "\e016";
|
|
404
404
|
}
|
|
405
405
|
|
|
406
406
|
.k-i-arrow-chevron-left::before {
|
|
407
|
-
|
|
407
|
+
content: "\e016";
|
|
408
408
|
}
|
|
409
409
|
|
|
410
410
|
.k-i-arrowhead-w::before {
|
|
411
|
-
|
|
411
|
+
content: "\e016";
|
|
412
412
|
}
|
|
413
413
|
|
|
414
414
|
.k-i-arrow-up::before {
|
|
415
|
-
|
|
415
|
+
content: "\e017";
|
|
416
416
|
}
|
|
417
417
|
|
|
418
418
|
.k-i-arrow-right::before {
|
|
419
|
-
|
|
419
|
+
content: "\e018";
|
|
420
420
|
}
|
|
421
421
|
|
|
422
422
|
.k-i-arrow-down::before {
|
|
423
|
-
|
|
423
|
+
content: "\e019";
|
|
424
424
|
}
|
|
425
425
|
|
|
426
426
|
.k-i-arrow-left::before {
|
|
427
|
-
|
|
427
|
+
content: "\e01a";
|
|
428
428
|
}
|
|
429
429
|
|
|
430
430
|
.k-i-level-down::before {
|
|
431
|
-
|
|
431
|
+
content: "\e01b";
|
|
432
432
|
}
|
|
433
433
|
|
|
434
434
|
.k-i-arrow-drill::before {
|
|
435
|
-
|
|
435
|
+
content: "\e01b";
|
|
436
436
|
}
|
|
437
437
|
|
|
438
438
|
.k-i-level-up::before {
|
|
439
|
-
|
|
439
|
+
content: "\e01c";
|
|
440
440
|
}
|
|
441
441
|
|
|
442
442
|
.k-i-arrow-parent::before {
|
|
443
|
-
|
|
443
|
+
content: "\e01c";
|
|
444
444
|
}
|
|
445
445
|
|
|
446
446
|
.k-i-level-to-top::before {
|
|
447
|
-
|
|
447
|
+
content: "\e01d";
|
|
448
448
|
}
|
|
449
449
|
|
|
450
450
|
.k-i-arrow-root::before {
|
|
451
|
-
|
|
451
|
+
content: "\e01d";
|
|
452
452
|
}
|
|
453
453
|
|
|
454
454
|
.k-i-level-root::before {
|
|
455
|
-
|
|
455
|
+
content: "\e01d";
|
|
456
456
|
}
|
|
457
457
|
|
|
458
458
|
.k-i-col-resize::before {
|
|
459
|
-
|
|
459
|
+
content: "\e01e";
|
|
460
460
|
}
|
|
461
461
|
|
|
462
462
|
.k-i-arrows-resizing::before {
|
|
463
|
-
|
|
463
|
+
content: "\e01e";
|
|
464
464
|
}
|
|
465
465
|
|
|
466
466
|
.k-i-arrows-axes::before {
|
|
467
|
-
|
|
467
|
+
content: "\e01f";
|
|
468
468
|
}
|
|
469
469
|
|
|
470
470
|
.k-i-arrows-dimensions::before {
|
|
471
|
-
|
|
471
|
+
content: "\e01f";
|
|
472
472
|
}
|
|
473
473
|
|
|
474
474
|
.k-i-dimension::before {
|
|
475
|
-
|
|
475
|
+
content: "\e01f";
|
|
476
476
|
}
|
|
477
477
|
|
|
478
478
|
.k-i-arrows-swap::before {
|
|
479
|
-
|
|
479
|
+
content: "\e020";
|
|
480
480
|
}
|
|
481
481
|
|
|
482
482
|
.k-i-drag-and-drop::before {
|
|
483
|
-
|
|
483
|
+
content: "\e021";
|
|
484
484
|
}
|
|
485
485
|
|
|
486
486
|
.k-i-categorize::before {
|
|
487
|
-
|
|
487
|
+
content: "\e022";
|
|
488
488
|
}
|
|
489
489
|
|
|
490
490
|
.k-i-grid::before {
|
|
491
|
-
|
|
491
|
+
content: "\e023";
|
|
492
492
|
}
|
|
493
493
|
|
|
494
494
|
.k-i-grid-layout::before {
|
|
495
|
-
|
|
495
|
+
content: "\e024";
|
|
496
496
|
}
|
|
497
497
|
|
|
498
498
|
.k-i-group::before {
|
|
499
|
-
|
|
499
|
+
content: "\e025";
|
|
500
500
|
}
|
|
501
501
|
|
|
502
502
|
.k-i-ungroup::before {
|
|
503
|
-
|
|
503
|
+
content: "\e026";
|
|
504
504
|
}
|
|
505
505
|
|
|
506
|
-
.k-i-
|
|
507
|
-
|
|
506
|
+
.k-i-handle-drag::before {
|
|
507
|
+
content: "\e027";
|
|
508
508
|
}
|
|
509
509
|
|
|
510
510
|
.k-i-layout::before {
|
|
511
|
-
|
|
511
|
+
content: "\e028";
|
|
512
512
|
}
|
|
513
513
|
|
|
514
514
|
.k-i-layout-1-by-4::before {
|
|
515
|
-
|
|
515
|
+
content: "\e029";
|
|
516
516
|
}
|
|
517
517
|
|
|
518
518
|
.k-i-layout-2-by-2::before {
|
|
519
|
-
|
|
519
|
+
content: "\e02a";
|
|
520
520
|
}
|
|
521
521
|
|
|
522
522
|
.k-i-page-layout::before {
|
|
523
|
-
|
|
523
|
+
content: "\e02a";
|
|
524
524
|
}
|
|
525
525
|
|
|
526
526
|
.k-i-layout-side-by-side::before {
|
|
527
|
-
|
|
527
|
+
content: "\e02b";
|
|
528
528
|
}
|
|
529
529
|
|
|
530
530
|
.k-i-layout-stacked::before {
|
|
531
|
-
|
|
531
|
+
content: "\e02c";
|
|
532
532
|
}
|
|
533
533
|
|
|
534
534
|
.k-i-columns::before {
|
|
535
|
-
|
|
535
|
+
content: "\e02d";
|
|
536
536
|
}
|
|
537
537
|
|
|
538
538
|
.k-i-rows::before {
|
|
539
|
-
|
|
539
|
+
content: "\e02e";
|
|
540
540
|
}
|
|
541
541
|
|
|
542
542
|
.k-i-reorder::before {
|
|
543
|
-
|
|
543
|
+
content: "\e02f";
|
|
544
544
|
}
|
|
545
545
|
|
|
546
546
|
.k-i-menu::before {
|
|
547
|
-
|
|
547
|
+
content: "\e030";
|
|
548
548
|
}
|
|
549
549
|
|
|
550
550
|
.k-i-hamburger::before {
|
|
551
|
-
|
|
551
|
+
content: "\e030";
|
|
552
552
|
}
|
|
553
553
|
|
|
554
554
|
.k-i-more-vertical::before {
|
|
555
|
-
|
|
555
|
+
content: "\e031";
|
|
556
556
|
}
|
|
557
557
|
|
|
558
558
|
.k-i-more-v::before {
|
|
559
|
-
|
|
559
|
+
content: "\e031";
|
|
560
560
|
}
|
|
561
561
|
|
|
562
562
|
.k-i-vbars::before {
|
|
563
|
-
|
|
563
|
+
content: "\e031";
|
|
564
564
|
}
|
|
565
565
|
|
|
566
566
|
.k-i-more-horizontal::before {
|
|
567
|
-
|
|
567
|
+
content: "\e032";
|
|
568
568
|
}
|
|
569
569
|
|
|
570
570
|
.k-i-more-h::before {
|
|
571
|
-
|
|
571
|
+
content: "\e032";
|
|
572
572
|
}
|
|
573
573
|
|
|
574
574
|
.k-i-hbars::before {
|
|
575
|
-
|
|
575
|
+
content: "\e032";
|
|
576
576
|
}
|
|
577
577
|
|
|
578
578
|
.k-i-overlap::before {
|
|
579
|
-
|
|
579
|
+
content: "\e033";
|
|
580
580
|
}
|
|
581
581
|
|
|
582
582
|
.k-i-home::before {
|
|
583
|
-
|
|
583
|
+
content: "\e034";
|
|
584
584
|
}
|
|
585
585
|
|
|
586
586
|
.k-i-root::before {
|
|
587
|
-
|
|
587
|
+
content: "\e034";
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.k-i-arrows-left-right::before {
|
|
591
|
+
content: "\e035";
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.k-i-arrows-top-bottom::before {
|
|
595
|
+
content: "\e036";
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.k-i-border-radius-bottom-left::before {
|
|
599
|
+
content: "\e037";
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.k-i-border-radius-bottom-right::before {
|
|
603
|
+
content: "\e038";
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.k-i-border-radius-top-left::before {
|
|
607
|
+
content: "\e039";
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.k-i-border-radius-top-right::before {
|
|
611
|
+
content: "\e03a";
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.k-i-border-radius::before {
|
|
615
|
+
content: "\e03b";
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.k-i-border-style-bottom::before {
|
|
619
|
+
content: "\e03c";
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.k-i-border-style-left::before {
|
|
623
|
+
content: "\e03d";
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.k-i-border-style-right::before {
|
|
627
|
+
content: "\e03e";
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.k-i-border-style-top::before {
|
|
631
|
+
content: "\e03f";
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.k-i-border-style::before {
|
|
635
|
+
content: "\e040";
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.k-i-box-sizing::before {
|
|
639
|
+
content: "\e041";
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.k-i-chevron-double-down::before {
|
|
643
|
+
content: "\e042";
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.k-i-chevron-double-left::before {
|
|
647
|
+
content: "\e043";
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.k-i-chevron-double-right::before {
|
|
651
|
+
content: "\e044";
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.k-i-chevron-double-up::before {
|
|
655
|
+
content: "\e045";
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.k-i-data-ods::before {
|
|
659
|
+
content: "\e046";
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
.k-i-display-Inline-block::before {
|
|
663
|
+
content: "\e047";
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.k-i-display-block::before {
|
|
667
|
+
content: "\e048";
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.k-i-display-flex::before {
|
|
671
|
+
content: "\e049";
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.k-i-display-inline-flex::before {
|
|
675
|
+
content: "\e04a";
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.k-i-droplet-slider::before {
|
|
679
|
+
content: "\e04b";
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.k-i-color-canvas::before {
|
|
683
|
+
content: "\e04b";
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.k-i-file-report::before {
|
|
687
|
+
content: "\e04c";
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.k-i-gap-column::before {
|
|
691
|
+
content: "\e04d";
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.k-i-gap-row::before {
|
|
695
|
+
content: "\e04e";
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
.k-i-handle-resize-alt::before {
|
|
699
|
+
content: "\e04f";
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
.k-i-handle-resize::before {
|
|
703
|
+
content: "\e050";
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.k-i-images::before {
|
|
707
|
+
content: "\e051";
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.k-i-letter-space::before {
|
|
711
|
+
content: "\e052";
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
.k-i-line-height::before {
|
|
715
|
+
content: "\e053";
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.k-i-list-latin-big::before {
|
|
719
|
+
content: "\e054";
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.k-i-list-latin-small::before {
|
|
723
|
+
content: "\e055";
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.k-i-list-roman-big::before {
|
|
727
|
+
content: "\e056";
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.k-i-list-roman-small::before {
|
|
731
|
+
content: "\e057";
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.k-i-list-unordered-outline::before {
|
|
735
|
+
content: "\e058";
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.k-i-list-unordered-square::before {
|
|
739
|
+
content: "\e059";
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.k-i-max-height::before {
|
|
743
|
+
content: "\e05a";
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.k-i-max-width::before {
|
|
747
|
+
content: "\e05b";
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.k-i-min-height::before {
|
|
751
|
+
content: "\e05c";
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
.k-i-min-width::before {
|
|
755
|
+
content: "\e05d";
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
.k-i-outline-offset::before {
|
|
759
|
+
content: "\e05e";
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
.k-i-outline-width::before {
|
|
763
|
+
content: "\e05f";
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
.k-i-padding-bottom::before {
|
|
767
|
+
content: "\e060";
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
.k-i-padding-left::before {
|
|
771
|
+
content: "\e061";
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
.k-i-padding-right::before {
|
|
775
|
+
content: "\e062";
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
.k-i-padding-top::before {
|
|
779
|
+
content: "\e063";
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.k-i-padding::before {
|
|
783
|
+
content: "\e064";
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.k-i-position-bottom::before {
|
|
787
|
+
content: "\e065";
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
.k-i-position-left::before {
|
|
791
|
+
content: "\e066";
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.k-i-position-right::before {
|
|
795
|
+
content: "\e067";
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
.k-i-position-top::before {
|
|
799
|
+
content: "\e068";
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.k-i-regular-expression::before {
|
|
803
|
+
content: "\e069";
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
.k-i-replace-all::before {
|
|
807
|
+
content: "\e06a";
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.k-i-replace-single::before {
|
|
811
|
+
content: "\e06b";
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.k-i-report-element::before {
|
|
815
|
+
content: "\e06c";
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.k-i-right-double-quotes::before {
|
|
819
|
+
content: "\e06d";
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.k-i-blockquote::before {
|
|
823
|
+
content: "\e06d";
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.k-i-whole-word::before {
|
|
827
|
+
content: "\e06e";
|
|
588
828
|
}
|
|
589
829
|
|
|
590
830
|
.k-i-undo::before {
|
|
591
|
-
|
|
831
|
+
content: "\e100";
|
|
592
832
|
}
|
|
593
833
|
|
|
594
834
|
.k-i-undo-large::before {
|
|
595
|
-
|
|
835
|
+
content: "\e100";
|
|
596
836
|
}
|
|
597
837
|
|
|
598
838
|
.k-i-redo::before {
|
|
599
|
-
|
|
839
|
+
content: "\e101";
|
|
600
840
|
}
|
|
601
841
|
|
|
602
842
|
.k-i-redo-large::before {
|
|
603
|
-
|
|
843
|
+
content: "\e101";
|
|
604
844
|
}
|
|
605
845
|
|
|
606
846
|
.k-i-arrow-rotate-ccw::before {
|
|
607
|
-
|
|
847
|
+
content: "\e102";
|
|
608
848
|
}
|
|
609
849
|
|
|
610
850
|
.k-i-reset::before {
|
|
611
|
-
|
|
851
|
+
content: "\e102";
|
|
612
852
|
}
|
|
613
853
|
|
|
614
854
|
.k-i-arrow-rotate-cw::before {
|
|
615
|
-
|
|
855
|
+
content: "\e103";
|
|
616
856
|
}
|
|
617
857
|
|
|
618
858
|
.k-i-reload::before {
|
|
619
|
-
|
|
859
|
+
content: "\e103";
|
|
620
860
|
}
|
|
621
861
|
|
|
622
862
|
.k-i-refresh::before {
|
|
623
|
-
|
|
863
|
+
content: "\e103";
|
|
624
864
|
}
|
|
625
865
|
|
|
626
866
|
.k-i-recurrence::before {
|
|
627
|
-
|
|
867
|
+
content: "\e103";
|
|
628
868
|
}
|
|
629
869
|
|
|
630
870
|
.k-i-arrows-repeat::before {
|
|
631
|
-
|
|
871
|
+
content: "\e103";
|
|
632
872
|
}
|
|
633
873
|
|
|
634
874
|
.k-i-arrows-no-repeat::before {
|
|
635
|
-
|
|
875
|
+
content: "\e104";
|
|
636
876
|
}
|
|
637
877
|
|
|
638
878
|
.k-i-non-recurrence::before {
|
|
639
|
-
|
|
879
|
+
content: "\e104";
|
|
640
880
|
}
|
|
641
881
|
|
|
642
882
|
.k-i-refresh-clear::before {
|
|
643
|
-
|
|
883
|
+
content: "\e104";
|
|
644
884
|
}
|
|
645
885
|
|
|
646
886
|
.k-i-arrow-rotate-ccw-small::before {
|
|
647
|
-
|
|
887
|
+
content: "\e105";
|
|
648
888
|
}
|
|
649
889
|
|
|
650
890
|
.k-i-reset-sm::before {
|
|
651
|
-
|
|
891
|
+
content: "\e105";
|
|
652
892
|
}
|
|
653
893
|
|
|
654
894
|
.k-i-arrow-rotate-cw-small::before {
|
|
655
|
-
|
|
895
|
+
content: "\e106";
|
|
656
896
|
}
|
|
657
897
|
|
|
658
898
|
.k-i-reload-sm::before {
|
|
659
|
-
|
|
899
|
+
content: "\e106";
|
|
660
900
|
}
|
|
661
901
|
|
|
662
902
|
.k-i-refresh-sm::before {
|
|
663
|
-
|
|
903
|
+
content: "\e106";
|
|
664
904
|
}
|
|
665
905
|
|
|
666
906
|
.k-i-recurrence-sm::before {
|
|
667
|
-
|
|
907
|
+
content: "\e106";
|
|
668
908
|
}
|
|
669
909
|
|
|
670
910
|
.k-i-arrows-repeat-sm::before {
|
|
671
|
-
|
|
911
|
+
content: "\e106";
|
|
672
912
|
}
|
|
673
913
|
|
|
674
914
|
.k-i-clock::before {
|
|
675
|
-
|
|
915
|
+
content: "\e107";
|
|
676
916
|
}
|
|
677
917
|
|
|
678
918
|
.k-i-calendar::before {
|
|
679
|
-
|
|
919
|
+
content: "\e108";
|
|
680
920
|
}
|
|
681
921
|
|
|
682
922
|
.k-i-save::before {
|
|
683
|
-
|
|
923
|
+
content: "\e109";
|
|
684
924
|
}
|
|
685
925
|
|
|
686
926
|
.k-i-floppy::before {
|
|
687
|
-
|
|
927
|
+
content: "\e109";
|
|
688
928
|
}
|
|
689
929
|
|
|
690
930
|
.k-i-print::before {
|
|
691
|
-
|
|
931
|
+
content: "\e10a";
|
|
692
932
|
}
|
|
693
933
|
|
|
694
934
|
.k-i-printer::before {
|
|
695
|
-
|
|
935
|
+
content: "\e10a";
|
|
696
936
|
}
|
|
697
937
|
|
|
698
938
|
.k-i-pencil::before {
|
|
699
|
-
|
|
939
|
+
content: "\e10b";
|
|
700
940
|
}
|
|
701
941
|
|
|
702
942
|
.k-i-edit::before {
|
|
703
|
-
|
|
943
|
+
content: "\e10b";
|
|
704
944
|
}
|
|
705
945
|
|
|
706
946
|
.k-i-trash::before {
|
|
707
|
-
|
|
947
|
+
content: "\e10c";
|
|
708
948
|
}
|
|
709
949
|
|
|
710
950
|
.k-i-delete::before {
|
|
711
|
-
|
|
951
|
+
content: "\e10c";
|
|
712
952
|
}
|
|
713
953
|
|
|
714
954
|
.k-i-paperclip::before {
|
|
715
|
-
|
|
955
|
+
content: "\e10d";
|
|
716
956
|
}
|
|
717
957
|
|
|
718
958
|
.k-i-attachment::before {
|
|
719
|
-
|
|
959
|
+
content: "\e10d";
|
|
720
960
|
}
|
|
721
961
|
|
|
722
962
|
.k-i-clip::before {
|
|
723
|
-
|
|
963
|
+
content: "\e10d";
|
|
724
964
|
}
|
|
725
965
|
|
|
726
966
|
.k-i-paperclip-alt::before {
|
|
727
|
-
|
|
967
|
+
content: "\e10e";
|
|
728
968
|
}
|
|
729
969
|
|
|
730
970
|
.k-i-attachment-45::before {
|
|
731
|
-
|
|
971
|
+
content: "\e10e";
|
|
732
972
|
}
|
|
733
973
|
|
|
734
974
|
.k-i-clip-45::before {
|
|
735
|
-
|
|
975
|
+
content: "\e10e";
|
|
736
976
|
}
|
|
737
977
|
|
|
738
978
|
.k-i-link::before {
|
|
739
|
-
|
|
979
|
+
content: "\e10f";
|
|
740
980
|
}
|
|
741
981
|
|
|
742
982
|
.k-i-link-horizontal::before {
|
|
743
|
-
|
|
983
|
+
content: "\e10f";
|
|
744
984
|
}
|
|
745
985
|
|
|
746
986
|
.k-i-hyperlink::before {
|
|
747
|
-
|
|
987
|
+
content: "\e10f";
|
|
748
988
|
}
|
|
749
989
|
|
|
750
990
|
.k-i-link-h::before {
|
|
751
|
-
|
|
991
|
+
content: "\e10f";
|
|
752
992
|
}
|
|
753
993
|
|
|
754
994
|
.k-i-unlink::before {
|
|
755
|
-
|
|
995
|
+
content: "\e110";
|
|
756
996
|
}
|
|
757
997
|
|
|
758
998
|
.k-i-unlink-horizontal::before {
|
|
759
|
-
|
|
999
|
+
content: "\e110";
|
|
760
1000
|
}
|
|
761
1001
|
|
|
762
1002
|
.k-i-hyperlink-remove::before {
|
|
763
|
-
|
|
1003
|
+
content: "\e110";
|
|
764
1004
|
}
|
|
765
1005
|
|
|
766
1006
|
.k-i-unlink-h::before {
|
|
767
|
-
|
|
1007
|
+
content: "\e110";
|
|
768
1008
|
}
|
|
769
1009
|
|
|
770
1010
|
.k-i-link-vertical::before {
|
|
771
|
-
|
|
1011
|
+
content: "\e111";
|
|
772
1012
|
}
|
|
773
1013
|
|
|
774
1014
|
.k-i-link-v::before {
|
|
775
|
-
|
|
1015
|
+
content: "\e111";
|
|
776
1016
|
}
|
|
777
1017
|
|
|
778
1018
|
.k-i-unlink-vertical::before {
|
|
779
|
-
|
|
1019
|
+
content: "\e112";
|
|
780
1020
|
}
|
|
781
1021
|
|
|
782
1022
|
.k-i-unlink-v::before {
|
|
783
|
-
|
|
1023
|
+
content: "\e112";
|
|
784
1024
|
}
|
|
785
1025
|
|
|
786
1026
|
.k-i-lock::before {
|
|
787
|
-
|
|
1027
|
+
content: "\e113";
|
|
788
1028
|
}
|
|
789
1029
|
|
|
790
1030
|
.k-i-unlock::before {
|
|
791
|
-
|
|
1031
|
+
content: "\e114";
|
|
792
1032
|
}
|
|
793
1033
|
|
|
794
1034
|
.k-i-cancel::before {
|
|
795
|
-
|
|
1035
|
+
content: "\e115";
|
|
796
1036
|
}
|
|
797
1037
|
|
|
798
1038
|
.k-i-cancel-outline::before {
|
|
799
|
-
|
|
1039
|
+
content: "\e116";
|
|
800
1040
|
}
|
|
801
1041
|
|
|
802
1042
|
.k-i-deny::before {
|
|
803
|
-
|
|
1043
|
+
content: "\e116";
|
|
804
1044
|
}
|
|
805
1045
|
|
|
806
1046
|
.k-i-cancel-circle::before {
|
|
807
|
-
|
|
1047
|
+
content: "\e117";
|
|
808
1048
|
}
|
|
809
1049
|
|
|
810
1050
|
.k-i-check::before {
|
|
811
|
-
|
|
1051
|
+
content: "\e118";
|
|
812
1052
|
}
|
|
813
1053
|
|
|
814
1054
|
.k-i-checkmark::before {
|
|
815
|
-
|
|
1055
|
+
content: "\e118";
|
|
816
1056
|
}
|
|
817
1057
|
|
|
818
1058
|
.k-i-tick::before {
|
|
819
|
-
|
|
1059
|
+
content: "\e118";
|
|
820
1060
|
}
|
|
821
1061
|
|
|
822
1062
|
.k-i-check-outline::before {
|
|
823
|
-
|
|
1063
|
+
content: "\e119";
|
|
824
1064
|
}
|
|
825
1065
|
|
|
826
1066
|
.k-i-checkmark-outline::before {
|
|
827
|
-
|
|
1067
|
+
content: "\e119";
|
|
828
1068
|
}
|
|
829
1069
|
|
|
830
1070
|
.k-i-success::before {
|
|
831
|
-
|
|
1071
|
+
content: "\e119";
|
|
832
1072
|
}
|
|
833
1073
|
|
|
834
1074
|
.k-i-check-circle::before {
|
|
835
|
-
|
|
1075
|
+
content: "\e11a";
|
|
836
1076
|
}
|
|
837
1077
|
|
|
838
1078
|
.k-i-checkmark-circle::before {
|
|
839
|
-
|
|
1079
|
+
content: "\e11a";
|
|
840
1080
|
}
|
|
841
1081
|
|
|
842
1082
|
.k-i-x::before {
|
|
843
|
-
|
|
1083
|
+
content: "\e11b";
|
|
844
1084
|
}
|
|
845
1085
|
|
|
846
1086
|
.k-i-close::before {
|
|
847
|
-
|
|
1087
|
+
content: "\e11b";
|
|
848
1088
|
}
|
|
849
1089
|
|
|
850
1090
|
.k-i-clear::before {
|
|
851
|
-
|
|
1091
|
+
content: "\e11b";
|
|
852
1092
|
}
|
|
853
1093
|
|
|
854
1094
|
.k-i-times::before {
|
|
855
|
-
|
|
1095
|
+
content: "\e11b";
|
|
856
1096
|
}
|
|
857
1097
|
|
|
858
1098
|
.k-i-group-delete::before {
|
|
859
|
-
|
|
1099
|
+
content: "\e11b";
|
|
860
1100
|
}
|
|
861
1101
|
|
|
862
1102
|
.k-i-x-outline::before {
|
|
863
|
-
|
|
1103
|
+
content: "\e11c";
|
|
864
1104
|
}
|
|
865
1105
|
|
|
866
1106
|
.k-i-close-outline::before {
|
|
867
|
-
|
|
1107
|
+
content: "\e11c";
|
|
868
1108
|
}
|
|
869
1109
|
|
|
870
1110
|
.k-i-clear-outline::before {
|
|
871
|
-
|
|
1111
|
+
content: "\e11c";
|
|
872
1112
|
}
|
|
873
1113
|
|
|
874
1114
|
.k-i-times-outline::before {
|
|
875
|
-
|
|
1115
|
+
content: "\e11c";
|
|
876
1116
|
}
|
|
877
1117
|
|
|
878
1118
|
.k-i-error::before {
|
|
879
|
-
|
|
1119
|
+
content: "\e11c";
|
|
880
1120
|
}
|
|
881
1121
|
|
|
882
1122
|
.k-i-x-circle::before {
|
|
883
|
-
|
|
1123
|
+
content: "\e11d";
|
|
884
1124
|
}
|
|
885
1125
|
|
|
886
1126
|
.k-i-close-circle::before {
|
|
887
|
-
|
|
1127
|
+
content: "\e11d";
|
|
888
1128
|
}
|
|
889
1129
|
|
|
890
1130
|
.k-i-clear-circle::before {
|
|
891
|
-
|
|
1131
|
+
content: "\e11d";
|
|
892
1132
|
}
|
|
893
1133
|
|
|
894
1134
|
.k-i-times-circle::before {
|
|
895
|
-
|
|
1135
|
+
content: "\e11d";
|
|
896
1136
|
}
|
|
897
1137
|
|
|
898
1138
|
.k-i-plus::before {
|
|
899
|
-
|
|
1139
|
+
content: "\e11e";
|
|
900
1140
|
}
|
|
901
1141
|
|
|
902
1142
|
.k-i-add::before {
|
|
903
|
-
|
|
1143
|
+
content: "\e11e";
|
|
904
1144
|
}
|
|
905
1145
|
|
|
906
1146
|
.k-i-plus-outline::before {
|
|
907
|
-
|
|
1147
|
+
content: "\e11f";
|
|
908
1148
|
}
|
|
909
1149
|
|
|
910
1150
|
.k-i-add-outline::before {
|
|
911
|
-
|
|
1151
|
+
content: "\e11f";
|
|
912
1152
|
}
|
|
913
1153
|
|
|
914
1154
|
.k-i-plus-circle::before {
|
|
915
|
-
|
|
1155
|
+
content: "\e120";
|
|
916
1156
|
}
|
|
917
1157
|
|
|
918
1158
|
.k-i-add-circle::before {
|
|
919
|
-
|
|
1159
|
+
content: "\e120";
|
|
920
1160
|
}
|
|
921
1161
|
|
|
922
1162
|
.k-i-minus::before {
|
|
923
|
-
|
|
1163
|
+
content: "\e121";
|
|
924
1164
|
}
|
|
925
1165
|
|
|
926
1166
|
.k-i-kpi-trend-equal::before {
|
|
927
|
-
|
|
1167
|
+
content: "\e121";
|
|
928
1168
|
}
|
|
929
1169
|
|
|
930
1170
|
.k-i-minus-outline::before {
|
|
931
|
-
|
|
1171
|
+
content: "\e122";
|
|
932
1172
|
}
|
|
933
1173
|
|
|
934
1174
|
.k-i-minus-circle::before {
|
|
935
|
-
|
|
1175
|
+
content: "\e123";
|
|
936
1176
|
}
|
|
937
1177
|
|
|
938
1178
|
.k-i-sort-asc::before {
|
|
939
|
-
|
|
1179
|
+
content: "\e124";
|
|
940
1180
|
}
|
|
941
1181
|
|
|
942
1182
|
.k-i-sort-desc::before {
|
|
943
|
-
|
|
1183
|
+
content: "\e125";
|
|
944
1184
|
}
|
|
945
1185
|
|
|
946
1186
|
.k-i-sort-clear::before {
|
|
947
|
-
|
|
1187
|
+
content: "\e126";
|
|
948
1188
|
}
|
|
949
1189
|
|
|
950
1190
|
.k-i-unsort::before {
|
|
951
|
-
|
|
1191
|
+
content: "\e126";
|
|
952
1192
|
}
|
|
953
1193
|
|
|
954
1194
|
.k-i-sort-asc-small::before {
|
|
955
|
-
|
|
1195
|
+
content: "\e127";
|
|
956
1196
|
}
|
|
957
1197
|
|
|
958
1198
|
.k-i-sort-asc-sm::before {
|
|
959
|
-
|
|
1199
|
+
content: "\e127";
|
|
960
1200
|
}
|
|
961
1201
|
|
|
962
1202
|
.k-i-sort-desc-small::before {
|
|
963
|
-
|
|
1203
|
+
content: "\e128";
|
|
964
1204
|
}
|
|
965
1205
|
|
|
966
1206
|
.k-i-sort-desc-sm::before {
|
|
967
|
-
|
|
1207
|
+
content: "\e128";
|
|
968
1208
|
}
|
|
969
1209
|
|
|
970
1210
|
.k-i-filter::before {
|
|
971
|
-
|
|
1211
|
+
content: "\e129";
|
|
972
1212
|
}
|
|
973
1213
|
|
|
974
1214
|
.k-i-filter-clear::before {
|
|
975
|
-
|
|
1215
|
+
content: "\e12a";
|
|
976
1216
|
}
|
|
977
1217
|
|
|
978
1218
|
.k-i-filter-small::before {
|
|
979
|
-
|
|
1219
|
+
content: "\e12b";
|
|
980
1220
|
}
|
|
981
1221
|
|
|
982
1222
|
.k-i-filter-sm::before {
|
|
983
|
-
|
|
1223
|
+
content: "\e12b";
|
|
984
1224
|
}
|
|
985
1225
|
|
|
986
1226
|
.k-i-filter-sort-asc-small::before {
|
|
987
|
-
|
|
1227
|
+
content: "\e12c";
|
|
988
1228
|
}
|
|
989
1229
|
|
|
990
1230
|
.k-i-filter-sort-asc-sm::before {
|
|
991
|
-
|
|
1231
|
+
content: "\e12c";
|
|
992
1232
|
}
|
|
993
1233
|
|
|
994
1234
|
.k-i-filter-sort-desc-small::before {
|
|
995
|
-
|
|
1235
|
+
content: "\e12d";
|
|
996
1236
|
}
|
|
997
1237
|
|
|
998
1238
|
.k-i-filter-sort-desc-sm::before {
|
|
999
|
-
|
|
1239
|
+
content: "\e12d";
|
|
1000
1240
|
}
|
|
1001
1241
|
|
|
1002
1242
|
.k-i-filter-add-expression::before {
|
|
1003
|
-
|
|
1243
|
+
content: "\e12e";
|
|
1004
1244
|
}
|
|
1005
1245
|
|
|
1006
1246
|
.k-i-filter-add-group::before {
|
|
1007
|
-
|
|
1247
|
+
content: "\e12f";
|
|
1008
1248
|
}
|
|
1009
1249
|
|
|
1010
1250
|
.k-i-login::before {
|
|
1011
|
-
|
|
1251
|
+
content: "\e130";
|
|
1012
1252
|
}
|
|
1013
1253
|
|
|
1014
1254
|
.k-i-sign-in::before {
|
|
1015
|
-
|
|
1255
|
+
content: "\e130";
|
|
1016
1256
|
}
|
|
1017
1257
|
|
|
1018
1258
|
.k-i-logout::before {
|
|
1019
|
-
|
|
1259
|
+
content: "\e131";
|
|
1020
1260
|
}
|
|
1021
1261
|
|
|
1022
1262
|
.k-i-sign-out::before {
|
|
1023
|
-
|
|
1263
|
+
content: "\e131";
|
|
1024
1264
|
}
|
|
1025
1265
|
|
|
1026
1266
|
.k-i-download::before {
|
|
1027
|
-
|
|
1267
|
+
content: "\e132";
|
|
1028
1268
|
}
|
|
1029
1269
|
|
|
1030
1270
|
.k-i-upload::before {
|
|
1031
|
-
|
|
1271
|
+
content: "\e133";
|
|
1032
1272
|
}
|
|
1033
1273
|
|
|
1034
1274
|
.k-i-hyperlink-open::before {
|
|
1035
|
-
|
|
1275
|
+
content: "\e134";
|
|
1036
1276
|
}
|
|
1037
1277
|
|
|
1038
1278
|
.k-i-hyperlink-open-sm::before {
|
|
1039
|
-
|
|
1279
|
+
content: "\e135";
|
|
1040
1280
|
}
|
|
1041
1281
|
|
|
1042
1282
|
.k-i-launch::before {
|
|
1043
|
-
|
|
1283
|
+
content: "\e136";
|
|
1044
1284
|
}
|
|
1045
1285
|
|
|
1046
1286
|
.k-i-window::before {
|
|
1047
|
-
|
|
1287
|
+
content: "\e137";
|
|
1048
1288
|
}
|
|
1049
1289
|
|
|
1050
1290
|
.k-i-window-maximize::before {
|
|
1051
|
-
|
|
1291
|
+
content: "\e137";
|
|
1052
1292
|
}
|
|
1053
1293
|
|
|
1054
1294
|
.k-i-maximize::before {
|
|
1055
|
-
|
|
1295
|
+
content: "\e137";
|
|
1056
1296
|
}
|
|
1057
1297
|
|
|
1058
1298
|
.k-i-window-restore::before {
|
|
1059
|
-
|
|
1299
|
+
content: "\e138";
|
|
1060
1300
|
}
|
|
1061
1301
|
|
|
1062
1302
|
.k-i-windows::before {
|
|
1063
|
-
|
|
1303
|
+
content: "\e138";
|
|
1064
1304
|
}
|
|
1065
1305
|
|
|
1066
1306
|
.k-i-tiles::before {
|
|
1067
|
-
|
|
1307
|
+
content: "\e138";
|
|
1068
1308
|
}
|
|
1069
1309
|
|
|
1070
1310
|
.k-i-restore::before {
|
|
1071
|
-
|
|
1311
|
+
content: "\e138";
|
|
1072
1312
|
}
|
|
1073
1313
|
|
|
1074
1314
|
.k-i-window-minimize::before {
|
|
1075
|
-
|
|
1315
|
+
content: "\e139";
|
|
1076
1316
|
}
|
|
1077
1317
|
|
|
1078
1318
|
.k-i-minimize::before {
|
|
1079
|
-
|
|
1319
|
+
content: "\e139";
|
|
1080
1320
|
}
|
|
1081
1321
|
|
|
1082
1322
|
.k-i-gear::before {
|
|
1083
|
-
|
|
1323
|
+
content: "\e13a";
|
|
1084
1324
|
}
|
|
1085
1325
|
|
|
1086
1326
|
.k-i-cog::before {
|
|
1087
|
-
|
|
1327
|
+
content: "\e13a";
|
|
1088
1328
|
}
|
|
1089
1329
|
|
|
1090
1330
|
.k-i-custom::before {
|
|
1091
|
-
|
|
1331
|
+
content: "\e13a";
|
|
1092
1332
|
}
|
|
1093
1333
|
|
|
1094
1334
|
.k-i-gears::before {
|
|
1095
|
-
|
|
1335
|
+
content: "\e13b";
|
|
1096
1336
|
}
|
|
1097
1337
|
|
|
1098
1338
|
.k-i-cogs::before {
|
|
1099
|
-
|
|
1339
|
+
content: "\e13b";
|
|
1100
1340
|
}
|
|
1101
1341
|
|
|
1102
1342
|
.k-i-wrench::before {
|
|
1103
|
-
|
|
1343
|
+
content: "\e13c";
|
|
1104
1344
|
}
|
|
1105
1345
|
|
|
1106
1346
|
.k-i-settings::before {
|
|
1107
|
-
|
|
1347
|
+
content: "\e13c";
|
|
1108
1348
|
}
|
|
1109
1349
|
|
|
1110
1350
|
.k-i-eye::before {
|
|
1111
|
-
|
|
1351
|
+
content: "\e13d";
|
|
1112
1352
|
}
|
|
1113
1353
|
|
|
1114
1354
|
.k-i-preview::before {
|
|
1115
|
-
|
|
1355
|
+
content: "\e13d";
|
|
1116
1356
|
}
|
|
1117
1357
|
|
|
1118
1358
|
.k-i-search::before {
|
|
1119
|
-
|
|
1359
|
+
content: "\e13e";
|
|
1120
1360
|
}
|
|
1121
1361
|
|
|
1122
1362
|
.k-i-zoom::before {
|
|
1123
|
-
|
|
1363
|
+
content: "\e13e";
|
|
1124
1364
|
}
|
|
1125
1365
|
|
|
1126
1366
|
.k-i-zoom-in::before {
|
|
1127
|
-
|
|
1367
|
+
content: "\e13f";
|
|
1128
1368
|
}
|
|
1129
1369
|
|
|
1130
1370
|
.k-i-zoom-out::before {
|
|
1131
|
-
|
|
1371
|
+
content: "\e140";
|
|
1132
1372
|
}
|
|
1133
1373
|
|
|
1134
1374
|
.k-i-arrows-move::before {
|
|
1135
|
-
|
|
1375
|
+
content: "\e141";
|
|
1136
1376
|
}
|
|
1137
1377
|
|
|
1138
1378
|
.k-i-pan::before {
|
|
1139
|
-
|
|
1379
|
+
content: "\e141";
|
|
1140
1380
|
}
|
|
1141
1381
|
|
|
1142
1382
|
.k-i-move::before {
|
|
1143
|
-
|
|
1383
|
+
content: "\e141";
|
|
1144
1384
|
}
|
|
1145
1385
|
|
|
1146
1386
|
.k-i-calculator::before {
|
|
1147
|
-
|
|
1387
|
+
content: "\e142";
|
|
1148
1388
|
}
|
|
1149
1389
|
|
|
1150
1390
|
.k-i-cart::before {
|
|
1151
|
-
|
|
1391
|
+
content: "\e143";
|
|
1152
1392
|
}
|
|
1153
1393
|
|
|
1154
1394
|
.k-i-shopping-cart::before {
|
|
1155
|
-
|
|
1395
|
+
content: "\e143";
|
|
1156
1396
|
}
|
|
1157
1397
|
|
|
1158
1398
|
.k-i-connector::before {
|
|
1159
|
-
|
|
1399
|
+
content: "\e144";
|
|
1160
1400
|
}
|
|
1161
1401
|
|
|
1162
1402
|
.k-i-plus-sm::before {
|
|
1163
|
-
|
|
1403
|
+
content: "\e145";
|
|
1164
1404
|
}
|
|
1165
1405
|
|
|
1166
1406
|
.k-i-splus::before {
|
|
1167
|
-
|
|
1407
|
+
content: "\e145";
|
|
1168
1408
|
}
|
|
1169
1409
|
|
|
1170
1410
|
.k-i-minus-sm::before {
|
|
1171
|
-
|
|
1411
|
+
content: "\e146";
|
|
1172
1412
|
}
|
|
1173
1413
|
|
|
1174
1414
|
.k-i-sminus::before {
|
|
1175
|
-
|
|
1415
|
+
content: "\e146";
|
|
1176
1416
|
}
|
|
1177
1417
|
|
|
1178
1418
|
.k-i-kpi-status-deny::before {
|
|
1179
|
-
|
|
1419
|
+
content: "\e147";
|
|
1180
1420
|
}
|
|
1181
1421
|
|
|
1182
1422
|
.k-i-kpi-status-hold::before {
|
|
1183
|
-
|
|
1423
|
+
content: "\e148";
|
|
1184
1424
|
}
|
|
1185
1425
|
|
|
1186
1426
|
.k-i-kpi-status-open::before {
|
|
1187
|
-
|
|
1427
|
+
content: "\e149";
|
|
1188
1428
|
}
|
|
1189
1429
|
|
|
1190
1430
|
.k-i-equal::before {
|
|
1191
|
-
|
|
1431
|
+
content: "\e14a";
|
|
1192
1432
|
}
|
|
1193
1433
|
|
|
1194
1434
|
.k-i-not-equal::before {
|
|
1195
|
-
|
|
1435
|
+
content: "\e14b";
|
|
1196
1436
|
}
|
|
1197
1437
|
|
|
1198
1438
|
.k-i-less-or-equal::before {
|
|
1199
|
-
|
|
1439
|
+
content: "\e14c";
|
|
1200
1440
|
}
|
|
1201
1441
|
|
|
1202
1442
|
.k-i-greater-or-equal::before {
|
|
1203
|
-
|
|
1443
|
+
content: "\e14d";
|
|
1204
1444
|
}
|
|
1205
1445
|
|
|
1206
1446
|
.k-i-divide::before {
|
|
1207
|
-
|
|
1447
|
+
content: "\e14e";
|
|
1208
1448
|
}
|
|
1209
1449
|
|
|
1210
1450
|
.k-i-accessibility::before {
|
|
1211
|
-
|
|
1451
|
+
content: "\e14f";
|
|
1212
1452
|
}
|
|
1213
1453
|
|
|
1214
1454
|
.k-i-barcode-outline::before {
|
|
1215
|
-
|
|
1455
|
+
content: "\e150";
|
|
1216
1456
|
}
|
|
1217
1457
|
|
|
1218
1458
|
.k-i-barcode::before {
|
|
1219
|
-
|
|
1459
|
+
content: "\e151";
|
|
1220
1460
|
}
|
|
1221
1461
|
|
|
1222
1462
|
.k-i-barcode-scanner::before {
|
|
1223
|
-
|
|
1463
|
+
content: "\e152";
|
|
1224
1464
|
}
|
|
1225
1465
|
|
|
1226
1466
|
.k-i-qr-code-outline::before {
|
|
1227
|
-
|
|
1467
|
+
content: "\e153";
|
|
1228
1468
|
}
|
|
1229
1469
|
|
|
1230
1470
|
.k-i-qr-code::before {
|
|
1231
|
-
|
|
1471
|
+
content: "\e154";
|
|
1232
1472
|
}
|
|
1233
1473
|
|
|
1234
1474
|
.k-i-qr-code-scanner::before {
|
|
1235
|
-
|
|
1475
|
+
content: "\e155";
|
|
1236
1476
|
}
|
|
1237
1477
|
|
|
1238
1478
|
.k-i-barcode-qr-code-scanner::before {
|
|
1239
|
-
|
|
1479
|
+
content: "\e156";
|
|
1240
1480
|
}
|
|
1241
1481
|
|
|
1242
1482
|
.k-i-signature::before {
|
|
1243
|
-
|
|
1483
|
+
content: "\e157";
|
|
1244
1484
|
}
|
|
1245
1485
|
|
|
1246
1486
|
.k-i-hand::before {
|
|
1247
|
-
|
|
1487
|
+
content: "\e158";
|
|
1248
1488
|
}
|
|
1249
1489
|
|
|
1250
1490
|
.k-i-pointer::before {
|
|
1251
|
-
|
|
1491
|
+
content: "\e159";
|
|
1252
1492
|
}
|
|
1253
1493
|
|
|
1254
1494
|
.k-i-cursor::before {
|
|
1255
|
-
|
|
1495
|
+
content: "\e159";
|
|
1256
1496
|
}
|
|
1257
1497
|
|
|
1258
1498
|
.k-i-stick::before {
|
|
1259
|
-
|
|
1499
|
+
content: "\e15a";
|
|
1260
1500
|
}
|
|
1261
1501
|
|
|
1262
1502
|
.k-i-unstick::before {
|
|
1263
|
-
|
|
1503
|
+
content: "\e15b";
|
|
1264
1504
|
}
|
|
1265
1505
|
|
|
1266
1506
|
.k-i-set-column-position::before {
|
|
1267
|
-
|
|
1507
|
+
content: "\e15c";
|
|
1268
1508
|
}
|
|
1269
1509
|
|
|
1270
1510
|
.k-i-play::before {
|
|
1271
|
-
|
|
1511
|
+
content: "\e200";
|
|
1272
1512
|
}
|
|
1273
1513
|
|
|
1274
1514
|
.k-i-pause::before {
|
|
1275
|
-
|
|
1515
|
+
content: "\e201";
|
|
1276
1516
|
}
|
|
1277
1517
|
|
|
1278
1518
|
.k-i-stop::before {
|
|
1279
|
-
|
|
1519
|
+
content: "\e202";
|
|
1280
1520
|
}
|
|
1281
1521
|
|
|
1282
1522
|
.k-i-rewind::before {
|
|
1283
|
-
|
|
1523
|
+
content: "\e203";
|
|
1284
1524
|
}
|
|
1285
1525
|
|
|
1286
1526
|
.k-i-forward::before {
|
|
1287
|
-
|
|
1527
|
+
content: "\e204";
|
|
1288
1528
|
}
|
|
1289
1529
|
|
|
1290
1530
|
.k-i-volume-down::before {
|
|
1291
|
-
|
|
1531
|
+
content: "\e205";
|
|
1292
1532
|
}
|
|
1293
1533
|
|
|
1294
1534
|
.k-i-volume-low::before {
|
|
1295
|
-
|
|
1535
|
+
content: "\e205";
|
|
1296
1536
|
}
|
|
1297
1537
|
|
|
1298
1538
|
.k-i-volume-up::before {
|
|
1299
|
-
|
|
1539
|
+
content: "\e206";
|
|
1300
1540
|
}
|
|
1301
1541
|
|
|
1302
1542
|
.k-i-volume-high::before {
|
|
1303
|
-
|
|
1543
|
+
content: "\e206";
|
|
1304
1544
|
}
|
|
1305
1545
|
|
|
1306
1546
|
.k-i-volume-mute::before {
|
|
1307
|
-
|
|
1547
|
+
content: "\e207";
|
|
1308
1548
|
}
|
|
1309
1549
|
|
|
1310
1550
|
.k-i-volume-off::before {
|
|
1311
|
-
|
|
1551
|
+
content: "\e207";
|
|
1312
1552
|
}
|
|
1313
1553
|
|
|
1314
1554
|
.k-i-hd::before {
|
|
1315
|
-
|
|
1555
|
+
content: "\e208";
|
|
1316
1556
|
}
|
|
1317
1557
|
|
|
1318
1558
|
.k-i-closed-captions::before {
|
|
1319
|
-
|
|
1559
|
+
content: "\e209";
|
|
1320
1560
|
}
|
|
1321
1561
|
|
|
1322
1562
|
.k-i-subtitles::before {
|
|
1323
|
-
|
|
1563
|
+
content: "\e209";
|
|
1324
1564
|
}
|
|
1325
1565
|
|
|
1326
1566
|
.k-i-playlist::before {
|
|
1327
|
-
|
|
1567
|
+
content: "\e20a";
|
|
1328
1568
|
}
|
|
1329
1569
|
|
|
1330
1570
|
.k-i-music-notes::before {
|
|
1331
|
-
|
|
1571
|
+
content: "\e20b";
|
|
1332
1572
|
}
|
|
1333
1573
|
|
|
1334
1574
|
.k-i-audio::before {
|
|
1335
|
-
|
|
1575
|
+
content: "\e20b";
|
|
1336
1576
|
}
|
|
1337
1577
|
|
|
1338
1578
|
.k-i-play-sm::before {
|
|
1339
|
-
|
|
1579
|
+
content: "\e20c";
|
|
1340
1580
|
}
|
|
1341
1581
|
|
|
1342
1582
|
.k-i-pause-sm::before {
|
|
1343
|
-
|
|
1583
|
+
content: "\e20d";
|
|
1344
1584
|
}
|
|
1345
1585
|
|
|
1346
1586
|
.k-i-stop-sm::before {
|
|
1347
|
-
|
|
1587
|
+
content: "\e20e";
|
|
1348
1588
|
}
|
|
1349
1589
|
|
|
1350
1590
|
.k-i-heart-outline::before {
|
|
1351
|
-
|
|
1591
|
+
content: "\e300";
|
|
1352
1592
|
}
|
|
1353
1593
|
|
|
1354
1594
|
.k-i-fav-outline::before {
|
|
1355
|
-
|
|
1595
|
+
content: "\e300";
|
|
1356
1596
|
}
|
|
1357
1597
|
|
|
1358
1598
|
.k-i-favorite-outline::before {
|
|
1359
|
-
|
|
1599
|
+
content: "\e300";
|
|
1360
1600
|
}
|
|
1361
1601
|
|
|
1362
1602
|
.k-i-heart::before {
|
|
1363
|
-
|
|
1603
|
+
content: "\e301";
|
|
1364
1604
|
}
|
|
1365
1605
|
|
|
1366
1606
|
.k-i-fav::before {
|
|
1367
|
-
|
|
1607
|
+
content: "\e301";
|
|
1368
1608
|
}
|
|
1369
1609
|
|
|
1370
1610
|
.k-i-favorite::before {
|
|
1371
|
-
|
|
1611
|
+
content: "\e301";
|
|
1372
1612
|
}
|
|
1373
1613
|
|
|
1374
1614
|
.k-i-star-outline::before {
|
|
1375
|
-
|
|
1615
|
+
content: "\e302";
|
|
1376
1616
|
}
|
|
1377
1617
|
|
|
1378
1618
|
.k-i-bookmark-outline::before {
|
|
1379
|
-
|
|
1619
|
+
content: "\e302";
|
|
1380
1620
|
}
|
|
1381
1621
|
|
|
1382
1622
|
.k-i-star::before {
|
|
1383
|
-
|
|
1623
|
+
content: "\e303";
|
|
1384
1624
|
}
|
|
1385
1625
|
|
|
1386
1626
|
.k-i-bookmark::before {
|
|
1387
|
-
|
|
1627
|
+
content: "\e303";
|
|
1388
1628
|
}
|
|
1389
1629
|
|
|
1390
1630
|
.k-i-checkbox::before {
|
|
1391
|
-
|
|
1631
|
+
content: "\e304";
|
|
1392
1632
|
}
|
|
1393
1633
|
|
|
1394
1634
|
.k-i-shape-rect::before {
|
|
1395
|
-
|
|
1635
|
+
content: "\e304";
|
|
1396
1636
|
}
|
|
1397
1637
|
|
|
1398
1638
|
.k-i-checkbox-checked::before {
|
|
1399
|
-
|
|
1639
|
+
content: "\e305";
|
|
1400
1640
|
}
|
|
1401
1641
|
|
|
1402
1642
|
.k-i-checkbox-indeterminate::before {
|
|
1403
|
-
|
|
1643
|
+
content: "\e306";
|
|
1404
1644
|
}
|
|
1405
1645
|
|
|
1406
1646
|
.k-i-tri-state-indeterminate::before {
|
|
1407
|
-
|
|
1647
|
+
content: "\e306";
|
|
1408
1648
|
}
|
|
1409
1649
|
|
|
1410
1650
|
.k-i-checkbox-null::before {
|
|
1411
|
-
|
|
1651
|
+
content: "\e307";
|
|
1412
1652
|
}
|
|
1413
1653
|
|
|
1414
1654
|
.k-i-tri-state-null::before {
|
|
1415
|
-
|
|
1655
|
+
content: "\e307";
|
|
1416
1656
|
}
|
|
1417
1657
|
|
|
1418
1658
|
.k-i-circle::before {
|
|
1419
|
-
|
|
1659
|
+
content: "\e308";
|
|
1420
1660
|
}
|
|
1421
1661
|
|
|
1422
1662
|
.k-i-radiobutton::before {
|
|
1423
|
-
|
|
1663
|
+
content: "\e309";
|
|
1424
1664
|
}
|
|
1425
1665
|
|
|
1426
1666
|
.k-i-shape-circle::before {
|
|
1427
|
-
|
|
1667
|
+
content: "\e309";
|
|
1428
1668
|
}
|
|
1429
1669
|
|
|
1430
1670
|
.k-i-radiobutton-checked::before {
|
|
1431
|
-
|
|
1671
|
+
content: "\e30a";
|
|
1432
1672
|
}
|
|
1433
1673
|
|
|
1434
1674
|
.k-i-bell::before {
|
|
1435
|
-
|
|
1675
|
+
content: "\e400";
|
|
1436
1676
|
}
|
|
1437
1677
|
|
|
1438
1678
|
.k-i-notification::before {
|
|
1439
|
-
|
|
1679
|
+
content: "\e400";
|
|
1440
1680
|
}
|
|
1441
1681
|
|
|
1442
1682
|
.k-i-info-circle::before {
|
|
1443
|
-
|
|
1683
|
+
content: "\e401";
|
|
1444
1684
|
}
|
|
1445
1685
|
|
|
1446
1686
|
.k-i-information::before {
|
|
1447
|
-
|
|
1687
|
+
content: "\e401";
|
|
1448
1688
|
}
|
|
1449
1689
|
|
|
1450
1690
|
.k-i-info::before {
|
|
1451
|
-
|
|
1691
|
+
content: "\e401";
|
|
1452
1692
|
}
|
|
1453
1693
|
|
|
1454
1694
|
.k-i-note::before {
|
|
1455
|
-
|
|
1695
|
+
content: "\e401";
|
|
1456
1696
|
}
|
|
1457
1697
|
|
|
1458
1698
|
.k-i-question-circle::before {
|
|
1459
|
-
|
|
1699
|
+
content: "\e402";
|
|
1460
1700
|
}
|
|
1461
1701
|
|
|
1462
1702
|
.k-i-question::before {
|
|
1463
|
-
|
|
1703
|
+
content: "\e402";
|
|
1464
1704
|
}
|
|
1465
1705
|
|
|
1466
1706
|
.k-i-help::before {
|
|
1467
|
-
|
|
1707
|
+
content: "\e402";
|
|
1468
1708
|
}
|
|
1469
1709
|
|
|
1470
1710
|
.k-i-exclamation-circle::before {
|
|
1471
|
-
|
|
1711
|
+
content: "\e403";
|
|
1472
1712
|
}
|
|
1473
1713
|
|
|
1474
1714
|
.k-i-warning::before {
|
|
1475
|
-
|
|
1715
|
+
content: "\e403";
|
|
1476
1716
|
}
|
|
1477
1717
|
|
|
1478
1718
|
.k-i-exception::before {
|
|
1479
|
-
|
|
1719
|
+
content: "\e403";
|
|
1480
1720
|
}
|
|
1481
1721
|
|
|
1482
1722
|
.k-i-camera::before {
|
|
1483
|
-
|
|
1723
|
+
content: "\e500";
|
|
1484
1724
|
}
|
|
1485
1725
|
|
|
1486
1726
|
.k-i-photo-camera::before {
|
|
1487
|
-
|
|
1727
|
+
content: "\e500";
|
|
1488
1728
|
}
|
|
1489
1729
|
|
|
1490
1730
|
.k-i-image::before {
|
|
1491
|
-
|
|
1731
|
+
content: "\e501";
|
|
1492
1732
|
}
|
|
1493
1733
|
|
|
1494
1734
|
.k-i-photo::before {
|
|
1495
|
-
|
|
1735
|
+
content: "\e501";
|
|
1496
1736
|
}
|
|
1497
1737
|
|
|
1498
1738
|
.k-i-image-export::before {
|
|
1499
|
-
|
|
1739
|
+
content: "\e502";
|
|
1500
1740
|
}
|
|
1501
1741
|
|
|
1502
1742
|
.k-i-photo-export::before {
|
|
1503
|
-
|
|
1743
|
+
content: "\e502";
|
|
1504
1744
|
}
|
|
1505
1745
|
|
|
1506
1746
|
.k-i-zoom-actual-size::before {
|
|
1507
|
-
|
|
1747
|
+
content: "\e503";
|
|
1508
1748
|
}
|
|
1509
1749
|
|
|
1510
1750
|
.k-i-zoom-best-fit::before {
|
|
1511
|
-
|
|
1751
|
+
content: "\e504";
|
|
1512
1752
|
}
|
|
1513
1753
|
|
|
1514
1754
|
.k-i-image-resize::before {
|
|
1515
|
-
|
|
1755
|
+
content: "\e505";
|
|
1516
1756
|
}
|
|
1517
1757
|
|
|
1518
1758
|
.k-i-crop::before {
|
|
1519
|
-
|
|
1759
|
+
content: "\e506";
|
|
1520
1760
|
}
|
|
1521
1761
|
|
|
1522
1762
|
.k-i-mirror::before {
|
|
1523
|
-
|
|
1763
|
+
content: "\e507";
|
|
1524
1764
|
}
|
|
1525
1765
|
|
|
1526
1766
|
.k-i-flip-horizontal::before {
|
|
1527
|
-
|
|
1767
|
+
content: "\e508";
|
|
1528
1768
|
}
|
|
1529
1769
|
|
|
1530
1770
|
.k-i-flip-h::before {
|
|
1531
|
-
|
|
1771
|
+
content: "\e508";
|
|
1532
1772
|
}
|
|
1533
1773
|
|
|
1534
1774
|
.k-i-flip-vertical::before {
|
|
1535
|
-
|
|
1775
|
+
content: "\e509";
|
|
1536
1776
|
}
|
|
1537
1777
|
|
|
1538
1778
|
.k-i-flip-v::before {
|
|
1539
|
-
|
|
1779
|
+
content: "\e509";
|
|
1540
1780
|
}
|
|
1541
1781
|
|
|
1542
1782
|
.k-i-rotate::before {
|
|
1543
|
-
|
|
1783
|
+
content: "\e50a";
|
|
1544
1784
|
}
|
|
1545
1785
|
|
|
1546
1786
|
.k-i-rotate-right::before {
|
|
1547
|
-
|
|
1787
|
+
content: "\e50b";
|
|
1548
1788
|
}
|
|
1549
1789
|
|
|
1550
1790
|
.k-i-rotate-cw::before {
|
|
1551
|
-
|
|
1791
|
+
content: "\e50b";
|
|
1552
1792
|
}
|
|
1553
1793
|
|
|
1554
1794
|
.k-i-rotate-left::before {
|
|
1555
|
-
|
|
1795
|
+
content: "\e50c";
|
|
1556
1796
|
}
|
|
1557
1797
|
|
|
1558
1798
|
.k-i-rotate-ccw::before {
|
|
1559
|
-
|
|
1799
|
+
content: "\e50c";
|
|
1560
1800
|
}
|
|
1561
1801
|
|
|
1562
1802
|
.k-i-brush::before {
|
|
1563
|
-
|
|
1803
|
+
content: "\e50d";
|
|
1564
1804
|
}
|
|
1565
1805
|
|
|
1566
1806
|
.k-i-palette::before {
|
|
1567
|
-
|
|
1807
|
+
content: "\e50e";
|
|
1568
1808
|
}
|
|
1569
1809
|
|
|
1570
1810
|
.k-i-droplet::before {
|
|
1571
|
-
|
|
1811
|
+
content: "\e50f";
|
|
1572
1812
|
}
|
|
1573
1813
|
|
|
1574
1814
|
.k-i-paint::before {
|
|
1575
|
-
|
|
1815
|
+
content: "\e50f";
|
|
1576
1816
|
}
|
|
1577
1817
|
|
|
1578
1818
|
.k-i-background::before {
|
|
1579
|
-
|
|
1819
|
+
content: "\e50f";
|
|
1580
1820
|
}
|
|
1581
1821
|
|
|
1582
1822
|
.k-i-shape-line::before {
|
|
1583
|
-
|
|
1823
|
+
content: "\e510";
|
|
1584
1824
|
}
|
|
1585
1825
|
|
|
1586
1826
|
.k-i-line::before {
|
|
1587
|
-
|
|
1827
|
+
content: "\e510";
|
|
1588
1828
|
}
|
|
1589
1829
|
|
|
1590
1830
|
.k-i-brightness-contrast::before {
|
|
1591
|
-
|
|
1831
|
+
content: "\e511";
|
|
1592
1832
|
}
|
|
1593
1833
|
|
|
1594
1834
|
.k-i-sliders::before {
|
|
1595
|
-
|
|
1835
|
+
content: "\e512";
|
|
1596
1836
|
}
|
|
1597
1837
|
|
|
1598
1838
|
.k-i-saturation::before {
|
|
1599
|
-
|
|
1839
|
+
content: "\e512";
|
|
1600
1840
|
}
|
|
1601
1841
|
|
|
1602
1842
|
.k-i-invert-colors::before {
|
|
1603
|
-
|
|
1843
|
+
content: "\e513";
|
|
1604
1844
|
}
|
|
1605
1845
|
|
|
1606
1846
|
.k-i-transparency::before {
|
|
1607
|
-
|
|
1847
|
+
content: "\e514";
|
|
1608
1848
|
}
|
|
1609
1849
|
|
|
1610
1850
|
.k-i-opacity::before {
|
|
1611
|
-
|
|
1851
|
+
content: "\e514";
|
|
1612
1852
|
}
|
|
1613
1853
|
|
|
1614
1854
|
.k-i-grayscale::before {
|
|
1615
|
-
|
|
1855
|
+
content: "\e515";
|
|
1616
1856
|
}
|
|
1617
1857
|
|
|
1618
1858
|
.k-i-blur::before {
|
|
1619
|
-
|
|
1859
|
+
content: "\e516";
|
|
1620
1860
|
}
|
|
1621
1861
|
|
|
1622
1862
|
.k-i-sharpen::before {
|
|
1623
|
-
|
|
1863
|
+
content: "\e517";
|
|
1624
1864
|
}
|
|
1625
1865
|
|
|
1626
1866
|
.k-i-shapes::before {
|
|
1627
|
-
|
|
1867
|
+
content: "\e518";
|
|
1628
1868
|
}
|
|
1629
1869
|
|
|
1630
1870
|
.k-i-shape::before {
|
|
1631
|
-
|
|
1871
|
+
content: "\e518";
|
|
1632
1872
|
}
|
|
1633
1873
|
|
|
1634
1874
|
.k-i-round-corners::before {
|
|
1635
|
-
|
|
1875
|
+
content: "\e519";
|
|
1636
1876
|
}
|
|
1637
1877
|
|
|
1638
1878
|
.k-i-bring-to-front::before {
|
|
1639
|
-
|
|
1879
|
+
content: "\e51a";
|
|
1640
1880
|
}
|
|
1641
1881
|
|
|
1642
1882
|
.k-i-front-element::before {
|
|
1643
|
-
|
|
1883
|
+
content: "\e51a";
|
|
1644
1884
|
}
|
|
1645
1885
|
|
|
1646
1886
|
.k-i-bring-to-back::before {
|
|
1647
|
-
|
|
1887
|
+
content: "\e51b";
|
|
1648
1888
|
}
|
|
1649
1889
|
|
|
1650
1890
|
.k-i-back-element::before {
|
|
1651
|
-
|
|
1891
|
+
content: "\e51b";
|
|
1652
1892
|
}
|
|
1653
1893
|
|
|
1654
1894
|
.k-i-bring-forward::before {
|
|
1655
|
-
|
|
1895
|
+
content: "\e51c";
|
|
1656
1896
|
}
|
|
1657
1897
|
|
|
1658
1898
|
.k-i-forward-element::before {
|
|
1659
|
-
|
|
1899
|
+
content: "\e51c";
|
|
1660
1900
|
}
|
|
1661
1901
|
|
|
1662
1902
|
.k-i-bring-backward::before {
|
|
1663
|
-
|
|
1903
|
+
content: "\e51d";
|
|
1664
1904
|
}
|
|
1665
1905
|
|
|
1666
1906
|
.k-i-backward-element::before {
|
|
1667
|
-
|
|
1907
|
+
content: "\e51d";
|
|
1668
1908
|
}
|
|
1669
1909
|
|
|
1670
1910
|
.k-i-align-self-start::before {
|
|
1671
|
-
|
|
1911
|
+
content: "\e51e";
|
|
1672
1912
|
}
|
|
1673
1913
|
|
|
1674
1914
|
.k-i-align-left-element::before {
|
|
1675
|
-
|
|
1915
|
+
content: "\e51e";
|
|
1676
1916
|
}
|
|
1677
1917
|
|
|
1678
1918
|
.k-i-align-self-center::before {
|
|
1679
|
-
|
|
1919
|
+
content: "\e51f";
|
|
1680
1920
|
}
|
|
1681
1921
|
|
|
1682
1922
|
.k-i-align-center-element::before {
|
|
1683
|
-
|
|
1923
|
+
content: "\e51f";
|
|
1684
1924
|
}
|
|
1685
1925
|
|
|
1686
1926
|
.k-i-align-self-end::before {
|
|
1687
|
-
|
|
1927
|
+
content: "\e520";
|
|
1688
1928
|
}
|
|
1689
1929
|
|
|
1690
1930
|
.k-i-align-right-element::before {
|
|
1691
|
-
|
|
1931
|
+
content: "\e520";
|
|
1692
1932
|
}
|
|
1693
1933
|
|
|
1694
1934
|
.k-i-align-self-start-alt::before {
|
|
1695
|
-
|
|
1935
|
+
content: "\e521";
|
|
1696
1936
|
}
|
|
1697
1937
|
|
|
1698
1938
|
.k-i-align-top-element::before {
|
|
1699
|
-
|
|
1939
|
+
content: "\e521";
|
|
1700
1940
|
}
|
|
1701
1941
|
|
|
1702
1942
|
.k-i-align-self-center-alt::before {
|
|
1703
|
-
|
|
1943
|
+
content: "\e522";
|
|
1704
1944
|
}
|
|
1705
1945
|
|
|
1706
1946
|
.k-i-align-middle-element::before {
|
|
1707
|
-
|
|
1947
|
+
content: "\e522";
|
|
1708
1948
|
}
|
|
1709
1949
|
|
|
1710
1950
|
.k-i-align-self-end-alt::before {
|
|
1711
|
-
|
|
1951
|
+
content: "\e523";
|
|
1712
1952
|
}
|
|
1713
1953
|
|
|
1714
1954
|
.k-i-align-bottom-element::before {
|
|
1715
|
-
|
|
1955
|
+
content: "\e523";
|
|
1716
1956
|
}
|
|
1717
1957
|
|
|
1718
1958
|
.k-i-thumbnails-up::before {
|
|
1719
|
-
|
|
1959
|
+
content: "\e524";
|
|
1720
1960
|
}
|
|
1721
1961
|
|
|
1722
1962
|
.k-i-thumbnails-right::before {
|
|
1723
|
-
|
|
1963
|
+
content: "\e525";
|
|
1724
1964
|
}
|
|
1725
1965
|
|
|
1726
1966
|
.k-i-thumbnails-down::before {
|
|
1727
|
-
|
|
1967
|
+
content: "\e526";
|
|
1728
1968
|
}
|
|
1729
1969
|
|
|
1730
1970
|
.k-i-thumbnails-left::before {
|
|
1731
|
-
|
|
1971
|
+
content: "\e527";
|
|
1732
1972
|
}
|
|
1733
1973
|
|
|
1734
1974
|
.k-i-fullscreen::before {
|
|
1735
|
-
|
|
1975
|
+
content: "\e528";
|
|
1736
1976
|
}
|
|
1737
1977
|
|
|
1738
1978
|
.k-i-full-screen::before {
|
|
1739
|
-
|
|
1979
|
+
content: "\e528";
|
|
1740
1980
|
}
|
|
1741
1981
|
|
|
1742
1982
|
.k-i-fullscreen-enter::before {
|
|
1743
|
-
|
|
1983
|
+
content: "\e528";
|
|
1744
1984
|
}
|
|
1745
1985
|
|
|
1746
1986
|
.k-i-fullscreen-exit::before {
|
|
1747
|
-
|
|
1987
|
+
content: "\e529";
|
|
1748
1988
|
}
|
|
1749
1989
|
|
|
1750
1990
|
.k-i-full-screen-exit::before {
|
|
1751
|
-
|
|
1991
|
+
content: "\e529";
|
|
1752
1992
|
}
|
|
1753
1993
|
|
|
1754
1994
|
.k-i-droplet-slash::before {
|
|
1755
|
-
|
|
1995
|
+
content: "\e52a";
|
|
1756
1996
|
}
|
|
1757
1997
|
|
|
1758
1998
|
.k-i-reset-color::before {
|
|
1759
|
-
|
|
1999
|
+
content: "\e52a";
|
|
1760
2000
|
}
|
|
1761
2001
|
|
|
1762
2002
|
.k-i-paint-remove::before {
|
|
1763
|
-
|
|
2003
|
+
content: "\e52a";
|
|
1764
2004
|
}
|
|
1765
2005
|
|
|
1766
2006
|
.k-i-background-remove::before {
|
|
1767
|
-
|
|
2007
|
+
content: "\e52a";
|
|
1768
2008
|
}
|
|
1769
2009
|
|
|
1770
2010
|
.k-i-photos::before {
|
|
1771
|
-
|
|
2011
|
+
content: "\e52b";
|
|
1772
2012
|
}
|
|
1773
2013
|
|
|
1774
2014
|
.k-i-images::before {
|
|
1775
|
-
|
|
2015
|
+
content: "\e52b";
|
|
1776
2016
|
}
|
|
1777
2017
|
|
|
1778
2018
|
.k-i-gallery::before {
|
|
1779
|
-
|
|
2019
|
+
content: "\e52b";
|
|
1780
2020
|
}
|
|
1781
2021
|
|
|
1782
2022
|
.k-i-align-to-grid::before {
|
|
1783
|
-
|
|
2023
|
+
content: "\e52c";
|
|
1784
2024
|
}
|
|
1785
2025
|
|
|
1786
2026
|
.k-i-size-to-grid::before {
|
|
1787
|
-
|
|
2027
|
+
content: "\e52d";
|
|
1788
2028
|
}
|
|
1789
2029
|
|
|
1790
2030
|
.k-i-make-same-size::before {
|
|
1791
|
-
|
|
2031
|
+
content: "\e52e";
|
|
1792
2032
|
}
|
|
1793
2033
|
|
|
1794
2034
|
.k-i-make-same-width::before {
|
|
1795
|
-
|
|
2035
|
+
content: "\e52f";
|
|
1796
2036
|
}
|
|
1797
2037
|
|
|
1798
2038
|
.k-i-make-same-height::before {
|
|
1799
|
-
|
|
2039
|
+
content: "\e530";
|
|
1800
2040
|
}
|
|
1801
2041
|
|
|
1802
2042
|
.k-i-make-horizontal-spacing-equal::before {
|
|
1803
|
-
|
|
2043
|
+
content: "\e531";
|
|
1804
2044
|
}
|
|
1805
2045
|
|
|
1806
2046
|
.k-i-increase-horizontal-spacing::before {
|
|
1807
|
-
|
|
2047
|
+
content: "\e532";
|
|
1808
2048
|
}
|
|
1809
2049
|
|
|
1810
2050
|
.k-i-decrease-horizontal-spacing::before {
|
|
1811
|
-
|
|
2051
|
+
content: "\e533";
|
|
1812
2052
|
}
|
|
1813
2053
|
|
|
1814
2054
|
.k-i-remove-horizontal-spacing::before {
|
|
1815
|
-
|
|
2055
|
+
content: "\e534";
|
|
1816
2056
|
}
|
|
1817
2057
|
|
|
1818
2058
|
.k-i-make-vertical-spacing-equal::before {
|
|
1819
|
-
|
|
2059
|
+
content: "\e535";
|
|
1820
2060
|
}
|
|
1821
2061
|
|
|
1822
2062
|
.k-i-increase-vertical-spacing::before {
|
|
1823
|
-
|
|
2063
|
+
content: "\e536";
|
|
1824
2064
|
}
|
|
1825
2065
|
|
|
1826
2066
|
.k-i-decrease-vertical-spacing::before {
|
|
1827
|
-
|
|
2067
|
+
content: "\e537";
|
|
1828
2068
|
}
|
|
1829
2069
|
|
|
1830
2070
|
.k-i-remove-vertical-spacing::before {
|
|
1831
|
-
|
|
2071
|
+
content: "\e538";
|
|
1832
2072
|
}
|
|
1833
2073
|
|
|
1834
2074
|
.k-i-eyedropper::before {
|
|
1835
|
-
|
|
2075
|
+
content: "\e539";
|
|
1836
2076
|
}
|
|
1837
2077
|
|
|
1838
2078
|
.k-i-snap-grid::before {
|
|
1839
|
-
|
|
2079
|
+
content: "\e53a";
|
|
1840
2080
|
}
|
|
1841
2081
|
|
|
1842
2082
|
.k-i-snap-to-gridlines::before {
|
|
1843
|
-
|
|
2083
|
+
content: "\e53b";
|
|
1844
2084
|
}
|
|
1845
2085
|
|
|
1846
2086
|
.k-i-snap-to-snaplines::before {
|
|
1847
|
-
|
|
2087
|
+
content: "\e53c";
|
|
1848
2088
|
}
|
|
1849
2089
|
|
|
1850
|
-
.k-i-
|
|
1851
|
-
|
|
2090
|
+
.k-i-dimensions::before {
|
|
2091
|
+
content: "\e53d";
|
|
1852
2092
|
}
|
|
1853
2093
|
|
|
1854
2094
|
.k-i-align-self-stretch::before {
|
|
1855
|
-
|
|
2095
|
+
content: "\e53e";
|
|
1856
2096
|
}
|
|
1857
2097
|
|
|
1858
2098
|
.k-i-align-stretch-element-horizontal::before {
|
|
1859
|
-
|
|
2099
|
+
content: "\e53e";
|
|
1860
2100
|
}
|
|
1861
2101
|
|
|
1862
2102
|
.k-i-align-self-stretch-alt::before {
|
|
1863
|
-
|
|
2103
|
+
content: "\e53f";
|
|
1864
2104
|
}
|
|
1865
2105
|
|
|
1866
2106
|
.k-i-align-stretch-element-vertical::before {
|
|
1867
|
-
|
|
2107
|
+
content: "\e53f";
|
|
1868
2108
|
}
|
|
1869
2109
|
|
|
1870
2110
|
.k-i-align-items-start::before {
|
|
1871
|
-
|
|
2111
|
+
content: "\e540";
|
|
1872
2112
|
}
|
|
1873
2113
|
|
|
1874
2114
|
.k-i-align-left-elements::before {
|
|
1875
|
-
|
|
2115
|
+
content: "\e540";
|
|
1876
2116
|
}
|
|
1877
2117
|
|
|
1878
2118
|
.k-i-align-items-center::before {
|
|
1879
|
-
|
|
2119
|
+
content: "\e541";
|
|
1880
2120
|
}
|
|
1881
2121
|
|
|
1882
2122
|
.k-i-align-center-elements::before {
|
|
1883
|
-
|
|
2123
|
+
content: "\e541";
|
|
1884
2124
|
}
|
|
1885
2125
|
|
|
1886
2126
|
.k-i-align-items-end::before {
|
|
1887
|
-
|
|
2127
|
+
content: "\e542";
|
|
1888
2128
|
}
|
|
1889
2129
|
|
|
1890
2130
|
.k-i-align-right-elements::before {
|
|
1891
|
-
|
|
2131
|
+
content: "\e542";
|
|
1892
2132
|
}
|
|
1893
2133
|
|
|
1894
2134
|
.k-i-align-items-stretch::before {
|
|
1895
|
-
|
|
2135
|
+
content: "\e543";
|
|
1896
2136
|
}
|
|
1897
2137
|
|
|
1898
2138
|
.k-i-align-stretch-elements-horizontal::before {
|
|
1899
|
-
|
|
2139
|
+
content: "\e543";
|
|
1900
2140
|
}
|
|
1901
2141
|
|
|
1902
2142
|
.k-i-align-items-baseline::before {
|
|
1903
|
-
|
|
2143
|
+
content: "\e544";
|
|
1904
2144
|
}
|
|
1905
2145
|
|
|
1906
2146
|
.k-i-align-baseline-horizontal::before {
|
|
1907
|
-
|
|
2147
|
+
content: "\e544";
|
|
1908
2148
|
}
|
|
1909
2149
|
|
|
1910
2150
|
.k-i-align-items-start-alt::before {
|
|
1911
|
-
|
|
2151
|
+
content: "\e545";
|
|
1912
2152
|
}
|
|
1913
2153
|
|
|
1914
2154
|
.k-i-align-top-elements::before {
|
|
1915
|
-
|
|
2155
|
+
content: "\e545";
|
|
1916
2156
|
}
|
|
1917
2157
|
|
|
1918
2158
|
.k-i-align-items-center-alt::before {
|
|
1919
|
-
|
|
2159
|
+
content: "\e546";
|
|
1920
2160
|
}
|
|
1921
2161
|
|
|
1922
2162
|
.k-i-align-middle-elements::before {
|
|
1923
|
-
|
|
2163
|
+
content: "\e546";
|
|
1924
2164
|
}
|
|
1925
2165
|
|
|
1926
2166
|
.k-i-align-items-end-alt::before {
|
|
1927
|
-
|
|
2167
|
+
content: "\e547";
|
|
1928
2168
|
}
|
|
1929
2169
|
|
|
1930
2170
|
.k-i-align-bottom-elements::before {
|
|
1931
|
-
|
|
2171
|
+
content: "\e547";
|
|
1932
2172
|
}
|
|
1933
2173
|
|
|
1934
2174
|
.k-i-align-items-stretch-alt::before {
|
|
1935
|
-
|
|
2175
|
+
content: "\e548";
|
|
1936
2176
|
}
|
|
1937
2177
|
|
|
1938
2178
|
.k-i-align-stretch-elements-vertical::before {
|
|
1939
|
-
|
|
2179
|
+
content: "\e548";
|
|
1940
2180
|
}
|
|
1941
2181
|
|
|
1942
2182
|
.k-i-align-items-baseline-alt::before {
|
|
1943
|
-
|
|
2183
|
+
content: "\e549";
|
|
1944
2184
|
}
|
|
1945
2185
|
|
|
1946
2186
|
.k-i-align-baseline-vertical::before {
|
|
1947
|
-
|
|
2187
|
+
content: "\e549";
|
|
1948
2188
|
}
|
|
1949
2189
|
|
|
1950
2190
|
.k-i-justify-content-start::before {
|
|
1951
|
-
|
|
2191
|
+
content: "\e54a";
|
|
1952
2192
|
}
|
|
1953
2193
|
|
|
1954
2194
|
.k-i-justify-start-horizontal::before {
|
|
1955
|
-
|
|
2195
|
+
content: "\e54a";
|
|
1956
2196
|
}
|
|
1957
2197
|
|
|
1958
2198
|
.k-i-justify-content-center::before {
|
|
1959
|
-
|
|
2199
|
+
content: "\e54b";
|
|
1960
2200
|
}
|
|
1961
2201
|
|
|
1962
2202
|
.k-i-justify-center-horizontal::before {
|
|
1963
|
-
|
|
2203
|
+
content: "\e54b";
|
|
1964
2204
|
}
|
|
1965
2205
|
|
|
1966
2206
|
.k-i-justify-content-end::before {
|
|
1967
|
-
|
|
2207
|
+
content: "\e54c";
|
|
1968
2208
|
}
|
|
1969
2209
|
|
|
1970
2210
|
.k-i-justify-end-horizontal::before {
|
|
1971
|
-
|
|
2211
|
+
content: "\e54c";
|
|
1972
2212
|
}
|
|
1973
2213
|
|
|
1974
2214
|
.k-i-justify-content-between::before {
|
|
1975
|
-
|
|
2215
|
+
content: "\e54d";
|
|
1976
2216
|
}
|
|
1977
2217
|
|
|
1978
2218
|
.k-i-justify-between-horizontal::before {
|
|
1979
|
-
|
|
2219
|
+
content: "\e54d";
|
|
1980
2220
|
}
|
|
1981
2221
|
|
|
1982
2222
|
.k-i-justify-content-around::before {
|
|
1983
|
-
|
|
2223
|
+
content: "\e54e";
|
|
1984
2224
|
}
|
|
1985
2225
|
|
|
1986
2226
|
.k-i-justify-around-horizontal::before {
|
|
1987
|
-
|
|
2227
|
+
content: "\e54e";
|
|
1988
2228
|
}
|
|
1989
2229
|
|
|
1990
2230
|
.k-i-justify-content-start-alt::before {
|
|
1991
|
-
|
|
2231
|
+
content: "\e54f";
|
|
1992
2232
|
}
|
|
1993
2233
|
|
|
1994
2234
|
.k-i-justify-start-vertical::before {
|
|
1995
|
-
|
|
2235
|
+
content: "\e54f";
|
|
1996
2236
|
}
|
|
1997
2237
|
|
|
1998
2238
|
.k-i-justify-content-center-alt::before {
|
|
1999
|
-
|
|
2239
|
+
content: "\e550";
|
|
2000
2240
|
}
|
|
2001
2241
|
|
|
2002
2242
|
.k-i-justify-center-vertical::before {
|
|
2003
|
-
|
|
2243
|
+
content: "\e550";
|
|
2004
2244
|
}
|
|
2005
2245
|
|
|
2006
2246
|
.k-i-justify-content-end-alt::before {
|
|
2007
|
-
|
|
2247
|
+
content: "\e551";
|
|
2008
2248
|
}
|
|
2009
2249
|
|
|
2010
2250
|
.k-i-justify-end-vertical::before {
|
|
2011
|
-
|
|
2251
|
+
content: "\e551";
|
|
2012
2252
|
}
|
|
2013
2253
|
|
|
2014
2254
|
.k-i-justify-content-between-alt::before {
|
|
2015
|
-
|
|
2255
|
+
content: "\e552";
|
|
2016
2256
|
}
|
|
2017
2257
|
|
|
2018
2258
|
.k-i-justify-between-vertical::before {
|
|
2019
|
-
|
|
2259
|
+
content: "\e552";
|
|
2020
2260
|
}
|
|
2021
2261
|
|
|
2022
2262
|
.k-i-justify-content-around-alt::before {
|
|
2023
|
-
|
|
2263
|
+
content: "\e553";
|
|
2024
2264
|
}
|
|
2025
2265
|
|
|
2026
2266
|
.k-i-justify-around-vertical::before {
|
|
2027
|
-
|
|
2267
|
+
content: "\e553";
|
|
2028
2268
|
}
|
|
2029
2269
|
|
|
2030
2270
|
.k-i-file-wrench::before {
|
|
2031
|
-
|
|
2271
|
+
content: "\e600";
|
|
2032
2272
|
}
|
|
2033
2273
|
|
|
2034
2274
|
.k-i-page-properties::before {
|
|
2035
|
-
|
|
2275
|
+
content: "\e600";
|
|
2036
2276
|
}
|
|
2037
2277
|
|
|
2038
2278
|
.k-i-bold::before {
|
|
2039
|
-
|
|
2279
|
+
content: "\e601";
|
|
2040
2280
|
}
|
|
2041
2281
|
|
|
2042
2282
|
.k-i-italic::before {
|
|
2043
|
-
|
|
2283
|
+
content: "\e602";
|
|
2044
2284
|
}
|
|
2045
2285
|
|
|
2046
2286
|
.k-i-underline::before {
|
|
2047
|
-
|
|
2287
|
+
content: "\e603";
|
|
2048
2288
|
}
|
|
2049
2289
|
|
|
2050
2290
|
.k-i-font-family::before {
|
|
2051
|
-
|
|
2291
|
+
content: "\e604";
|
|
2052
2292
|
}
|
|
2053
2293
|
|
|
2054
2294
|
.k-i-foreground-color::before {
|
|
2055
|
-
|
|
2295
|
+
content: "\e605";
|
|
2056
2296
|
}
|
|
2057
2297
|
|
|
2058
2298
|
.k-i-text::before {
|
|
2059
|
-
|
|
2299
|
+
content: "\e605";
|
|
2060
2300
|
}
|
|
2061
2301
|
|
|
2062
2302
|
.k-i-convert-lowercase::before {
|
|
2063
|
-
|
|
2303
|
+
content: "\e606";
|
|
2064
2304
|
}
|
|
2065
2305
|
|
|
2066
2306
|
.k-i-convert-uppercase::before {
|
|
2067
|
-
|
|
2307
|
+
content: "\e607";
|
|
2068
2308
|
}
|
|
2069
2309
|
|
|
2070
2310
|
.k-i-strikethrough::before {
|
|
2071
|
-
|
|
2311
|
+
content: "\e608";
|
|
2072
2312
|
}
|
|
2073
2313
|
|
|
2074
2314
|
.k-i-strike-through::before {
|
|
2075
|
-
|
|
2315
|
+
content: "\e608";
|
|
2076
2316
|
}
|
|
2077
2317
|
|
|
2078
2318
|
.k-i-subscript::before {
|
|
2079
|
-
|
|
2319
|
+
content: "\e609";
|
|
2080
2320
|
}
|
|
2081
2321
|
|
|
2082
2322
|
.k-i-sub-script::before {
|
|
2083
|
-
|
|
2323
|
+
content: "\e609";
|
|
2084
2324
|
}
|
|
2085
2325
|
|
|
2086
2326
|
.k-i-supscript::before {
|
|
2087
|
-
|
|
2327
|
+
content: "\e60a";
|
|
2088
2328
|
}
|
|
2089
2329
|
|
|
2090
2330
|
.k-i-sup-script::before {
|
|
2091
|
-
|
|
2331
|
+
content: "\e60a";
|
|
2092
2332
|
}
|
|
2093
2333
|
|
|
2094
2334
|
.k-i-superscript::before {
|
|
2095
|
-
|
|
2335
|
+
content: "\e60a";
|
|
2096
2336
|
}
|
|
2097
2337
|
|
|
2098
2338
|
.k-i-div::before {
|
|
2099
|
-
|
|
2339
|
+
content: "\e60b";
|
|
2100
2340
|
}
|
|
2101
2341
|
|
|
2102
2342
|
.k-i-all::before {
|
|
2103
|
-
|
|
2343
|
+
content: "\e60c";
|
|
2104
2344
|
}
|
|
2105
2345
|
|
|
2106
2346
|
.k-i-h1::before {
|
|
2107
|
-
|
|
2347
|
+
content: "\e60d";
|
|
2108
2348
|
}
|
|
2109
2349
|
|
|
2110
2350
|
.k-i-h2::before {
|
|
2111
|
-
|
|
2351
|
+
content: "\e60e";
|
|
2112
2352
|
}
|
|
2113
2353
|
|
|
2114
2354
|
.k-i-h3::before {
|
|
2115
|
-
|
|
2355
|
+
content: "\e60f";
|
|
2116
2356
|
}
|
|
2117
2357
|
|
|
2118
2358
|
.k-i-h4::before {
|
|
2119
|
-
|
|
2359
|
+
content: "\e610";
|
|
2120
2360
|
}
|
|
2121
2361
|
|
|
2122
2362
|
.k-i-h5::before {
|
|
2123
|
-
|
|
2363
|
+
content: "\e611";
|
|
2124
2364
|
}
|
|
2125
2365
|
|
|
2126
2366
|
.k-i-h6::before {
|
|
2127
|
-
|
|
2367
|
+
content: "\e612";
|
|
2128
2368
|
}
|
|
2129
2369
|
|
|
2130
2370
|
.k-i-list-ordered::before {
|
|
2131
|
-
|
|
2371
|
+
content: "\e613";
|
|
2132
2372
|
}
|
|
2133
2373
|
|
|
2134
2374
|
.k-i-list-numbered::before {
|
|
2135
|
-
|
|
2375
|
+
content: "\e613";
|
|
2136
2376
|
}
|
|
2137
2377
|
|
|
2138
2378
|
.k-i-insert-ordered-list::before {
|
|
2139
|
-
|
|
2379
|
+
content: "\e613";
|
|
2140
2380
|
}
|
|
2141
2381
|
|
|
2142
2382
|
.k-i-list-unordered::before {
|
|
2143
|
-
|
|
2383
|
+
content: "\e614";
|
|
2144
2384
|
}
|
|
2145
2385
|
|
|
2146
2386
|
.k-i-list-bulleted::before {
|
|
2147
|
-
|
|
2387
|
+
content: "\e614";
|
|
2148
2388
|
}
|
|
2149
2389
|
|
|
2150
2390
|
.k-i-insert-unordered-list::before {
|
|
2151
|
-
|
|
2391
|
+
content: "\e614";
|
|
2152
2392
|
}
|
|
2153
2393
|
|
|
2154
2394
|
.k-i-indent::before {
|
|
2155
|
-
|
|
2395
|
+
content: "\e615";
|
|
2156
2396
|
}
|
|
2157
2397
|
|
|
2158
2398
|
.k-i-indent-increase::before {
|
|
2159
|
-
|
|
2399
|
+
content: "\e615";
|
|
2160
2400
|
}
|
|
2161
2401
|
|
|
2162
2402
|
.k-i-outdent::before {
|
|
2163
|
-
|
|
2403
|
+
content: "\e616";
|
|
2164
2404
|
}
|
|
2165
2405
|
|
|
2166
2406
|
.k-i-indent-decrease::before {
|
|
2167
|
-
|
|
2407
|
+
content: "\e616";
|
|
2168
2408
|
}
|
|
2169
2409
|
|
|
2170
2410
|
.k-i-insert-top::before {
|
|
2171
|
-
|
|
2411
|
+
content: "\e617";
|
|
2172
2412
|
}
|
|
2173
2413
|
|
|
2174
2414
|
.k-i-insert-up::before {
|
|
2175
|
-
|
|
2415
|
+
content: "\e617";
|
|
2176
2416
|
}
|
|
2177
2417
|
|
|
2178
2418
|
.k-i-insert-n::before {
|
|
2179
|
-
|
|
2419
|
+
content: "\e617";
|
|
2180
2420
|
}
|
|
2181
2421
|
|
|
2182
2422
|
.k-i-insert-middle::before {
|
|
2183
|
-
|
|
2423
|
+
content: "\e618";
|
|
2184
2424
|
}
|
|
2185
2425
|
|
|
2186
2426
|
.k-i-insert-m::before {
|
|
2187
|
-
|
|
2427
|
+
content: "\e618";
|
|
2188
2428
|
}
|
|
2189
2429
|
|
|
2190
2430
|
.k-i-insert-bottom::before {
|
|
2191
|
-
|
|
2431
|
+
content: "\e619";
|
|
2192
2432
|
}
|
|
2193
2433
|
|
|
2194
2434
|
.k-i-insert-down::before {
|
|
2195
|
-
|
|
2435
|
+
content: "\e619";
|
|
2196
2436
|
}
|
|
2197
2437
|
|
|
2198
2438
|
.k-i-insert-s::before {
|
|
2199
|
-
|
|
2439
|
+
content: "\e619";
|
|
2200
2440
|
}
|
|
2201
2441
|
|
|
2202
2442
|
.k-i-align-top::before {
|
|
2203
|
-
|
|
2443
|
+
content: "\e61a";
|
|
2204
2444
|
}
|
|
2205
2445
|
|
|
2206
2446
|
.k-i-align-middle::before {
|
|
2207
|
-
|
|
2447
|
+
content: "\e61b";
|
|
2208
2448
|
}
|
|
2209
2449
|
|
|
2210
2450
|
.k-i-align-bottom::before {
|
|
2211
|
-
|
|
2451
|
+
content: "\e61c";
|
|
2212
2452
|
}
|
|
2213
2453
|
|
|
2214
2454
|
.k-i-align-left::before {
|
|
2215
|
-
|
|
2455
|
+
content: "\e61d";
|
|
2216
2456
|
}
|
|
2217
2457
|
|
|
2218
2458
|
.k-i-justify-left::before {
|
|
2219
|
-
|
|
2459
|
+
content: "\e61d";
|
|
2220
2460
|
}
|
|
2221
2461
|
|
|
2222
2462
|
.k-i-align-center::before {
|
|
2223
|
-
|
|
2463
|
+
content: "\e61e";
|
|
2224
2464
|
}
|
|
2225
2465
|
|
|
2226
2466
|
.k-i-justify-center::before {
|
|
2227
|
-
|
|
2467
|
+
content: "\e61e";
|
|
2228
2468
|
}
|
|
2229
2469
|
|
|
2230
2470
|
.k-i-align-right::before {
|
|
2231
|
-
|
|
2471
|
+
content: "\e61f";
|
|
2232
2472
|
}
|
|
2233
2473
|
|
|
2234
2474
|
.k-i-justify-left::before {
|
|
2235
|
-
|
|
2475
|
+
content: "\e61f";
|
|
2236
2476
|
}
|
|
2237
2477
|
|
|
2238
2478
|
.k-i-align-justify::before {
|
|
2239
|
-
|
|
2479
|
+
content: "\e620";
|
|
2240
2480
|
}
|
|
2241
2481
|
|
|
2242
2482
|
.k-i-justify-full::before {
|
|
2243
|
-
|
|
2483
|
+
content: "\e620";
|
|
2244
2484
|
}
|
|
2245
2485
|
|
|
2246
2486
|
.k-i-align-remove::before {
|
|
2247
|
-
|
|
2487
|
+
content: "\e621";
|
|
2248
2488
|
}
|
|
2249
2489
|
|
|
2250
2490
|
.k-i-justify-clear::before {
|
|
2251
|
-
|
|
2491
|
+
content: "\e621";
|
|
2252
2492
|
}
|
|
2253
2493
|
|
|
2254
2494
|
.k-i-text-wrap::before {
|
|
2255
|
-
|
|
2495
|
+
content: "\e622";
|
|
2256
2496
|
}
|
|
2257
2497
|
|
|
2258
2498
|
.k-i-horizontal-rule::before {
|
|
2259
|
-
|
|
2499
|
+
content: "\e623";
|
|
2260
2500
|
}
|
|
2261
2501
|
|
|
2262
2502
|
.k-i-rule-horizontal::before {
|
|
2263
|
-
|
|
2503
|
+
content: "\e623";
|
|
2264
2504
|
}
|
|
2265
2505
|
|
|
2266
2506
|
.k-i-hr::before {
|
|
2267
|
-
|
|
2507
|
+
content: "\e623";
|
|
2268
2508
|
}
|
|
2269
2509
|
|
|
2270
2510
|
.k-i-table-align-top-left::before {
|
|
2271
|
-
|
|
2511
|
+
content: "\e624";
|
|
2272
2512
|
}
|
|
2273
2513
|
|
|
2274
2514
|
.k-i-table-align-top-center::before {
|
|
2275
|
-
|
|
2515
|
+
content: "\e625";
|
|
2276
2516
|
}
|
|
2277
2517
|
|
|
2278
2518
|
.k-i-table-align-top-right::before {
|
|
2279
|
-
|
|
2519
|
+
content: "\e626";
|
|
2280
2520
|
}
|
|
2281
2521
|
|
|
2282
2522
|
.k-i-table-align-middle-left::before {
|
|
2283
|
-
|
|
2523
|
+
content: "\e627";
|
|
2284
2524
|
}
|
|
2285
2525
|
|
|
2286
2526
|
.k-i-table-align-middle-center::before {
|
|
2287
|
-
|
|
2527
|
+
content: "\e628";
|
|
2288
2528
|
}
|
|
2289
2529
|
|
|
2290
2530
|
.k-i-table-align-middle-right::before {
|
|
2291
|
-
|
|
2531
|
+
content: "\e629";
|
|
2292
2532
|
}
|
|
2293
2533
|
|
|
2294
2534
|
.k-i-table-align-bottom-left::before {
|
|
2295
|
-
|
|
2535
|
+
content: "\e62a";
|
|
2296
2536
|
}
|
|
2297
2537
|
|
|
2298
2538
|
.k-i-table-align-bottom-center::before {
|
|
2299
|
-
|
|
2539
|
+
content: "\e62b";
|
|
2300
2540
|
}
|
|
2301
2541
|
|
|
2302
2542
|
.k-i-table-align-bottom-right::before {
|
|
2303
|
-
|
|
2543
|
+
content: "\e62c";
|
|
2304
2544
|
}
|
|
2305
2545
|
|
|
2306
2546
|
.k-i-table-align-remove::before {
|
|
2307
|
-
|
|
2547
|
+
content: "\e62d";
|
|
2308
2548
|
}
|
|
2309
2549
|
|
|
2310
2550
|
.k-i-borders-all::before {
|
|
2311
|
-
|
|
2551
|
+
content: "\e62e";
|
|
2312
2552
|
}
|
|
2313
2553
|
|
|
2314
2554
|
.k-i-all-borders::before {
|
|
2315
|
-
|
|
2555
|
+
content: "\e62e";
|
|
2316
2556
|
}
|
|
2317
2557
|
|
|
2318
2558
|
.k-i-borders-outside::before {
|
|
2319
|
-
|
|
2559
|
+
content: "\e62f";
|
|
2320
2560
|
}
|
|
2321
2561
|
|
|
2322
2562
|
.k-i-outside-borders::before {
|
|
2323
|
-
|
|
2563
|
+
content: "\e62f";
|
|
2324
2564
|
}
|
|
2325
2565
|
|
|
2326
2566
|
.k-i-borders-inside::before {
|
|
2327
|
-
|
|
2567
|
+
content: "\e630";
|
|
2328
2568
|
}
|
|
2329
2569
|
|
|
2330
2570
|
.k-i-inside-borders::before {
|
|
2331
|
-
|
|
2571
|
+
content: "\e630";
|
|
2332
2572
|
}
|
|
2333
2573
|
|
|
2334
2574
|
.k-i-borders-inside-horizontal::before {
|
|
2335
|
-
|
|
2575
|
+
content: "\e631";
|
|
2336
2576
|
}
|
|
2337
2577
|
|
|
2338
2578
|
.k-i-border-inside-h::before {
|
|
2339
|
-
|
|
2579
|
+
content: "\e631";
|
|
2340
2580
|
}
|
|
2341
2581
|
|
|
2342
2582
|
.k-i-inside-horizontal-borders::before {
|
|
2343
|
-
|
|
2583
|
+
content: "\e631";
|
|
2344
2584
|
}
|
|
2345
2585
|
|
|
2346
2586
|
.k-i-borders-inside-vertical::before {
|
|
2347
|
-
|
|
2587
|
+
content: "\e632";
|
|
2348
2588
|
}
|
|
2349
2589
|
|
|
2350
2590
|
.k-i-borders-inside-v::before {
|
|
2351
|
-
|
|
2591
|
+
content: "\e632";
|
|
2352
2592
|
}
|
|
2353
2593
|
|
|
2354
2594
|
.k-i-inside-vertical-borders::before {
|
|
2355
|
-
|
|
2595
|
+
content: "\e632";
|
|
2356
2596
|
}
|
|
2357
2597
|
|
|
2358
2598
|
.k-i-border-top::before {
|
|
2359
|
-
|
|
2599
|
+
content: "\e633";
|
|
2360
2600
|
}
|
|
2361
2601
|
|
|
2362
2602
|
.k-i-top-border::before {
|
|
2363
|
-
|
|
2603
|
+
content: "\e633";
|
|
2364
2604
|
}
|
|
2365
2605
|
|
|
2366
2606
|
.k-i-border-bottom::before {
|
|
2367
|
-
|
|
2607
|
+
content: "\e634";
|
|
2368
2608
|
}
|
|
2369
2609
|
|
|
2370
2610
|
.k-i-bottom-border::before {
|
|
2371
|
-
|
|
2611
|
+
content: "\e634";
|
|
2372
2612
|
}
|
|
2373
2613
|
|
|
2374
2614
|
.k-i-border-left::before {
|
|
2375
|
-
|
|
2615
|
+
content: "\e635";
|
|
2376
2616
|
}
|
|
2377
2617
|
|
|
2378
2618
|
.k-i-left-border::before {
|
|
2379
|
-
|
|
2619
|
+
content: "\e635";
|
|
2380
2620
|
}
|
|
2381
2621
|
|
|
2382
2622
|
.k-i-border-right::before {
|
|
2383
|
-
|
|
2623
|
+
content: "\e636";
|
|
2384
2624
|
}
|
|
2385
2625
|
|
|
2386
2626
|
.k-i-right-border::before {
|
|
2387
|
-
|
|
2627
|
+
content: "\e636";
|
|
2388
2628
|
}
|
|
2389
2629
|
|
|
2390
2630
|
.k-i-borders-none::before {
|
|
2391
|
-
|
|
2631
|
+
content: "\e637";
|
|
2392
2632
|
}
|
|
2393
2633
|
|
|
2394
2634
|
.k-i-border-no::before {
|
|
2395
|
-
|
|
2635
|
+
content: "\e637";
|
|
2396
2636
|
}
|
|
2397
2637
|
|
|
2398
2638
|
.k-i-no-borders::before {
|
|
2399
|
-
|
|
2639
|
+
content: "\e637";
|
|
2400
2640
|
}
|
|
2401
2641
|
|
|
2402
2642
|
.k-i-borders-show-hide::before {
|
|
2403
|
-
|
|
2643
|
+
content: "\e638";
|
|
2404
2644
|
}
|
|
2405
2645
|
|
|
2406
2646
|
.k-i-form::before {
|
|
2407
|
-
|
|
2647
|
+
content: "\e639";
|
|
2408
2648
|
}
|
|
2409
2649
|
|
|
2410
2650
|
.k-i-border::before {
|
|
2411
|
-
|
|
2651
|
+
content: "\e639";
|
|
2412
2652
|
}
|
|
2413
2653
|
|
|
2414
2654
|
.k-i-form-element::before {
|
|
2415
|
-
|
|
2655
|
+
content: "\e63a";
|
|
2416
2656
|
}
|
|
2417
2657
|
|
|
2418
2658
|
.k-i-code-snippet::before {
|
|
2419
|
-
|
|
2659
|
+
content: "\e63b";
|
|
2420
2660
|
}
|
|
2421
2661
|
|
|
2422
2662
|
.k-i-select-all::before {
|
|
2423
|
-
|
|
2663
|
+
content: "\e63c";
|
|
2424
2664
|
}
|
|
2425
2665
|
|
|
2426
2666
|
.k-i-button::before {
|
|
2427
|
-
|
|
2667
|
+
content: "\e63d";
|
|
2428
2668
|
}
|
|
2429
2669
|
|
|
2430
2670
|
.k-i-select-box::before {
|
|
2431
|
-
|
|
2671
|
+
content: "\e63e";
|
|
2432
2672
|
}
|
|
2433
2673
|
|
|
2434
2674
|
.k-i-calendar-date::before {
|
|
2435
|
-
|
|
2675
|
+
content: "\e63f";
|
|
2436
2676
|
}
|
|
2437
2677
|
|
|
2438
2678
|
.k-i-group-box::before {
|
|
2439
|
-
|
|
2679
|
+
content: "\e640";
|
|
2440
2680
|
}
|
|
2441
2681
|
|
|
2442
2682
|
.k-i-textarea::before {
|
|
2443
|
-
|
|
2683
|
+
content: "\e641";
|
|
2444
2684
|
}
|
|
2445
2685
|
|
|
2446
2686
|
.k-i-textbox::before {
|
|
2447
|
-
|
|
2687
|
+
content: "\e642";
|
|
2448
2688
|
}
|
|
2449
2689
|
|
|
2450
2690
|
.k-i-textbox-hidden::before {
|
|
2451
|
-
|
|
2691
|
+
content: "\e643";
|
|
2452
2692
|
}
|
|
2453
2693
|
|
|
2454
2694
|
.k-i-password::before {
|
|
2455
|
-
|
|
2695
|
+
content: "\e644";
|
|
2456
2696
|
}
|
|
2457
2697
|
|
|
2458
2698
|
.k-i-paragraph-add::before {
|
|
2459
|
-
|
|
2699
|
+
content: "\e645";
|
|
2460
2700
|
}
|
|
2461
2701
|
|
|
2462
2702
|
.k-i-edit-tools::before {
|
|
2463
|
-
|
|
2703
|
+
content: "\e646";
|
|
2464
2704
|
}
|
|
2465
2705
|
|
|
2466
2706
|
.k-i-template-manager::before {
|
|
2467
|
-
|
|
2707
|
+
content: "\e647";
|
|
2468
2708
|
}
|
|
2469
2709
|
|
|
2470
2710
|
.k-i-change-manually::before {
|
|
2471
|
-
|
|
2711
|
+
content: "\e648";
|
|
2472
2712
|
}
|
|
2473
2713
|
|
|
2474
2714
|
.k-i-track-changes::before {
|
|
2475
|
-
|
|
2715
|
+
content: "\e649";
|
|
2476
2716
|
}
|
|
2477
2717
|
|
|
2478
2718
|
.k-i-track-changes-enable::before {
|
|
2479
|
-
|
|
2719
|
+
content: "\e64a";
|
|
2480
2720
|
}
|
|
2481
2721
|
|
|
2482
2722
|
.k-i-track-changes-accept::before {
|
|
2483
|
-
|
|
2723
|
+
content: "\e64b";
|
|
2484
2724
|
}
|
|
2485
2725
|
|
|
2486
2726
|
.k-i-track-changes-accept-all::before {
|
|
2487
|
-
|
|
2727
|
+
content: "\e64c";
|
|
2488
2728
|
}
|
|
2489
2729
|
|
|
2490
2730
|
.k-i-track-changes-reject::before {
|
|
2491
|
-
|
|
2731
|
+
content: "\e64d";
|
|
2492
2732
|
}
|
|
2493
2733
|
|
|
2494
2734
|
.k-i-track-changes-reject-all::before {
|
|
2495
|
-
|
|
2735
|
+
content: "\e64e";
|
|
2496
2736
|
}
|
|
2497
2737
|
|
|
2498
2738
|
.k-i-document-manager::before {
|
|
2499
|
-
|
|
2739
|
+
content: "\e64f";
|
|
2500
2740
|
}
|
|
2501
2741
|
|
|
2502
2742
|
.k-i-custom-icon::before {
|
|
2503
|
-
|
|
2743
|
+
content: "\e650";
|
|
2504
2744
|
}
|
|
2505
2745
|
|
|
2506
2746
|
.k-i-book::before {
|
|
2507
|
-
|
|
2747
|
+
content: "\e651";
|
|
2508
2748
|
}
|
|
2509
2749
|
|
|
2510
2750
|
.k-i-dictionary-add::before {
|
|
2511
|
-
|
|
2751
|
+
content: "\e651";
|
|
2512
2752
|
}
|
|
2513
2753
|
|
|
2514
2754
|
.k-i-image-add::before {
|
|
2515
|
-
|
|
2755
|
+
content: "\e652";
|
|
2516
2756
|
}
|
|
2517
2757
|
|
|
2518
2758
|
.k-i-image-light-dialog::before {
|
|
2519
|
-
|
|
2759
|
+
content: "\e652";
|
|
2520
2760
|
}
|
|
2521
2761
|
|
|
2522
2762
|
.k-i-image-insert::before {
|
|
2523
|
-
|
|
2763
|
+
content: "\e652";
|
|
2524
2764
|
}
|
|
2525
2765
|
|
|
2526
2766
|
.k-i-insert-image::before {
|
|
2527
|
-
|
|
2767
|
+
content: "\e652";
|
|
2528
2768
|
}
|
|
2529
2769
|
|
|
2530
2770
|
.k-i-image-edit::before {
|
|
2531
|
-
|
|
2771
|
+
content: "\e653";
|
|
2532
2772
|
}
|
|
2533
2773
|
|
|
2534
2774
|
.k-i-image-map-editor::before {
|
|
2535
|
-
|
|
2775
|
+
content: "\e654";
|
|
2536
2776
|
}
|
|
2537
2777
|
|
|
2538
2778
|
.k-i-comment::before {
|
|
2539
|
-
|
|
2779
|
+
content: "\e655";
|
|
2540
2780
|
}
|
|
2541
2781
|
|
|
2542
2782
|
.k-i-comment-remove::before {
|
|
2543
|
-
|
|
2783
|
+
content: "\e656";
|
|
2544
2784
|
}
|
|
2545
2785
|
|
|
2546
2786
|
.k-i-comments-remove::before {
|
|
2547
|
-
|
|
2787
|
+
content: "\e657";
|
|
2548
2788
|
}
|
|
2549
2789
|
|
|
2550
2790
|
.k-i-comments-remove-all::before {
|
|
2551
|
-
|
|
2791
|
+
content: "\e657";
|
|
2552
2792
|
}
|
|
2553
2793
|
|
|
2554
2794
|
.k-i-silverlight::before {
|
|
2555
|
-
|
|
2795
|
+
content: "\e658";
|
|
2556
2796
|
}
|
|
2557
2797
|
|
|
2558
2798
|
.k-i-media-manager::before {
|
|
2559
|
-
|
|
2799
|
+
content: "\e659";
|
|
2560
2800
|
}
|
|
2561
2801
|
|
|
2562
2802
|
.k-i-video-external::before {
|
|
2563
|
-
|
|
2803
|
+
content: "\e65a";
|
|
2564
2804
|
}
|
|
2565
2805
|
|
|
2566
2806
|
.k-i-flash-manager::before {
|
|
2567
|
-
|
|
2807
|
+
content: "\e65b";
|
|
2568
2808
|
}
|
|
2569
2809
|
|
|
2570
2810
|
.k-i-binoculars::before {
|
|
2571
|
-
|
|
2811
|
+
content: "\e65c";
|
|
2572
2812
|
}
|
|
2573
2813
|
|
|
2574
2814
|
.k-i-find-and-replace::before {
|
|
2575
|
-
|
|
2815
|
+
content: "\e65c";
|
|
2576
2816
|
}
|
|
2577
2817
|
|
|
2578
2818
|
.k-i-find::before {
|
|
2579
|
-
|
|
2819
|
+
content: "\e65c";
|
|
2580
2820
|
}
|
|
2581
2821
|
|
|
2582
2822
|
.k-i-copy::before {
|
|
2583
|
-
|
|
2823
|
+
content: "\e65d";
|
|
2584
2824
|
}
|
|
2585
2825
|
|
|
2586
2826
|
.k-i-files::before {
|
|
2587
|
-
|
|
2827
|
+
content: "\e65d";
|
|
2588
2828
|
}
|
|
2589
2829
|
|
|
2590
2830
|
.k-i-cut::before {
|
|
2591
|
-
|
|
2831
|
+
content: "\e65e";
|
|
2592
2832
|
}
|
|
2593
2833
|
|
|
2594
2834
|
.k-i-clipboard::before {
|
|
2595
|
-
|
|
2835
|
+
content: "\e65f";
|
|
2596
2836
|
}
|
|
2597
2837
|
|
|
2598
2838
|
.k-i-paste::before {
|
|
2599
|
-
|
|
2839
|
+
content: "\e65f";
|
|
2600
2840
|
}
|
|
2601
2841
|
|
|
2602
2842
|
.k-i-clipboard-code::before {
|
|
2603
|
-
|
|
2843
|
+
content: "\e660";
|
|
2604
2844
|
}
|
|
2605
2845
|
|
|
2606
2846
|
.k-i-paste-as-html::before {
|
|
2607
|
-
|
|
2847
|
+
content: "\e660";
|
|
2608
2848
|
}
|
|
2609
2849
|
|
|
2610
2850
|
.k-i-clipboard-word::before {
|
|
2611
|
-
|
|
2851
|
+
content: "\e661";
|
|
2612
2852
|
}
|
|
2613
2853
|
|
|
2614
2854
|
.k-i-paste-from-word::before {
|
|
2615
|
-
|
|
2855
|
+
content: "\e661";
|
|
2616
2856
|
}
|
|
2617
2857
|
|
|
2618
2858
|
.k-i-clipboard-word-alt::before {
|
|
2619
|
-
|
|
2859
|
+
content: "\e662";
|
|
2620
2860
|
}
|
|
2621
2861
|
|
|
2622
2862
|
.k-i-paste-from-word-strip-file::before {
|
|
2623
|
-
|
|
2863
|
+
content: "\e662";
|
|
2624
2864
|
}
|
|
2625
2865
|
|
|
2626
2866
|
.k-i-clipboard-html::before {
|
|
2627
|
-
|
|
2867
|
+
content: "\e663";
|
|
2628
2868
|
}
|
|
2629
2869
|
|
|
2630
2870
|
.k-i-paste-html::before {
|
|
2631
|
-
|
|
2871
|
+
content: "\e663";
|
|
2632
2872
|
}
|
|
2633
2873
|
|
|
2634
2874
|
.k-i-clipboard-markdown::before {
|
|
2635
|
-
|
|
2875
|
+
content: "\e664";
|
|
2636
2876
|
}
|
|
2637
2877
|
|
|
2638
2878
|
.k-i-paste-markdown::before {
|
|
2639
|
-
|
|
2879
|
+
content: "\e664";
|
|
2640
2880
|
}
|
|
2641
2881
|
|
|
2642
2882
|
.k-i-clipboard-text::before {
|
|
2643
|
-
|
|
2883
|
+
content: "\e665";
|
|
2644
2884
|
}
|
|
2645
2885
|
|
|
2646
2886
|
.k-i-paste-plain-text::before {
|
|
2647
|
-
|
|
2887
|
+
content: "\e665";
|
|
2648
2888
|
}
|
|
2649
2889
|
|
|
2650
2890
|
.k-i-apply-format::before {
|
|
2651
|
-
|
|
2891
|
+
content: "\e666";
|
|
2652
2892
|
}
|
|
2653
2893
|
|
|
2654
2894
|
.k-i-clear-css::before {
|
|
2655
|
-
|
|
2895
|
+
content: "\e667";
|
|
2656
2896
|
}
|
|
2657
2897
|
|
|
2658
2898
|
.k-i-clearformat::before {
|
|
2659
|
-
|
|
2899
|
+
content: "\e667";
|
|
2660
2900
|
}
|
|
2661
2901
|
|
|
2662
2902
|
.k-i-copy-format::before {
|
|
2663
|
-
|
|
2903
|
+
content: "\e668";
|
|
2664
2904
|
}
|
|
2665
2905
|
|
|
2666
2906
|
.k-i-strip-all-formatting::before {
|
|
2667
|
-
|
|
2907
|
+
content: "\e669";
|
|
2668
2908
|
}
|
|
2669
2909
|
|
|
2670
2910
|
.k-i-strip-css-format::before {
|
|
2671
|
-
|
|
2911
|
+
content: "\e66a";
|
|
2672
2912
|
}
|
|
2673
2913
|
|
|
2674
2914
|
.k-i-strip-font-elements::before {
|
|
2675
|
-
|
|
2915
|
+
content: "\e66b";
|
|
2676
2916
|
}
|
|
2677
2917
|
|
|
2678
2918
|
.k-i-strip-span-elements::before {
|
|
2679
|
-
|
|
2919
|
+
content: "\e66c";
|
|
2680
2920
|
}
|
|
2681
2921
|
|
|
2682
2922
|
.k-i-strip-word-formatting::before {
|
|
2683
|
-
|
|
2923
|
+
content: "\e66d";
|
|
2684
2924
|
}
|
|
2685
2925
|
|
|
2686
2926
|
.k-i-format-code-block::before {
|
|
2687
|
-
|
|
2927
|
+
content: "\e66e";
|
|
2688
2928
|
}
|
|
2689
2929
|
|
|
2690
2930
|
.k-i-building-blocks::before {
|
|
2691
|
-
|
|
2931
|
+
content: "\e66f";
|
|
2692
2932
|
}
|
|
2693
2933
|
|
|
2694
2934
|
.k-i-style-builder::before {
|
|
2695
|
-
|
|
2935
|
+
content: "\e66f";
|
|
2696
2936
|
}
|
|
2697
2937
|
|
|
2698
2938
|
.k-i-puzzle-piece::before {
|
|
2699
|
-
|
|
2939
|
+
content: "\e670";
|
|
2700
2940
|
}
|
|
2701
2941
|
|
|
2702
2942
|
.k-i-module-manager::before {
|
|
2703
|
-
|
|
2943
|
+
content: "\e670";
|
|
2704
2944
|
}
|
|
2705
2945
|
|
|
2706
2946
|
.k-i-puzzle::before {
|
|
2707
|
-
|
|
2947
|
+
content: "\e670";
|
|
2708
2948
|
}
|
|
2709
2949
|
|
|
2710
2950
|
.k-i-link-add::before {
|
|
2711
|
-
|
|
2951
|
+
content: "\e671";
|
|
2712
2952
|
}
|
|
2713
2953
|
|
|
2714
2954
|
.k-i-hyperlink-light-dialog::before {
|
|
2715
|
-
|
|
2955
|
+
content: "\e671";
|
|
2716
2956
|
}
|
|
2717
2957
|
|
|
2718
2958
|
.k-i-hyperlink-insert::before {
|
|
2719
|
-
|
|
2959
|
+
content: "\e671";
|
|
2720
2960
|
}
|
|
2721
2961
|
|
|
2722
2962
|
.k-i-globe-link::before {
|
|
2723
|
-
|
|
2963
|
+
content: "\e672";
|
|
2724
2964
|
}
|
|
2725
2965
|
|
|
2726
2966
|
.k-i-hyperlink-globe::before {
|
|
2727
|
-
|
|
2967
|
+
content: "\e672";
|
|
2728
2968
|
}
|
|
2729
2969
|
|
|
2730
2970
|
.k-i-globe-unlink::before {
|
|
2731
|
-
|
|
2971
|
+
content: "\e673";
|
|
2732
2972
|
}
|
|
2733
2973
|
|
|
2734
2974
|
.k-i-hyperlink-globe-remove::before {
|
|
2735
|
-
|
|
2975
|
+
content: "\e673";
|
|
2736
2976
|
}
|
|
2737
2977
|
|
|
2738
2978
|
.k-i-envelop-link::before {
|
|
2739
|
-
|
|
2979
|
+
content: "\e674";
|
|
2740
2980
|
}
|
|
2741
2981
|
|
|
2742
2982
|
.k-i-hyperlink-email::before {
|
|
2743
|
-
|
|
2983
|
+
content: "\e674";
|
|
2744
2984
|
}
|
|
2745
2985
|
|
|
2746
2986
|
.k-i-anchor::before {
|
|
2747
|
-
|
|
2987
|
+
content: "\e675";
|
|
2748
2988
|
}
|
|
2749
2989
|
|
|
2750
2990
|
.k-i-table-add::before {
|
|
2751
|
-
|
|
2991
|
+
content: "\e676";
|
|
2752
2992
|
}
|
|
2753
2993
|
|
|
2754
2994
|
.k-i-table-light-dialog::before {
|
|
2755
|
-
|
|
2995
|
+
content: "\e676";
|
|
2756
2996
|
}
|
|
2757
2997
|
|
|
2758
2998
|
.k-i-table-insert::before {
|
|
2759
|
-
|
|
2999
|
+
content: "\e676";
|
|
2760
3000
|
}
|
|
2761
3001
|
|
|
2762
3002
|
.k-i-create-table::before {
|
|
2763
|
-
|
|
3003
|
+
content: "\e676";
|
|
2764
3004
|
}
|
|
2765
3005
|
|
|
2766
3006
|
.k-i-table::before {
|
|
2767
|
-
|
|
3007
|
+
content: "\e677";
|
|
2768
3008
|
}
|
|
2769
3009
|
|
|
2770
3010
|
.k-i-table-properties::before {
|
|
2771
|
-
|
|
3011
|
+
content: "\e678";
|
|
2772
3012
|
}
|
|
2773
3013
|
|
|
2774
3014
|
.k-i-table-cell::before {
|
|
2775
|
-
|
|
3015
|
+
content: "\e679";
|
|
2776
3016
|
}
|
|
2777
3017
|
|
|
2778
3018
|
.k-i-table-cell-properties::before {
|
|
2779
|
-
|
|
3019
|
+
content: "\e67a";
|
|
2780
3020
|
}
|
|
2781
3021
|
|
|
2782
3022
|
.k-i-table-column-insert-left::before {
|
|
2783
|
-
|
|
3023
|
+
content: "\e67b";
|
|
2784
3024
|
}
|
|
2785
3025
|
|
|
2786
3026
|
.k-i-add-column-left::before {
|
|
2787
|
-
|
|
3027
|
+
content: "\e67b";
|
|
2788
3028
|
}
|
|
2789
3029
|
|
|
2790
3030
|
.k-i-table-column-insert-right::before {
|
|
2791
|
-
|
|
3031
|
+
content: "\e67c";
|
|
2792
3032
|
}
|
|
2793
3033
|
|
|
2794
3034
|
.k-i-add-column-right::before {
|
|
2795
|
-
|
|
3035
|
+
content: "\e67c";
|
|
2796
3036
|
}
|
|
2797
3037
|
|
|
2798
3038
|
.k-i-table-row-insert-above::before {
|
|
2799
|
-
|
|
3039
|
+
content: "\e67d";
|
|
2800
3040
|
}
|
|
2801
3041
|
|
|
2802
3042
|
.k-i-add-row-above::before {
|
|
2803
|
-
|
|
3043
|
+
content: "\e67d";
|
|
2804
3044
|
}
|
|
2805
3045
|
|
|
2806
3046
|
.k-i-table-row-insert-below::before {
|
|
2807
|
-
|
|
3047
|
+
content: "\e67e";
|
|
2808
3048
|
}
|
|
2809
3049
|
|
|
2810
3050
|
.k-i-add-row-below::before {
|
|
2811
|
-
|
|
3051
|
+
content: "\e67e";
|
|
2812
3052
|
}
|
|
2813
3053
|
|
|
2814
3054
|
.k-i-table-column-delete::before {
|
|
2815
|
-
|
|
3055
|
+
content: "\e67f";
|
|
2816
3056
|
}
|
|
2817
3057
|
|
|
2818
3058
|
.k-i-delete-column::before {
|
|
2819
|
-
|
|
3059
|
+
content: "\e67f";
|
|
2820
3060
|
}
|
|
2821
3061
|
|
|
2822
3062
|
.k-i-table-row-delete::before {
|
|
2823
|
-
|
|
3063
|
+
content: "\e680";
|
|
2824
3064
|
}
|
|
2825
3065
|
|
|
2826
3066
|
.k-i-delete-row::before {
|
|
2827
|
-
|
|
3067
|
+
content: "\e680";
|
|
2828
3068
|
}
|
|
2829
3069
|
|
|
2830
3070
|
.k-i-table-cell-delete::before {
|
|
2831
|
-
|
|
3071
|
+
content: "\e681";
|
|
2832
3072
|
}
|
|
2833
3073
|
|
|
2834
3074
|
.k-i-table-delete::before {
|
|
2835
|
-
|
|
3075
|
+
content: "\e682";
|
|
2836
3076
|
}
|
|
2837
3077
|
|
|
2838
3078
|
.k-i-cells-merge::before {
|
|
2839
|
-
|
|
3079
|
+
content: "\e683";
|
|
2840
3080
|
}
|
|
2841
3081
|
|
|
2842
3082
|
.k-i-merge-cells::before {
|
|
2843
|
-
|
|
3083
|
+
content: "\e683";
|
|
2844
3084
|
}
|
|
2845
3085
|
|
|
2846
3086
|
.k-i-cells-merge-horizontally::before {
|
|
2847
|
-
|
|
3087
|
+
content: "\e684";
|
|
2848
3088
|
}
|
|
2849
3089
|
|
|
2850
3090
|
.k-i-cells-merge-h::before {
|
|
2851
|
-
|
|
3091
|
+
content: "\e684";
|
|
2852
3092
|
}
|
|
2853
3093
|
|
|
2854
3094
|
.k-i-merge-horizontally::before {
|
|
2855
|
-
|
|
3095
|
+
content: "\e684";
|
|
2856
3096
|
}
|
|
2857
3097
|
|
|
2858
3098
|
.k-i-cells-merge-vertically::before {
|
|
2859
|
-
|
|
3099
|
+
content: "\e685";
|
|
2860
3100
|
}
|
|
2861
3101
|
|
|
2862
3102
|
.k-i-cells-merge-v::before {
|
|
2863
|
-
|
|
3103
|
+
content: "\e685";
|
|
2864
3104
|
}
|
|
2865
3105
|
|
|
2866
3106
|
.k-i-merge-vertically::before {
|
|
2867
|
-
|
|
3107
|
+
content: "\e685";
|
|
2868
3108
|
}
|
|
2869
3109
|
|
|
2870
3110
|
.k-i-cell-split-horizontally::before {
|
|
2871
|
-
|
|
3111
|
+
content: "\e686";
|
|
2872
3112
|
}
|
|
2873
3113
|
|
|
2874
3114
|
.k-i-cells-split-h::before {
|
|
2875
|
-
|
|
3115
|
+
content: "\e686";
|
|
2876
3116
|
}
|
|
2877
3117
|
|
|
2878
3118
|
.k-i-cell-split-vertically::before {
|
|
2879
|
-
|
|
3119
|
+
content: "\e687";
|
|
2880
3120
|
}
|
|
2881
3121
|
|
|
2882
3122
|
.k-i-cells-split-v::before {
|
|
2883
|
-
|
|
3123
|
+
content: "\e687";
|
|
2884
3124
|
}
|
|
2885
3125
|
|
|
2886
3126
|
.k-i-table-unmerge::before {
|
|
2887
|
-
|
|
3127
|
+
content: "\e688";
|
|
2888
3128
|
}
|
|
2889
3129
|
|
|
2890
3130
|
.k-i-normal-layout::before {
|
|
2891
|
-
|
|
3131
|
+
content: "\e688";
|
|
2892
3132
|
}
|
|
2893
3133
|
|
|
2894
3134
|
.k-i-pane-freeze::before {
|
|
2895
|
-
|
|
3135
|
+
content: "\e689";
|
|
2896
3136
|
}
|
|
2897
3137
|
|
|
2898
3138
|
.k-i-freeze-pane::before {
|
|
2899
|
-
|
|
3139
|
+
content: "\e689";
|
|
2900
3140
|
}
|
|
2901
3141
|
|
|
2902
3142
|
.k-i-row-freeze::before {
|
|
2903
|
-
|
|
3143
|
+
content: "\e68a";
|
|
2904
3144
|
}
|
|
2905
3145
|
|
|
2906
3146
|
.k-i-freeze-row::before {
|
|
2907
|
-
|
|
3147
|
+
content: "\e68a";
|
|
2908
3148
|
}
|
|
2909
3149
|
|
|
2910
3150
|
.k-i-column-freeze::before {
|
|
2911
|
-
|
|
3151
|
+
content: "\e68b";
|
|
2912
3152
|
}
|
|
2913
3153
|
|
|
2914
3154
|
.k-i-col-freeze::before {
|
|
2915
|
-
|
|
3155
|
+
content: "\e68b";
|
|
2916
3156
|
}
|
|
2917
3157
|
|
|
2918
3158
|
.k-i-freeze-col::before {
|
|
2919
|
-
|
|
3159
|
+
content: "\e68b";
|
|
2920
3160
|
}
|
|
2921
3161
|
|
|
2922
3162
|
.k-i-toolbar-float::before {
|
|
2923
|
-
|
|
3163
|
+
content: "\e68c";
|
|
2924
3164
|
}
|
|
2925
3165
|
|
|
2926
3166
|
.k-i-spell-checker::before {
|
|
2927
|
-
|
|
3167
|
+
content: "\e68d";
|
|
2928
3168
|
}
|
|
2929
3169
|
|
|
2930
3170
|
.k-i-validation-xhtml::before {
|
|
2931
|
-
|
|
3171
|
+
content: "\e68e";
|
|
2932
3172
|
}
|
|
2933
3173
|
|
|
2934
3174
|
.k-i-validation-data::before {
|
|
2935
|
-
|
|
3175
|
+
content: "\e68f";
|
|
2936
3176
|
}
|
|
2937
3177
|
|
|
2938
3178
|
.k-i-toggle-full-screen-mode::before {
|
|
2939
|
-
|
|
3179
|
+
content: "\e690";
|
|
2940
3180
|
}
|
|
2941
3181
|
|
|
2942
3182
|
.k-i-formula-fx::before {
|
|
2943
|
-
|
|
3183
|
+
content: "\e691";
|
|
2944
3184
|
}
|
|
2945
3185
|
|
|
2946
3186
|
.k-i-fx::before {
|
|
2947
|
-
|
|
3187
|
+
content: "\e691";
|
|
2948
3188
|
}
|
|
2949
3189
|
|
|
2950
3190
|
.k-i-sum::before {
|
|
2951
|
-
|
|
3191
|
+
content: "\e692";
|
|
2952
3192
|
}
|
|
2953
3193
|
|
|
2954
3194
|
.k-i-symbol::before {
|
|
2955
|
-
|
|
3195
|
+
content: "\e693";
|
|
2956
3196
|
}
|
|
2957
3197
|
|
|
2958
3198
|
.k-i-dollar::before {
|
|
2959
|
-
|
|
3199
|
+
content: "\e694";
|
|
2960
3200
|
}
|
|
2961
3201
|
|
|
2962
3202
|
.k-i-currency::before {
|
|
2963
|
-
|
|
3203
|
+
content: "\e694";
|
|
2964
3204
|
}
|
|
2965
3205
|
|
|
2966
3206
|
.k-i-percent::before {
|
|
2967
|
-
|
|
3207
|
+
content: "\e695";
|
|
2968
3208
|
}
|
|
2969
3209
|
|
|
2970
3210
|
.k-i-custom-format::before {
|
|
2971
|
-
|
|
3211
|
+
content: "\e696";
|
|
2972
3212
|
}
|
|
2973
3213
|
|
|
2974
3214
|
.k-i-format-number::before {
|
|
2975
|
-
|
|
3215
|
+
content: "\e696";
|
|
2976
3216
|
}
|
|
2977
3217
|
|
|
2978
3218
|
.k-i-decimal-increase::before {
|
|
2979
|
-
|
|
3219
|
+
content: "\e697";
|
|
2980
3220
|
}
|
|
2981
3221
|
|
|
2982
3222
|
.k-i-increace-decimal::before {
|
|
2983
|
-
|
|
3223
|
+
content: "\e697";
|
|
2984
3224
|
}
|
|
2985
3225
|
|
|
2986
3226
|
.k-i-decimal-decrease::before {
|
|
2987
|
-
|
|
3227
|
+
content: "\e698";
|
|
2988
3228
|
}
|
|
2989
3229
|
|
|
2990
3230
|
.k-i-decrease-decimal::before {
|
|
2991
|
-
|
|
3231
|
+
content: "\e698";
|
|
2992
3232
|
}
|
|
2993
3233
|
|
|
2994
3234
|
.k-i-font-size::before {
|
|
2995
|
-
|
|
3235
|
+
content: "\e699";
|
|
2996
3236
|
}
|
|
2997
3237
|
|
|
2998
3238
|
.k-i-image-absolute-position::before {
|
|
2999
|
-
|
|
3239
|
+
content: "\e69a";
|
|
3000
3240
|
}
|
|
3001
3241
|
|
|
3002
3242
|
.k-i-table-wizard::before {
|
|
3003
|
-
|
|
3243
|
+
content: "\e69b";
|
|
3004
3244
|
}
|
|
3005
3245
|
|
|
3006
3246
|
.k-i-crosstab::before {
|
|
3007
|
-
|
|
3247
|
+
content: "\e69c";
|
|
3008
3248
|
}
|
|
3009
3249
|
|
|
3010
3250
|
.k-i-crosstab-wizard::before {
|
|
3011
|
-
|
|
3251
|
+
content: "\e69d";
|
|
3012
3252
|
}
|
|
3013
3253
|
|
|
3014
3254
|
.k-i-table-body::before {
|
|
3015
|
-
|
|
3255
|
+
content: "\e69e";
|
|
3016
3256
|
}
|
|
3017
3257
|
|
|
3018
3258
|
.k-i-table-column-groups::before {
|
|
3019
|
-
|
|
3259
|
+
content: "\e69f";
|
|
3020
3260
|
}
|
|
3021
3261
|
|
|
3022
3262
|
.k-i-table-corner::before {
|
|
3023
|
-
|
|
3263
|
+
content: "\e6a0";
|
|
3024
3264
|
}
|
|
3025
3265
|
|
|
3026
3266
|
.k-i-table-row-groups::before {
|
|
3027
|
-
|
|
3267
|
+
content: "\e6a1";
|
|
3028
3268
|
}
|
|
3029
3269
|
|
|
3030
3270
|
.k-i-globe-outline::before {
|
|
3031
|
-
|
|
3271
|
+
content: "\e700";
|
|
3032
3272
|
}
|
|
3033
3273
|
|
|
3034
3274
|
.k-i-globe::before {
|
|
3035
|
-
|
|
3275
|
+
content: "\e701";
|
|
3036
3276
|
}
|
|
3037
3277
|
|
|
3038
3278
|
.k-i-map-marker::before {
|
|
3039
|
-
|
|
3279
|
+
content: "\e702";
|
|
3040
3280
|
}
|
|
3041
3281
|
|
|
3042
3282
|
.k-i-marker-pin::before {
|
|
3043
|
-
|
|
3283
|
+
content: "\e702";
|
|
3044
3284
|
}
|
|
3045
3285
|
|
|
3046
3286
|
.k-i-map-marker-target::before {
|
|
3047
|
-
|
|
3287
|
+
content: "\e703";
|
|
3048
3288
|
}
|
|
3049
3289
|
|
|
3050
3290
|
.k-i-marker-pin-target::before {
|
|
3051
|
-
|
|
3291
|
+
content: "\e703";
|
|
3052
3292
|
}
|
|
3053
3293
|
|
|
3054
3294
|
.k-i-pin::before {
|
|
3055
|
-
|
|
3295
|
+
content: "\e704";
|
|
3056
3296
|
}
|
|
3057
3297
|
|
|
3058
3298
|
.k-i-unpin::before {
|
|
3059
|
-
|
|
3299
|
+
content: "\e705";
|
|
3060
3300
|
}
|
|
3061
3301
|
|
|
3062
3302
|
.k-i-share::before {
|
|
3063
|
-
|
|
3303
|
+
content: "\e800";
|
|
3064
3304
|
}
|
|
3065
3305
|
|
|
3066
3306
|
.k-i-user::before {
|
|
3067
|
-
|
|
3307
|
+
content: "\e801";
|
|
3068
3308
|
}
|
|
3069
3309
|
|
|
3070
3310
|
.k-i-inbox::before {
|
|
3071
|
-
|
|
3311
|
+
content: "\e802";
|
|
3072
3312
|
}
|
|
3073
3313
|
|
|
3074
3314
|
.k-i-blogger::before {
|
|
3075
|
-
|
|
3315
|
+
content: "\e803";
|
|
3076
3316
|
}
|
|
3077
3317
|
|
|
3078
3318
|
.k-i-blogger-box::before {
|
|
3079
|
-
|
|
3319
|
+
content: "\e804";
|
|
3080
3320
|
}
|
|
3081
3321
|
|
|
3082
3322
|
.k-i-delicious::before {
|
|
3083
|
-
|
|
3323
|
+
content: "\e805";
|
|
3084
3324
|
}
|
|
3085
3325
|
|
|
3086
3326
|
.k-i-delicious-box::before {
|
|
3087
|
-
|
|
3327
|
+
content: "\e806";
|
|
3088
3328
|
}
|
|
3089
3329
|
|
|
3090
3330
|
.k-i-digg::before {
|
|
3091
|
-
|
|
3331
|
+
content: "\e807";
|
|
3092
3332
|
}
|
|
3093
3333
|
|
|
3094
3334
|
.k-i-digg-box::before {
|
|
3095
|
-
|
|
3335
|
+
content: "\e808";
|
|
3096
3336
|
}
|
|
3097
3337
|
|
|
3098
3338
|
.k-i-envelop::before {
|
|
3099
|
-
|
|
3339
|
+
content: "\e809";
|
|
3100
3340
|
}
|
|
3101
3341
|
|
|
3102
3342
|
.k-i-email::before {
|
|
3103
|
-
|
|
3343
|
+
content: "\e809";
|
|
3104
3344
|
}
|
|
3105
3345
|
|
|
3106
3346
|
.k-i-letter::before {
|
|
3107
|
-
|
|
3347
|
+
content: "\e809";
|
|
3108
3348
|
}
|
|
3109
3349
|
|
|
3110
3350
|
.k-i-envelop-box::before {
|
|
3111
|
-
|
|
3351
|
+
content: "\e80a";
|
|
3112
3352
|
}
|
|
3113
3353
|
|
|
3114
3354
|
.k-i-email-box::before {
|
|
3115
|
-
|
|
3355
|
+
content: "\e80a";
|
|
3116
3356
|
}
|
|
3117
3357
|
|
|
3118
3358
|
.k-i-letter-box::before {
|
|
3119
|
-
|
|
3359
|
+
content: "\e80a";
|
|
3120
3360
|
}
|
|
3121
3361
|
|
|
3122
3362
|
.k-i-facebook::before {
|
|
3123
|
-
|
|
3363
|
+
content: "\e80b";
|
|
3124
3364
|
}
|
|
3125
3365
|
|
|
3126
3366
|
.k-i-facebook-box::before {
|
|
3127
|
-
|
|
3367
|
+
content: "\e80c";
|
|
3128
3368
|
}
|
|
3129
3369
|
|
|
3130
3370
|
.k-i-google::before {
|
|
3131
|
-
|
|
3371
|
+
content: "\e80d";
|
|
3132
3372
|
}
|
|
3133
3373
|
|
|
3134
3374
|
.k-i-google-box::before {
|
|
3135
|
-
|
|
3375
|
+
content: "\e80e";
|
|
3136
3376
|
}
|
|
3137
3377
|
|
|
3138
3378
|
.k-i-google-plus::before {
|
|
3139
|
-
|
|
3379
|
+
content: "\e80f";
|
|
3140
3380
|
}
|
|
3141
3381
|
|
|
3142
3382
|
.k-i-google-plus-box::before {
|
|
3143
|
-
|
|
3383
|
+
content: "\e810";
|
|
3144
3384
|
}
|
|
3145
3385
|
|
|
3146
3386
|
.k-i-linkedin::before {
|
|
3147
|
-
|
|
3387
|
+
content: "\e811";
|
|
3148
3388
|
}
|
|
3149
3389
|
|
|
3150
3390
|
.k-i-linkedin-box::before {
|
|
3151
|
-
|
|
3391
|
+
content: "\e812";
|
|
3152
3392
|
}
|
|
3153
3393
|
|
|
3154
3394
|
.k-i-myspace::before {
|
|
3155
|
-
|
|
3395
|
+
content: "\e813";
|
|
3156
3396
|
}
|
|
3157
3397
|
|
|
3158
3398
|
.k-i-myspace-box::before {
|
|
3159
|
-
|
|
3399
|
+
content: "\e814";
|
|
3160
3400
|
}
|
|
3161
3401
|
|
|
3162
3402
|
.k-i-pinterest::before {
|
|
3163
|
-
|
|
3403
|
+
content: "\e815";
|
|
3164
3404
|
}
|
|
3165
3405
|
|
|
3166
3406
|
.k-i-pinterest-box::before {
|
|
3167
|
-
|
|
3407
|
+
content: "\e816";
|
|
3168
3408
|
}
|
|
3169
3409
|
|
|
3170
3410
|
.k-i-reddit::before {
|
|
3171
|
-
|
|
3411
|
+
content: "\e817";
|
|
3172
3412
|
}
|
|
3173
3413
|
|
|
3174
3414
|
.k-i-reddit-box::before {
|
|
3175
|
-
|
|
3415
|
+
content: "\e818";
|
|
3176
3416
|
}
|
|
3177
3417
|
|
|
3178
3418
|
.k-i-stumble-upon::before {
|
|
3179
|
-
|
|
3419
|
+
content: "\e819";
|
|
3180
3420
|
}
|
|
3181
3421
|
|
|
3182
3422
|
.k-i-stumble-upon-box::before {
|
|
3183
|
-
|
|
3423
|
+
content: "\e81a";
|
|
3184
3424
|
}
|
|
3185
3425
|
|
|
3186
3426
|
.k-i-tell-a-friend::before {
|
|
3187
|
-
|
|
3427
|
+
content: "\e81b";
|
|
3188
3428
|
}
|
|
3189
3429
|
|
|
3190
3430
|
.k-i-tell-a-friend-box::before {
|
|
3191
|
-
|
|
3431
|
+
content: "\e81c";
|
|
3192
3432
|
}
|
|
3193
3433
|
|
|
3194
3434
|
.k-i-tumblr::before {
|
|
3195
|
-
|
|
3435
|
+
content: "\e81d";
|
|
3196
3436
|
}
|
|
3197
3437
|
|
|
3198
3438
|
.k-i-tumblr-box::before {
|
|
3199
|
-
|
|
3439
|
+
content: "\e81e";
|
|
3200
3440
|
}
|
|
3201
3441
|
|
|
3202
3442
|
.k-i-twitter::before {
|
|
3203
|
-
|
|
3443
|
+
content: "\e81f";
|
|
3204
3444
|
}
|
|
3205
3445
|
|
|
3206
3446
|
.k-i-twitter-box::before {
|
|
3207
|
-
|
|
3447
|
+
content: "\e820";
|
|
3208
3448
|
}
|
|
3209
3449
|
|
|
3210
3450
|
.k-i-yammer::before {
|
|
3211
|
-
|
|
3451
|
+
content: "\e821";
|
|
3212
3452
|
}
|
|
3213
3453
|
|
|
3214
3454
|
.k-i-yammer-box::before {
|
|
3215
|
-
|
|
3455
|
+
content: "\e822";
|
|
3216
3456
|
}
|
|
3217
3457
|
|
|
3218
3458
|
.k-i-behance::before {
|
|
3219
|
-
|
|
3459
|
+
content: "\e823";
|
|
3220
3460
|
}
|
|
3221
3461
|
|
|
3222
3462
|
.k-i-behance-box::before {
|
|
3223
|
-
|
|
3463
|
+
content: "\e824";
|
|
3224
3464
|
}
|
|
3225
3465
|
|
|
3226
3466
|
.k-i-dribbble::before {
|
|
3227
|
-
|
|
3467
|
+
content: "\e825";
|
|
3228
3468
|
}
|
|
3229
3469
|
|
|
3230
3470
|
.k-i-dribbble-box::before {
|
|
3231
|
-
|
|
3471
|
+
content: "\e826";
|
|
3232
3472
|
}
|
|
3233
3473
|
|
|
3234
3474
|
.k-i-rss::before {
|
|
3235
|
-
|
|
3475
|
+
content: "\e827";
|
|
3236
3476
|
}
|
|
3237
3477
|
|
|
3238
3478
|
.k-i-rss-box::before {
|
|
3239
|
-
|
|
3479
|
+
content: "\e828";
|
|
3240
3480
|
}
|
|
3241
3481
|
|
|
3242
3482
|
.k-i-vimeo::before {
|
|
3243
|
-
|
|
3483
|
+
content: "\e829";
|
|
3244
3484
|
}
|
|
3245
3485
|
|
|
3246
3486
|
.k-i-vimeo-box::before {
|
|
3247
|
-
|
|
3487
|
+
content: "\e82a";
|
|
3248
3488
|
}
|
|
3249
3489
|
|
|
3250
3490
|
.k-i-youtube::before {
|
|
3251
|
-
|
|
3491
|
+
content: "\e82b";
|
|
3252
3492
|
}
|
|
3253
3493
|
|
|
3254
3494
|
.k-i-youtube-box::before {
|
|
3255
|
-
|
|
3495
|
+
content: "\e82c";
|
|
3256
3496
|
}
|
|
3257
3497
|
|
|
3258
3498
|
.k-i-folder::before {
|
|
3259
|
-
|
|
3499
|
+
content: "\e900";
|
|
3260
3500
|
}
|
|
3261
3501
|
|
|
3262
3502
|
.k-i-folder-open::before {
|
|
3263
|
-
|
|
3503
|
+
content: "\e901";
|
|
3264
3504
|
}
|
|
3265
3505
|
|
|
3266
3506
|
.k-i-folder-add::before {
|
|
3267
|
-
|
|
3507
|
+
content: "\e902";
|
|
3268
3508
|
}
|
|
3269
3509
|
|
|
3270
3510
|
.k-i-folder-up::before {
|
|
3271
|
-
|
|
3511
|
+
content: "\e903";
|
|
3272
3512
|
}
|
|
3273
3513
|
|
|
3274
3514
|
.k-i-folder-more::before {
|
|
3275
|
-
|
|
3515
|
+
content: "\e904";
|
|
3276
3516
|
}
|
|
3277
3517
|
|
|
3278
3518
|
.k-i-fields-more::before {
|
|
3279
|
-
|
|
3519
|
+
content: "\e904";
|
|
3280
3520
|
}
|
|
3281
3521
|
|
|
3282
3522
|
.k-i-aggregate-fields::before {
|
|
3283
|
-
|
|
3523
|
+
content: "\e905";
|
|
3284
3524
|
}
|
|
3285
3525
|
|
|
3286
3526
|
.k-i-file::before {
|
|
3287
|
-
|
|
3527
|
+
content: "\e906";
|
|
3288
3528
|
}
|
|
3289
3529
|
|
|
3290
3530
|
.k-i-file-vertical::before {
|
|
3291
|
-
|
|
3531
|
+
content: "\e906";
|
|
3292
3532
|
}
|
|
3293
3533
|
|
|
3294
3534
|
.k-i-page-portrait::before {
|
|
3295
|
-
|
|
3535
|
+
content: "\e906";
|
|
3296
3536
|
}
|
|
3297
3537
|
|
|
3298
3538
|
.k-i-file-v::before {
|
|
3299
|
-
|
|
3539
|
+
content: "\e906";
|
|
3300
3540
|
}
|
|
3301
3541
|
|
|
3302
3542
|
.k-i-file-add::before {
|
|
3303
|
-
|
|
3543
|
+
content: "\e907";
|
|
3304
3544
|
}
|
|
3305
3545
|
|
|
3306
3546
|
.k-i-insert-file::before {
|
|
3307
|
-
|
|
3547
|
+
content: "\e907";
|
|
3308
3548
|
}
|
|
3309
3549
|
|
|
3310
3550
|
.k-i-file-txt::before {
|
|
3311
|
-
|
|
3551
|
+
content: "\e908";
|
|
3312
3552
|
}
|
|
3313
3553
|
|
|
3314
3554
|
.k-i-txt::before {
|
|
3315
|
-
|
|
3555
|
+
content: "\e908";
|
|
3316
3556
|
}
|
|
3317
3557
|
|
|
3318
3558
|
.k-i-file-csv::before {
|
|
3319
|
-
|
|
3559
|
+
content: "\e909";
|
|
3320
3560
|
}
|
|
3321
3561
|
|
|
3322
3562
|
.k-i-csv::before {
|
|
3323
|
-
|
|
3563
|
+
content: "\e909";
|
|
3324
3564
|
}
|
|
3325
3565
|
|
|
3326
3566
|
.k-i-file-excel::before {
|
|
3327
|
-
|
|
3567
|
+
content: "\e90a";
|
|
3328
3568
|
}
|
|
3329
3569
|
|
|
3330
3570
|
.k-i-file-xls::before {
|
|
3331
|
-
|
|
3571
|
+
content: "\e90a";
|
|
3332
3572
|
}
|
|
3333
3573
|
|
|
3334
3574
|
.k-i-excel::before {
|
|
3335
|
-
|
|
3575
|
+
content: "\e90a";
|
|
3336
3576
|
}
|
|
3337
3577
|
|
|
3338
3578
|
.k-i-xls::before {
|
|
3339
|
-
|
|
3579
|
+
content: "\e90a";
|
|
3340
3580
|
}
|
|
3341
3581
|
|
|
3342
3582
|
.k-i-xlsa::before {
|
|
3343
|
-
|
|
3583
|
+
content: "\e90a";
|
|
3344
3584
|
}
|
|
3345
3585
|
|
|
3346
3586
|
.k-i-file-word::before {
|
|
3347
|
-
|
|
3587
|
+
content: "\e90b";
|
|
3348
3588
|
}
|
|
3349
3589
|
|
|
3350
3590
|
.k-i-file-doc::before {
|
|
3351
|
-
|
|
3591
|
+
content: "\e90b";
|
|
3352
3592
|
}
|
|
3353
3593
|
|
|
3354
3594
|
.k-i-word::before {
|
|
3355
|
-
|
|
3595
|
+
content: "\e90b";
|
|
3356
3596
|
}
|
|
3357
3597
|
|
|
3358
3598
|
.k-i-doc::before {
|
|
3359
|
-
|
|
3599
|
+
content: "\e90b";
|
|
3360
3600
|
}
|
|
3361
3601
|
|
|
3362
3602
|
.k-i-file-mdb::before {
|
|
3363
|
-
|
|
3603
|
+
content: "\e90c";
|
|
3364
3604
|
}
|
|
3365
3605
|
|
|
3366
3606
|
.k-i-mdb::before {
|
|
3367
|
-
|
|
3607
|
+
content: "\e90c";
|
|
3368
3608
|
}
|
|
3369
3609
|
|
|
3370
3610
|
.k-i-file-ppt::before {
|
|
3371
|
-
|
|
3611
|
+
content: "\e90d";
|
|
3372
3612
|
}
|
|
3373
3613
|
|
|
3374
3614
|
.k-i-ppt::before {
|
|
3375
|
-
|
|
3615
|
+
content: "\e90d";
|
|
3376
3616
|
}
|
|
3377
3617
|
|
|
3378
3618
|
.k-i-file-pdf::before {
|
|
3379
|
-
|
|
3619
|
+
content: "\e90e";
|
|
3380
3620
|
}
|
|
3381
3621
|
|
|
3382
3622
|
.k-i-pdf::before {
|
|
3383
|
-
|
|
3623
|
+
content: "\e90e";
|
|
3384
3624
|
}
|
|
3385
3625
|
|
|
3386
3626
|
.k-i-pdfa::before {
|
|
3387
|
-
|
|
3627
|
+
content: "\e90e";
|
|
3388
3628
|
}
|
|
3389
3629
|
|
|
3390
3630
|
.k-i-file-psd::before {
|
|
3391
|
-
|
|
3631
|
+
content: "\e90f";
|
|
3392
3632
|
}
|
|
3393
3633
|
|
|
3394
3634
|
.k-i-psd::before {
|
|
3395
|
-
|
|
3635
|
+
content: "\e90f";
|
|
3396
3636
|
}
|
|
3397
3637
|
|
|
3398
3638
|
.k-i-file-flash::before {
|
|
3399
|
-
|
|
3639
|
+
content: "\e910";
|
|
3400
3640
|
}
|
|
3401
3641
|
|
|
3402
3642
|
.k-i-flash::before {
|
|
3403
|
-
|
|
3643
|
+
content: "\e910";
|
|
3404
3644
|
}
|
|
3405
3645
|
|
|
3406
3646
|
.k-i-file-config::before {
|
|
3407
|
-
|
|
3647
|
+
content: "\e911";
|
|
3408
3648
|
}
|
|
3409
3649
|
|
|
3410
3650
|
.k-i-config::before {
|
|
3411
|
-
|
|
3651
|
+
content: "\e911";
|
|
3412
3652
|
}
|
|
3413
3653
|
|
|
3414
3654
|
.k-i-file-ascx::before {
|
|
3415
|
-
|
|
3655
|
+
content: "\e912";
|
|
3416
3656
|
}
|
|
3417
3657
|
|
|
3418
3658
|
.k-i-ascx::before {
|
|
3419
|
-
|
|
3659
|
+
content: "\e912";
|
|
3420
3660
|
}
|
|
3421
3661
|
|
|
3422
3662
|
.k-i-file-bac::before {
|
|
3423
|
-
|
|
3663
|
+
content: "\e913";
|
|
3424
3664
|
}
|
|
3425
3665
|
|
|
3426
3666
|
.k-i-bac::before {
|
|
3427
|
-
|
|
3667
|
+
content: "\e913";
|
|
3428
3668
|
}
|
|
3429
3669
|
|
|
3430
3670
|
.k-i-file-zip::before {
|
|
3431
|
-
|
|
3671
|
+
content: "\e914";
|
|
3432
3672
|
}
|
|
3433
3673
|
|
|
3434
3674
|
.k-i-zip::before {
|
|
3435
|
-
|
|
3675
|
+
content: "\e914";
|
|
3436
3676
|
}
|
|
3437
3677
|
|
|
3438
3678
|
.k-i-film::before {
|
|
3439
|
-
|
|
3679
|
+
content: "\e915";
|
|
3440
3680
|
}
|
|
3441
3681
|
|
|
3442
3682
|
.k-i-css3::before {
|
|
3443
|
-
|
|
3683
|
+
content: "\e916";
|
|
3444
3684
|
}
|
|
3445
3685
|
|
|
3446
3686
|
.k-i-html5::before {
|
|
3447
|
-
|
|
3687
|
+
content: "\e917";
|
|
3448
3688
|
}
|
|
3449
3689
|
|
|
3450
3690
|
.k-i-code::before {
|
|
3451
|
-
|
|
3691
|
+
content: "\e918";
|
|
3452
3692
|
}
|
|
3453
3693
|
|
|
3454
3694
|
.k-i-html::before {
|
|
3455
|
-
|
|
3695
|
+
content: "\e918";
|
|
3456
3696
|
}
|
|
3457
3697
|
|
|
3458
3698
|
.k-i-source-code::before {
|
|
3459
|
-
|
|
3699
|
+
content: "\e918";
|
|
3460
3700
|
}
|
|
3461
3701
|
|
|
3462
3702
|
.k-i-view-source::before {
|
|
3463
|
-
|
|
3703
|
+
content: "\e918";
|
|
3464
3704
|
}
|
|
3465
3705
|
|
|
3466
3706
|
.k-i-css::before {
|
|
3467
|
-
|
|
3707
|
+
content: "\e919";
|
|
3468
3708
|
}
|
|
3469
3709
|
|
|
3470
3710
|
.k-i-js::before {
|
|
3471
|
-
|
|
3711
|
+
content: "\e91a";
|
|
3472
3712
|
}
|
|
3473
3713
|
|
|
3474
3714
|
.k-i-exe::before {
|
|
3475
|
-
|
|
3715
|
+
content: "\e91b";
|
|
3476
3716
|
}
|
|
3477
3717
|
|
|
3478
3718
|
.k-i-csproj::before {
|
|
3479
|
-
|
|
3719
|
+
content: "\e91c";
|
|
3480
3720
|
}
|
|
3481
3721
|
|
|
3482
3722
|
.k-i-vbproj::before {
|
|
3483
|
-
|
|
3723
|
+
content: "\e91d";
|
|
3484
3724
|
}
|
|
3485
3725
|
|
|
3486
3726
|
.k-i-cs::before {
|
|
3487
|
-
|
|
3727
|
+
content: "\e91e";
|
|
3488
3728
|
}
|
|
3489
3729
|
|
|
3490
3730
|
.k-i-vb::before {
|
|
3491
|
-
|
|
3731
|
+
content: "\e91f";
|
|
3492
3732
|
}
|
|
3493
3733
|
|
|
3494
3734
|
.k-i-sln::before {
|
|
3495
|
-
|
|
3735
|
+
content: "\e920";
|
|
3496
3736
|
}
|
|
3497
3737
|
|
|
3498
3738
|
.k-i-cloud::before {
|
|
3499
|
-
|
|
3739
|
+
content: "\e921";
|
|
3500
3740
|
}
|
|
3501
3741
|
|
|
3502
3742
|
.k-i-file-horizontal::before {
|
|
3503
|
-
|
|
3743
|
+
content: "\e922";
|
|
3504
3744
|
}
|
|
3505
3745
|
|
|
3506
3746
|
.k-i-page-landscape::before {
|
|
3507
|
-
|
|
3747
|
+
content: "\e922";
|
|
3508
3748
|
}
|
|
3509
3749
|
|
|
3510
3750
|
.k-i-file-h::before {
|
|
3511
|
-
|
|
3751
|
+
content: "\e922";
|
|
3512
3752
|
}
|
|
3513
3753
|
|
|
3514
3754
|
.k-i-subreport::before {
|
|
3515
|
-
|
|
3755
|
+
content: "\e923";
|
|
3516
3756
|
}
|
|
3517
3757
|
|
|
3518
3758
|
.k-i-data::before {
|
|
3519
|
-
|
|
3759
|
+
content: "\e924";
|
|
3760
|
+
}
|
|
3761
|
+
|
|
3762
|
+
.k-i-file-header::before {
|
|
3763
|
+
content: "\e925";
|
|
3520
3764
|
}
|
|
3521
3765
|
|
|
3522
3766
|
.k-i-report-header-section::before {
|
|
3523
|
-
|
|
3767
|
+
content: "\e925";
|
|
3768
|
+
}
|
|
3769
|
+
|
|
3770
|
+
.k-i-file-footer::before {
|
|
3771
|
+
content: "\e926";
|
|
3524
3772
|
}
|
|
3525
3773
|
|
|
3526
3774
|
.k-i-report-footer-section::before {
|
|
3527
|
-
|
|
3775
|
+
content: "\e926";
|
|
3528
3776
|
}
|
|
3529
3777
|
|
|
3530
3778
|
.k-i-group-header-section::before {
|
|
3531
|
-
|
|
3779
|
+
content: "\e927";
|
|
3532
3780
|
}
|
|
3533
3781
|
|
|
3534
3782
|
.k-i-group-footer-section::before {
|
|
3535
|
-
|
|
3783
|
+
content: "\e928";
|
|
3536
3784
|
}
|
|
3537
3785
|
|
|
3538
3786
|
.k-i-page-header-section::before {
|
|
3539
|
-
|
|
3787
|
+
content: "\e929";
|
|
3540
3788
|
}
|
|
3541
3789
|
|
|
3542
3790
|
.k-i-page-footer-section::before {
|
|
3543
|
-
|
|
3791
|
+
content: "\e92a";
|
|
3544
3792
|
}
|
|
3545
3793
|
|
|
3546
3794
|
.k-i-detail-section::before {
|
|
3547
|
-
|
|
3795
|
+
content: "\e92b";
|
|
3548
3796
|
}
|
|
3549
3797
|
|
|
3550
3798
|
.k-i-toc-section::before {
|
|
3551
|
-
|
|
3799
|
+
content: "\e92c";
|
|
3552
3800
|
}
|
|
3553
3801
|
|
|
3554
3802
|
.k-i-group-section::before {
|
|
3555
|
-
|
|
3803
|
+
content: "\e92d";
|
|
3556
3804
|
}
|
|
3557
3805
|
|
|
3558
3806
|
.k-i-parameters::before {
|
|
3559
|
-
|
|
3807
|
+
content: "\e92e";
|
|
3560
3808
|
}
|
|
3561
3809
|
|
|
3562
3810
|
.k-i-data-csv::before {
|
|
3563
|
-
|
|
3811
|
+
content: "\e92f";
|
|
3564
3812
|
}
|
|
3565
3813
|
|
|
3566
3814
|
.k-i-data-json::before {
|
|
3567
|
-
|
|
3815
|
+
content: "\e930";
|
|
3568
3816
|
}
|
|
3569
3817
|
|
|
3570
3818
|
.k-i-data-sql::before {
|
|
3571
|
-
|
|
3819
|
+
content: "\e931";
|
|
3572
3820
|
}
|
|
3573
3821
|
|
|
3574
3822
|
.k-i-data-web::before {
|
|
3575
|
-
|
|
3823
|
+
content: "\e932";
|
|
3576
3824
|
}
|
|
3577
3825
|
|
|
3578
3826
|
.k-i-group-collection::before {
|
|
3579
|
-
|
|
3827
|
+
content: "\e933";
|
|
3580
3828
|
}
|
|
3581
3829
|
|
|
3582
3830
|
.k-i-parameter-boolean::before {
|
|
3583
|
-
|
|
3831
|
+
content: "\e934";
|
|
3584
3832
|
}
|
|
3585
3833
|
|
|
3586
3834
|
.k-i-parameter-date-time::before {
|
|
3587
|
-
|
|
3835
|
+
content: "\e935";
|
|
3588
3836
|
}
|
|
3589
3837
|
|
|
3590
3838
|
.k-i-parameter-float::before {
|
|
3591
|
-
|
|
3839
|
+
content: "\e936";
|
|
3592
3840
|
}
|
|
3593
3841
|
|
|
3594
3842
|
.k-i-parameter-integer::before {
|
|
3595
|
-
|
|
3843
|
+
content: "\e937";
|
|
3596
3844
|
}
|
|
3597
3845
|
|
|
3598
3846
|
.k-i-parameter-string::before {
|
|
3599
|
-
|
|
3847
|
+
content: "\e938";
|
|
3600
3848
|
}
|
|
3601
3849
|
|
|
3602
3850
|
.k-i-toc-section-level::before {
|
|
3603
|
-
|
|
3851
|
+
content: "\e939";
|
|
3604
3852
|
}
|
|
3605
3853
|
|
|
3606
3854
|
.k-i-inherited::before {
|
|
3607
|
-
|
|
3855
|
+
content: "\e93a";
|
|
3608
3856
|
}
|
|
3609
3857
|
|
|
3610
3858
|
.k-i-file-video::before {
|
|
3611
|
-
|
|
3859
|
+
content: "\e93b";
|
|
3612
3860
|
}
|
|
3613
3861
|
|
|
3614
3862
|
.k-i-file-audio::before {
|
|
3615
|
-
|
|
3863
|
+
content: "\e93c";
|
|
3616
3864
|
}
|
|
3617
3865
|
|
|
3618
3866
|
.k-i-file-image::before {
|
|
3619
|
-
|
|
3867
|
+
content: "\e93d";
|
|
3620
3868
|
}
|
|
3621
3869
|
|
|
3622
3870
|
.k-i-file-presentation::before {
|
|
3623
|
-
|
|
3871
|
+
content: "\e93e";
|
|
3624
3872
|
}
|
|
3625
3873
|
|
|
3626
3874
|
.k-i-file-data::before {
|
|
3627
|
-
|
|
3875
|
+
content: "\e93f";
|
|
3628
3876
|
}
|
|
3629
3877
|
|
|
3630
3878
|
.k-i-file-disc-image::before {
|
|
3631
|
-
|
|
3879
|
+
content: "\e940";
|
|
3632
3880
|
}
|
|
3633
3881
|
|
|
3634
3882
|
.k-i-file-programming::before {
|
|
3635
|
-
|
|
3883
|
+
content: "\e941";
|
|
3636
3884
|
}
|
|
3637
3885
|
|
|
3638
3886
|
.k-i-parameters-byte-array::before {
|
|
3639
|
-
|
|
3887
|
+
content: "\e942";
|
|
3640
3888
|
}
|
|
3641
3889
|
|
|
3642
3890
|
.k-i-parameters-unknown::before {
|
|
3643
|
-
|
|
3891
|
+
content: "\e943";
|
|
3644
3892
|
}
|
|
3645
3893
|
|
|
3646
3894
|
.k-i-file-error::before {
|
|
3647
|
-
|
|
3895
|
+
content: "\e944";
|
|
3648
3896
|
}
|
|
3649
3897
|
|
|
3650
3898
|
.k-i-file-validation::before {
|
|
3651
|
-
|
|
3899
|
+
content: "\e944";
|
|
3652
3900
|
}
|
|
3653
3901
|
|
|
3654
3902
|
.k-i-files-error::before {
|
|
3655
|
-
|
|
3903
|
+
content: "\e945";
|
|
3656
3904
|
}
|
|
3657
3905
|
|
|
3658
3906
|
.k-i-files-validation::before {
|
|
3659
|
-
|
|
3907
|
+
content: "\e945";
|
|
3660
3908
|
}
|
|
3661
3909
|
|
|
3662
3910
|
.k-i-data-rest::before {
|
|
3663
|
-
|
|
3911
|
+
content: "\e946";
|
|
3664
3912
|
}
|
|
3665
3913
|
|
|
3666
3914
|
.k-i-file-typescript::before {
|
|
3667
|
-
|
|
3915
|
+
content: "\e947";
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
.k-i-table-position-start::before {
|
|
3919
|
+
content: "\e948";
|
|
3920
|
+
}
|
|
3921
|
+
|
|
3922
|
+
.k-i-table-position-left::before {
|
|
3923
|
+
content: "\e948";
|
|
3924
|
+
}
|
|
3925
|
+
|
|
3926
|
+
.k-i-table-position-center::before {
|
|
3927
|
+
content: "\e949";
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
.k-i-table-position-end::before {
|
|
3931
|
+
content: "\e94a";
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
.k-i-table-position-right::before {
|
|
3935
|
+
content: "\e94a";
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3938
|
+
.k-i-list-roman-upper::before {
|
|
3939
|
+
content: "\e94b";
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3942
|
+
.k-i-list-roman-lower::before {
|
|
3943
|
+
content: "\e94c";
|
|
3944
|
+
}
|
|
3945
|
+
|
|
3946
|
+
.k-i-import::before {
|
|
3947
|
+
content: "\e94d";
|
|
3948
|
+
}
|
|
3949
|
+
|
|
3950
|
+
.k-i-export::before {
|
|
3951
|
+
content: "\e94e";
|
|
3668
3952
|
}
|
|
3669
3953
|
|
|
3670
3954
|
.k-i-graph::before {
|
|
3671
|
-
|
|
3955
|
+
content: "\ea00";
|
|
3672
3956
|
}
|
|
3673
3957
|
|
|
3674
3958
|
.k-i-chart-column-clustered::before {
|
|
3675
|
-
|
|
3959
|
+
content: "\ea01";
|
|
3676
3960
|
}
|
|
3677
3961
|
|
|
3678
3962
|
.k-i-chart-column-stacked::before {
|
|
3679
|
-
|
|
3963
|
+
content: "\ea02";
|
|
3680
3964
|
}
|
|
3681
3965
|
|
|
3682
3966
|
.k-i-chart-column-stacked100::before {
|
|
3683
|
-
|
|
3967
|
+
content: "\ea03";
|
|
3684
3968
|
}
|
|
3685
3969
|
|
|
3686
3970
|
.k-i-chart-column-range::before {
|
|
3687
|
-
|
|
3971
|
+
content: "\ea04";
|
|
3688
3972
|
}
|
|
3689
3973
|
|
|
3690
3974
|
.k-i-chart-bar-clustered::before {
|
|
3691
|
-
|
|
3975
|
+
content: "\ea05";
|
|
3692
3976
|
}
|
|
3693
3977
|
|
|
3694
3978
|
.k-i-chart-bar-stacked::before {
|
|
3695
|
-
|
|
3979
|
+
content: "\ea06";
|
|
3696
3980
|
}
|
|
3697
3981
|
|
|
3698
3982
|
.k-i-chart-bar-stacked100::before {
|
|
3699
|
-
|
|
3983
|
+
content: "\ea07";
|
|
3700
3984
|
}
|
|
3701
3985
|
|
|
3702
3986
|
.k-i-chart-bar-range::before {
|
|
3703
|
-
|
|
3987
|
+
content: "\ea08";
|
|
3704
3988
|
}
|
|
3705
3989
|
|
|
3706
3990
|
.k-i-chart-area-clustered::before {
|
|
3707
|
-
|
|
3991
|
+
content: "\ea09";
|
|
3708
3992
|
}
|
|
3709
3993
|
|
|
3710
3994
|
.k-i-chart-area-stacked::before {
|
|
3711
|
-
|
|
3995
|
+
content: "\ea0a";
|
|
3712
3996
|
}
|
|
3713
3997
|
|
|
3714
3998
|
.k-i-chart-area-stacked100::before {
|
|
3715
|
-
|
|
3999
|
+
content: "\ea0b";
|
|
3716
4000
|
}
|
|
3717
4001
|
|
|
3718
4002
|
.k-i-chart-area-range::before {
|
|
3719
|
-
|
|
4003
|
+
content: "\ea0c";
|
|
3720
4004
|
}
|
|
3721
4005
|
|
|
3722
4006
|
.k-i-chart-line::before {
|
|
3723
|
-
|
|
4007
|
+
content: "\ea0d";
|
|
3724
4008
|
}
|
|
3725
4009
|
|
|
3726
4010
|
.k-i-chart-line-stacked::before {
|
|
3727
|
-
|
|
4011
|
+
content: "\ea0e";
|
|
3728
4012
|
}
|
|
3729
4013
|
|
|
3730
4014
|
.k-i-chart-line-stacked100::before {
|
|
3731
|
-
|
|
4015
|
+
content: "\ea0f";
|
|
3732
4016
|
}
|
|
3733
4017
|
|
|
3734
4018
|
.k-i-chart-line-markers::before {
|
|
3735
|
-
|
|
4019
|
+
content: "\ea10";
|
|
3736
4020
|
}
|
|
3737
4021
|
|
|
3738
4022
|
.k-i-chart-line-stacked-markers::before {
|
|
3739
|
-
|
|
4023
|
+
content: "\ea11";
|
|
3740
4024
|
}
|
|
3741
4025
|
|
|
3742
4026
|
.k-i-chart-line-stacked100-markers::before {
|
|
3743
|
-
|
|
4027
|
+
content: "\ea12";
|
|
3744
4028
|
}
|
|
3745
4029
|
|
|
3746
4030
|
.k-i-chart-pie::before {
|
|
3747
|
-
|
|
4031
|
+
content: "\ea13";
|
|
3748
4032
|
}
|
|
3749
4033
|
|
|
3750
4034
|
.k-i-chart-doughnut::before {
|
|
3751
|
-
|
|
4035
|
+
content: "\ea14";
|
|
3752
4036
|
}
|
|
3753
4037
|
|
|
3754
4038
|
.k-i-chart-scatter::before {
|
|
3755
|
-
|
|
4039
|
+
content: "\ea15";
|
|
3756
4040
|
}
|
|
3757
4041
|
|
|
3758
4042
|
.k-i-chart-scatter-smooth-lines-markers::before {
|
|
3759
|
-
|
|
4043
|
+
content: "\ea16";
|
|
3760
4044
|
}
|
|
3761
4045
|
|
|
3762
4046
|
.k-i-chart-scatter-smooth-lines::before {
|
|
3763
|
-
|
|
4047
|
+
content: "\ea17";
|
|
3764
4048
|
}
|
|
3765
4049
|
|
|
3766
4050
|
.k-i-chart-scatter-straight-lines-markers::before {
|
|
3767
|
-
|
|
4051
|
+
content: "\ea18";
|
|
3768
4052
|
}
|
|
3769
4053
|
|
|
3770
4054
|
.k-i-chart-scatter-straight-lines::before {
|
|
3771
|
-
|
|
4055
|
+
content: "\ea19";
|
|
3772
4056
|
}
|
|
3773
4057
|
|
|
3774
4058
|
.k-i-chart-bubble::before {
|
|
3775
|
-
|
|
4059
|
+
content: "\ea1a";
|
|
3776
4060
|
}
|
|
3777
4061
|
|
|
3778
4062
|
.k-i-chart-candlestick::before {
|
|
3779
|
-
|
|
4063
|
+
content: "\ea1b";
|
|
3780
4064
|
}
|
|
3781
4065
|
|
|
3782
4066
|
.k-i-chart-ohlc::before {
|
|
3783
|
-
|
|
4067
|
+
content: "\ea1c";
|
|
3784
4068
|
}
|
|
3785
4069
|
|
|
3786
4070
|
.k-i-chart-radar::before {
|
|
3787
|
-
|
|
4071
|
+
content: "\ea1d";
|
|
3788
4072
|
}
|
|
3789
4073
|
|
|
3790
4074
|
.k-i-chart-radar-markers::before {
|
|
3791
|
-
|
|
4075
|
+
content: "\ea1e";
|
|
3792
4076
|
}
|
|
3793
4077
|
|
|
3794
4078
|
.k-i-chart-radar-filled::before {
|
|
3795
|
-
|
|
4079
|
+
content: "\ea1f";
|
|
3796
4080
|
}
|
|
3797
4081
|
|
|
3798
4082
|
.k-i-chart-rose::before {
|
|
3799
|
-
|
|
4083
|
+
content: "\ea20";
|
|
3800
4084
|
}
|
|
3801
4085
|
|
|
3802
4086
|
.k-i-chart-choropleth::before {
|
|
3803
|
-
|
|
4087
|
+
content: "\ea21";
|
|
3804
4088
|
}
|