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