sccoreui 6.3.69 → 6.3.70
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/assets/sccoreicons.css +303 -309
- package/dist/assets/sccoreui.css +2 -8
- package/package.json +1 -1
|
@@ -1,1111 +1,1105 @@
|
|
|
1
1
|
@font-face {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
url("./fonts/primeicons.ttf") format("truetype"),
|
|
9
|
-
url("./fonts/primeicons.svg?#primeicons") format("svg");
|
|
10
|
-
font-weight: normal;
|
|
11
|
-
font-style: normal;
|
|
2
|
+
font-family: 'primeicons';
|
|
3
|
+
font-display: block;
|
|
4
|
+
src: url('./fonts/primeicons.eot');
|
|
5
|
+
src: url('./fonts/primeicons.eot?#iefix') format('embedded-opentype'), url('./fonts/primeicons.woff2') format('woff2'), url('./fonts/primeicons.woff') format('woff'), url('./fonts/primeicons.ttf') format('truetype'), url('./fonts/primeicons.svg?#primeicons') format('svg');
|
|
6
|
+
font-weight: normal;
|
|
7
|
+
font-style: normal;
|
|
12
8
|
}
|
|
13
9
|
|
|
14
10
|
.pi {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
11
|
+
font-family: 'primeicons';
|
|
12
|
+
speak: none;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-weight: normal;
|
|
15
|
+
font-variant: normal;
|
|
16
|
+
text-transform: none;
|
|
17
|
+
line-height: 1;
|
|
18
|
+
display: inline-block;
|
|
19
|
+
-webkit-font-smoothing: antialiased;
|
|
20
|
+
-moz-osx-font-smoothing: grayscale;
|
|
25
21
|
}
|
|
26
22
|
|
|
27
23
|
.pi:before {
|
|
28
|
-
|
|
29
|
-
|
|
24
|
+
--webkit-backface-visibility:hidden;
|
|
25
|
+
backface-visibility: hidden;
|
|
30
26
|
}
|
|
31
27
|
|
|
32
28
|
.pi-fw {
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
width: 1.28571429em;
|
|
30
|
+
text-align: center;
|
|
35
31
|
}
|
|
36
32
|
|
|
37
33
|
.pi-spin {
|
|
38
|
-
|
|
39
|
-
|
|
34
|
+
-webkit-animation: fa-spin 2s infinite linear;
|
|
35
|
+
animation: fa-spin 2s infinite linear;
|
|
40
36
|
}
|
|
41
37
|
|
|
42
38
|
@-webkit-keyframes fa-spin {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
39
|
+
0% {
|
|
40
|
+
-webkit-transform: rotate(0deg);
|
|
41
|
+
transform: rotate(0deg);
|
|
42
|
+
}
|
|
43
|
+
100% {
|
|
44
|
+
-webkit-transform: rotate(359deg);
|
|
45
|
+
transform: rotate(359deg);
|
|
46
|
+
}
|
|
51
47
|
}
|
|
52
48
|
|
|
53
49
|
@keyframes fa-spin {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
50
|
+
0% {
|
|
51
|
+
-webkit-transform: rotate(0deg);
|
|
52
|
+
transform: rotate(0deg);
|
|
53
|
+
}
|
|
54
|
+
100% {
|
|
55
|
+
-webkit-transform: rotate(359deg);
|
|
56
|
+
transform: rotate(359deg);
|
|
57
|
+
}
|
|
62
58
|
}
|
|
63
59
|
|
|
64
60
|
.pi-eraser:before {
|
|
65
|
-
|
|
61
|
+
content: "\ea04";
|
|
66
62
|
}
|
|
67
63
|
|
|
68
64
|
.pi-stopwatch:before {
|
|
69
|
-
|
|
65
|
+
content: "\ea01";
|
|
70
66
|
}
|
|
71
67
|
|
|
72
68
|
.pi-verified:before {
|
|
73
|
-
|
|
69
|
+
content: "\ea02";
|
|
74
70
|
}
|
|
75
71
|
|
|
76
72
|
.pi-delete-left:before {
|
|
77
|
-
|
|
73
|
+
content: "\ea03";
|
|
78
74
|
}
|
|
79
75
|
|
|
80
76
|
.pi-hourglass:before {
|
|
81
|
-
|
|
77
|
+
content: "\e9fe";
|
|
82
78
|
}
|
|
83
79
|
|
|
84
80
|
.pi-truck:before {
|
|
85
|
-
|
|
81
|
+
content: "\ea00";
|
|
86
82
|
}
|
|
87
83
|
|
|
88
84
|
.pi-wrench:before {
|
|
89
|
-
|
|
85
|
+
content: "\e9ff";
|
|
90
86
|
}
|
|
91
87
|
|
|
92
88
|
.pi-microphone:before {
|
|
93
|
-
|
|
89
|
+
content: "\e9fa";
|
|
94
90
|
}
|
|
95
91
|
|
|
96
92
|
.pi-megaphone:before {
|
|
97
|
-
|
|
93
|
+
content: "\e9fb";
|
|
98
94
|
}
|
|
99
95
|
|
|
100
96
|
.pi-arrow-right-arrow-left:before {
|
|
101
|
-
|
|
97
|
+
content: "\e9fc";
|
|
102
98
|
}
|
|
103
99
|
|
|
104
100
|
.pi-bitcoin:before {
|
|
105
|
-
|
|
101
|
+
content: "\e9fd";
|
|
106
102
|
}
|
|
107
103
|
|
|
108
104
|
.pi-file-edit:before {
|
|
109
|
-
|
|
105
|
+
content: "\e9f6";
|
|
110
106
|
}
|
|
111
107
|
|
|
112
108
|
.pi-language:before {
|
|
113
|
-
|
|
109
|
+
content: "\e9f7";
|
|
114
110
|
}
|
|
115
111
|
|
|
116
112
|
.pi-file-export:before {
|
|
117
|
-
|
|
113
|
+
content: "\e9f8";
|
|
118
114
|
}
|
|
119
115
|
|
|
120
116
|
.pi-file-import:before {
|
|
121
|
-
|
|
117
|
+
content: "\e9f9";
|
|
122
118
|
}
|
|
123
119
|
|
|
124
120
|
.pi-file-word:before {
|
|
125
|
-
|
|
121
|
+
content: "\e9f1";
|
|
126
122
|
}
|
|
127
123
|
|
|
128
124
|
.pi-gift:before {
|
|
129
|
-
|
|
125
|
+
content: "\e9f2";
|
|
130
126
|
}
|
|
131
127
|
|
|
132
128
|
.pi-cart-plus:before {
|
|
133
|
-
|
|
129
|
+
content: "\e9f3";
|
|
134
130
|
}
|
|
135
131
|
|
|
136
132
|
.pi-thumbs-down-fill:before {
|
|
137
|
-
|
|
133
|
+
content: "\e9f4";
|
|
138
134
|
}
|
|
139
135
|
|
|
140
136
|
.pi-thumbs-up-fill:before {
|
|
141
|
-
|
|
137
|
+
content: "\e9f5";
|
|
142
138
|
}
|
|
143
139
|
|
|
144
140
|
.pi-arrows-alt:before {
|
|
145
|
-
|
|
141
|
+
content: "\e9f0";
|
|
146
142
|
}
|
|
147
143
|
|
|
148
144
|
.pi-calculator:before {
|
|
149
|
-
|
|
145
|
+
content: "\e9ef";
|
|
150
146
|
}
|
|
151
147
|
|
|
152
148
|
.pi-sort-alt-slash:before {
|
|
153
|
-
|
|
149
|
+
content: "\e9ee";
|
|
154
150
|
}
|
|
155
151
|
|
|
156
152
|
.pi-arrows-h:before {
|
|
157
|
-
|
|
153
|
+
content: "\e9ec";
|
|
158
154
|
}
|
|
159
155
|
|
|
160
156
|
.pi-arrows-v:before {
|
|
161
|
-
|
|
157
|
+
content: "\e9ed";
|
|
162
158
|
}
|
|
163
159
|
|
|
164
160
|
.pi-pound:before {
|
|
165
|
-
|
|
161
|
+
content: "\e9eb";
|
|
166
162
|
}
|
|
167
163
|
|
|
168
164
|
.pi-prime:before {
|
|
169
|
-
|
|
165
|
+
content: "\e9ea";
|
|
170
166
|
}
|
|
171
167
|
|
|
172
168
|
.pi-chart-pie:before {
|
|
173
|
-
|
|
169
|
+
content: "\e9e9";
|
|
174
170
|
}
|
|
175
171
|
|
|
176
172
|
.pi-reddit:before {
|
|
177
|
-
|
|
173
|
+
content: "\e9e8";
|
|
178
174
|
}
|
|
179
175
|
|
|
180
176
|
.pi-code:before {
|
|
181
|
-
|
|
177
|
+
content: "\e9e7";
|
|
182
178
|
}
|
|
183
179
|
|
|
184
180
|
.pi-sync:before {
|
|
185
|
-
|
|
181
|
+
content: "\e9e6";
|
|
186
182
|
}
|
|
187
183
|
|
|
188
184
|
.pi-shopping-bag:before {
|
|
189
|
-
|
|
185
|
+
content: "\e9e5";
|
|
190
186
|
}
|
|
191
187
|
|
|
192
188
|
.pi-server:before {
|
|
193
|
-
|
|
189
|
+
content: "\e9e4";
|
|
194
190
|
}
|
|
195
191
|
|
|
196
192
|
.pi-database:before {
|
|
197
|
-
|
|
193
|
+
content: "\e9e3";
|
|
198
194
|
}
|
|
199
195
|
|
|
200
196
|
.pi-hashtag:before {
|
|
201
|
-
|
|
197
|
+
content: "\e9e2";
|
|
202
198
|
}
|
|
203
199
|
|
|
204
200
|
.pi-bookmark-fill:before {
|
|
205
|
-
|
|
201
|
+
content: "\e9df";
|
|
206
202
|
}
|
|
207
203
|
|
|
208
204
|
.pi-filter-fill:before {
|
|
209
|
-
|
|
205
|
+
content: "\e9e0";
|
|
210
206
|
}
|
|
211
207
|
|
|
212
208
|
.pi-heart-fill:before {
|
|
213
|
-
|
|
209
|
+
content: "\e9e1";
|
|
214
210
|
}
|
|
215
211
|
|
|
216
212
|
.pi-flag-fill:before {
|
|
217
|
-
|
|
213
|
+
content: "\e9de";
|
|
218
214
|
}
|
|
219
215
|
|
|
220
216
|
.pi-circle:before {
|
|
221
|
-
|
|
217
|
+
content: "\e9dc";
|
|
222
218
|
}
|
|
223
219
|
|
|
224
220
|
.pi-circle-fill:before {
|
|
225
|
-
|
|
221
|
+
content: "\e9dd";
|
|
226
222
|
}
|
|
227
223
|
|
|
228
224
|
.pi-bolt:before {
|
|
229
|
-
|
|
225
|
+
content: "\e9db";
|
|
230
226
|
}
|
|
231
227
|
|
|
232
228
|
.pi-history:before {
|
|
233
|
-
|
|
229
|
+
content: "\e9da";
|
|
234
230
|
}
|
|
235
231
|
|
|
236
232
|
.pi-box:before {
|
|
237
|
-
|
|
233
|
+
content: "\e9d9";
|
|
238
234
|
}
|
|
239
235
|
|
|
240
236
|
.pi-at:before {
|
|
241
|
-
|
|
237
|
+
content: "\e9d8";
|
|
242
238
|
}
|
|
243
239
|
|
|
244
240
|
.pi-arrow-up-right:before {
|
|
245
|
-
|
|
241
|
+
content: "\e9d4";
|
|
246
242
|
}
|
|
247
243
|
|
|
248
244
|
.pi-arrow-up-left:before {
|
|
249
|
-
|
|
245
|
+
content: "\e9d5";
|
|
250
246
|
}
|
|
251
247
|
|
|
252
248
|
.pi-arrow-down-left:before {
|
|
253
|
-
|
|
249
|
+
content: "\e9d6";
|
|
254
250
|
}
|
|
255
251
|
|
|
256
252
|
.pi-arrow-down-right:before {
|
|
257
|
-
|
|
253
|
+
content: "\e9d7";
|
|
258
254
|
}
|
|
259
255
|
|
|
260
256
|
.pi-telegram:before {
|
|
261
|
-
|
|
257
|
+
content: "\e9d3";
|
|
262
258
|
}
|
|
263
259
|
|
|
264
260
|
.pi-stop-circle:before {
|
|
265
|
-
|
|
261
|
+
content: "\e9d2";
|
|
266
262
|
}
|
|
267
263
|
|
|
268
264
|
.pi-stop:before {
|
|
269
|
-
|
|
265
|
+
content: "\e9d1";
|
|
270
266
|
}
|
|
271
267
|
|
|
272
268
|
.pi-whatsapp:before {
|
|
273
|
-
|
|
269
|
+
content: "\e9d0";
|
|
274
270
|
}
|
|
275
271
|
|
|
276
272
|
.pi-building:before {
|
|
277
|
-
|
|
273
|
+
content: "\e9cf";
|
|
278
274
|
}
|
|
279
275
|
|
|
280
276
|
.pi-qrcode:before {
|
|
281
|
-
|
|
277
|
+
content: "\e9ce";
|
|
282
278
|
}
|
|
283
279
|
|
|
284
280
|
.pi-car:before {
|
|
285
|
-
|
|
281
|
+
content: "\e9cd";
|
|
286
282
|
}
|
|
287
283
|
|
|
288
284
|
.pi-instagram:before {
|
|
289
|
-
|
|
285
|
+
content: "\e9cc";
|
|
290
286
|
}
|
|
291
287
|
|
|
292
288
|
.pi-linkedin:before {
|
|
293
|
-
|
|
289
|
+
content: "\e9cb";
|
|
294
290
|
}
|
|
295
291
|
|
|
296
292
|
.pi-send:before {
|
|
297
|
-
|
|
293
|
+
content: "\e9ca";
|
|
298
294
|
}
|
|
299
295
|
|
|
300
296
|
.pi-slack:before {
|
|
301
|
-
|
|
297
|
+
content: "\e9c9";
|
|
302
298
|
}
|
|
303
299
|
|
|
304
300
|
.pi-sun:before {
|
|
305
|
-
|
|
301
|
+
content: "\e9c8";
|
|
306
302
|
}
|
|
307
303
|
|
|
308
304
|
.pi-moon:before {
|
|
309
|
-
|
|
305
|
+
content: "\e9c7";
|
|
310
306
|
}
|
|
311
307
|
|
|
312
308
|
.pi-vimeo:before {
|
|
313
|
-
|
|
309
|
+
content: "\e9c6";
|
|
314
310
|
}
|
|
315
311
|
|
|
316
312
|
.pi-youtube:before {
|
|
317
|
-
|
|
313
|
+
content: "\e9c5";
|
|
318
314
|
}
|
|
319
315
|
|
|
320
316
|
.pi-flag:before {
|
|
321
|
-
|
|
317
|
+
content: "\e9c4";
|
|
322
318
|
}
|
|
323
319
|
|
|
324
320
|
.pi-wallet:before {
|
|
325
|
-
|
|
321
|
+
content: "\e9c3";
|
|
326
322
|
}
|
|
327
323
|
|
|
328
324
|
.pi-map:before {
|
|
329
|
-
|
|
325
|
+
content: "\e9c2";
|
|
330
326
|
}
|
|
331
327
|
|
|
332
328
|
.pi-link:before {
|
|
333
|
-
|
|
329
|
+
content: "\e9c1";
|
|
334
330
|
}
|
|
335
331
|
|
|
336
332
|
.pi-credit-card:before {
|
|
337
|
-
|
|
333
|
+
content: "\e9bf";
|
|
338
334
|
}
|
|
339
335
|
|
|
340
336
|
.pi-discord:before {
|
|
341
|
-
|
|
337
|
+
content: "\e9c0";
|
|
342
338
|
}
|
|
343
339
|
|
|
344
340
|
.pi-percentage:before {
|
|
345
|
-
|
|
341
|
+
content: "\e9be";
|
|
346
342
|
}
|
|
347
343
|
|
|
348
344
|
.pi-euro:before {
|
|
349
|
-
|
|
345
|
+
content: "\e9bd";
|
|
350
346
|
}
|
|
351
347
|
|
|
352
348
|
.pi-book:before {
|
|
353
|
-
|
|
349
|
+
content: "\e9ba";
|
|
354
350
|
}
|
|
355
351
|
|
|
356
352
|
.pi-shield:before {
|
|
357
|
-
|
|
353
|
+
content: "\e9b9";
|
|
358
354
|
}
|
|
359
355
|
|
|
360
356
|
.pi-paypal:before {
|
|
361
|
-
|
|
357
|
+
content: "\e9bb";
|
|
362
358
|
}
|
|
363
359
|
|
|
364
360
|
.pi-amazon:before {
|
|
365
|
-
|
|
361
|
+
content: "\e9bc";
|
|
366
362
|
}
|
|
367
363
|
|
|
368
364
|
.pi-phone:before {
|
|
369
|
-
|
|
365
|
+
content: "\e9b8";
|
|
370
366
|
}
|
|
371
367
|
|
|
372
368
|
.pi-filter-slash:before {
|
|
373
|
-
|
|
369
|
+
content: "\e9b7";
|
|
374
370
|
}
|
|
375
371
|
|
|
376
372
|
.pi-facebook:before {
|
|
377
|
-
|
|
373
|
+
content: "\e9b4";
|
|
378
374
|
}
|
|
379
375
|
|
|
380
376
|
.pi-github:before {
|
|
381
|
-
|
|
377
|
+
content: "\e9b5";
|
|
382
378
|
}
|
|
383
379
|
|
|
384
380
|
.pi-twitter:before {
|
|
385
|
-
|
|
381
|
+
content: "\e9b6";
|
|
386
382
|
}
|
|
387
383
|
|
|
388
384
|
.pi-step-backward-alt:before {
|
|
389
|
-
|
|
385
|
+
content: "\e9ac";
|
|
390
386
|
}
|
|
391
387
|
|
|
392
388
|
.pi-step-forward-alt:before {
|
|
393
|
-
|
|
389
|
+
content: "\e9ad";
|
|
394
390
|
}
|
|
395
391
|
|
|
396
392
|
.pi-forward:before {
|
|
397
|
-
|
|
393
|
+
content: "\e9ae";
|
|
398
394
|
}
|
|
399
395
|
|
|
400
396
|
.pi-backward:before {
|
|
401
|
-
|
|
397
|
+
content: "\e9af";
|
|
402
398
|
}
|
|
403
399
|
|
|
404
400
|
.pi-fast-backward:before {
|
|
405
|
-
|
|
401
|
+
content: "\e9b0";
|
|
406
402
|
}
|
|
407
403
|
|
|
408
404
|
.pi-fast-forward:before {
|
|
409
|
-
|
|
405
|
+
content: "\e9b1";
|
|
410
406
|
}
|
|
411
407
|
|
|
412
408
|
.pi-pause:before {
|
|
413
|
-
|
|
409
|
+
content: "\e9b2";
|
|
414
410
|
}
|
|
415
411
|
|
|
416
412
|
.pi-play:before {
|
|
417
|
-
|
|
413
|
+
content: "\e9b3";
|
|
418
414
|
}
|
|
419
415
|
|
|
420
416
|
.pi-compass:before {
|
|
421
|
-
|
|
417
|
+
content: "\e9ab";
|
|
422
418
|
}
|
|
423
419
|
|
|
424
420
|
.pi-id-card:before {
|
|
425
|
-
|
|
421
|
+
content: "\e9aa";
|
|
426
422
|
}
|
|
427
423
|
|
|
428
424
|
.pi-ticket:before {
|
|
429
|
-
|
|
425
|
+
content: "\e9a9";
|
|
430
426
|
}
|
|
431
427
|
|
|
432
428
|
.pi-file-o:before {
|
|
433
|
-
|
|
429
|
+
content: "\e9a8";
|
|
434
430
|
}
|
|
435
431
|
|
|
436
432
|
.pi-reply:before {
|
|
437
|
-
|
|
433
|
+
content: "\e9a7";
|
|
438
434
|
}
|
|
439
435
|
|
|
440
436
|
.pi-directions-alt:before {
|
|
441
|
-
|
|
437
|
+
content: "\e9a5";
|
|
442
438
|
}
|
|
443
439
|
|
|
444
440
|
.pi-directions:before {
|
|
445
|
-
|
|
441
|
+
content: "\e9a6";
|
|
446
442
|
}
|
|
447
443
|
|
|
448
444
|
.pi-thumbs-up:before {
|
|
449
|
-
|
|
445
|
+
content: "\e9a3";
|
|
450
446
|
}
|
|
451
447
|
|
|
452
448
|
.pi-thumbs-down:before {
|
|
453
|
-
|
|
449
|
+
content: "\e9a4";
|
|
454
450
|
}
|
|
455
451
|
|
|
456
452
|
.pi-sort-numeric-down-alt:before {
|
|
457
|
-
|
|
453
|
+
content: "\e996";
|
|
458
454
|
}
|
|
459
455
|
|
|
460
456
|
.pi-sort-numeric-up-alt:before {
|
|
461
|
-
|
|
457
|
+
content: "\e997";
|
|
462
458
|
}
|
|
463
459
|
|
|
464
460
|
.pi-sort-alpha-down-alt:before {
|
|
465
|
-
|
|
461
|
+
content: "\e998";
|
|
466
462
|
}
|
|
467
463
|
|
|
468
464
|
.pi-sort-alpha-up-alt:before {
|
|
469
|
-
|
|
465
|
+
content: "\e999";
|
|
470
466
|
}
|
|
471
467
|
|
|
472
468
|
.pi-sort-numeric-down:before {
|
|
473
|
-
|
|
469
|
+
content: "\e99a";
|
|
474
470
|
}
|
|
475
471
|
|
|
476
472
|
.pi-sort-numeric-up:before {
|
|
477
|
-
|
|
473
|
+
content: "\e99b";
|
|
478
474
|
}
|
|
479
475
|
|
|
480
476
|
.pi-sort-alpha-down:before {
|
|
481
|
-
|
|
477
|
+
content: "\e99c";
|
|
482
478
|
}
|
|
483
479
|
|
|
484
480
|
.pi-sort-alpha-up:before {
|
|
485
|
-
|
|
481
|
+
content: "\e99d";
|
|
486
482
|
}
|
|
487
483
|
|
|
488
484
|
.pi-sort-alt:before {
|
|
489
|
-
|
|
485
|
+
content: "\e99e";
|
|
490
486
|
}
|
|
491
487
|
|
|
492
488
|
.pi-sort-amount-up:before {
|
|
493
|
-
|
|
489
|
+
content: "\e99f";
|
|
494
490
|
}
|
|
495
491
|
|
|
496
492
|
.pi-sort-amount-down:before {
|
|
497
|
-
|
|
493
|
+
content: "\e9a0";
|
|
498
494
|
}
|
|
499
495
|
|
|
500
496
|
.pi-sort-amount-down-alt:before {
|
|
501
|
-
|
|
497
|
+
content: "\e9a1";
|
|
502
498
|
}
|
|
503
499
|
|
|
504
500
|
.pi-sort-amount-up-alt:before {
|
|
505
|
-
|
|
501
|
+
content: "\e9a2";
|
|
506
502
|
}
|
|
507
503
|
|
|
508
504
|
.pi-palette:before {
|
|
509
|
-
|
|
505
|
+
content: "\e995";
|
|
510
506
|
}
|
|
511
507
|
|
|
512
508
|
.pi-undo:before {
|
|
513
|
-
|
|
509
|
+
content: "\e994";
|
|
514
510
|
}
|
|
515
511
|
|
|
516
512
|
.pi-desktop:before {
|
|
517
|
-
|
|
513
|
+
content: "\e993";
|
|
518
514
|
}
|
|
519
515
|
|
|
520
516
|
.pi-sliders-v:before {
|
|
521
|
-
|
|
517
|
+
content: "\e991";
|
|
522
518
|
}
|
|
523
519
|
|
|
524
520
|
.pi-sliders-h:before {
|
|
525
|
-
|
|
521
|
+
content: "\e992";
|
|
526
522
|
}
|
|
527
523
|
|
|
528
524
|
.pi-search-plus:before {
|
|
529
|
-
|
|
525
|
+
content: "\e98f";
|
|
530
526
|
}
|
|
531
527
|
|
|
532
528
|
.pi-search-minus:before {
|
|
533
|
-
|
|
529
|
+
content: "\e990";
|
|
534
530
|
}
|
|
535
531
|
|
|
536
532
|
.pi-file-excel:before {
|
|
537
|
-
|
|
533
|
+
content: "\e98e";
|
|
538
534
|
}
|
|
539
535
|
|
|
540
536
|
.pi-file-pdf:before {
|
|
541
|
-
|
|
537
|
+
content: "\e98d";
|
|
542
538
|
}
|
|
543
539
|
|
|
544
540
|
.pi-check-square:before {
|
|
545
|
-
|
|
541
|
+
content: "\e98c";
|
|
546
542
|
}
|
|
547
543
|
|
|
548
544
|
.pi-chart-line:before {
|
|
549
|
-
|
|
545
|
+
content: "\e98b";
|
|
550
546
|
}
|
|
551
547
|
|
|
552
548
|
.pi-user-edit:before {
|
|
553
|
-
|
|
549
|
+
content: "\e98a";
|
|
554
550
|
}
|
|
555
551
|
|
|
556
552
|
.pi-exclamation-circle:before {
|
|
557
|
-
|
|
553
|
+
content: "\e989";
|
|
558
554
|
}
|
|
559
555
|
|
|
560
556
|
.pi-android:before {
|
|
561
|
-
|
|
557
|
+
content: "\e985";
|
|
562
558
|
}
|
|
563
559
|
|
|
564
560
|
.pi-google:before {
|
|
565
|
-
|
|
561
|
+
content: "\e986";
|
|
566
562
|
}
|
|
567
563
|
|
|
568
564
|
.pi-apple:before {
|
|
569
|
-
|
|
565
|
+
content: "\e987";
|
|
570
566
|
}
|
|
571
567
|
|
|
572
568
|
.pi-microsoft:before {
|
|
573
|
-
|
|
569
|
+
content: "\e988";
|
|
574
570
|
}
|
|
575
571
|
|
|
576
572
|
.pi-heart:before {
|
|
577
|
-
|
|
573
|
+
content: "\e984";
|
|
578
574
|
}
|
|
579
575
|
|
|
580
576
|
.pi-mobile:before {
|
|
581
|
-
|
|
577
|
+
content: "\e982";
|
|
582
578
|
}
|
|
583
579
|
|
|
584
580
|
.pi-tablet:before {
|
|
585
|
-
|
|
581
|
+
content: "\e983";
|
|
586
582
|
}
|
|
587
583
|
|
|
588
584
|
.pi-key:before {
|
|
589
|
-
|
|
585
|
+
content: "\e981";
|
|
590
586
|
}
|
|
591
587
|
|
|
592
588
|
.pi-shopping-cart:before {
|
|
593
|
-
|
|
589
|
+
content: "\e980";
|
|
594
590
|
}
|
|
595
591
|
|
|
596
592
|
.pi-comments:before {
|
|
597
|
-
|
|
593
|
+
content: "\e97e";
|
|
598
594
|
}
|
|
599
595
|
|
|
600
596
|
.pi-comment:before {
|
|
601
|
-
|
|
597
|
+
content: "\e97f";
|
|
602
598
|
}
|
|
603
599
|
|
|
604
600
|
.pi-briefcase:before {
|
|
605
|
-
|
|
601
|
+
content: "\e97d";
|
|
606
602
|
}
|
|
607
603
|
|
|
608
604
|
.pi-bell:before {
|
|
609
|
-
|
|
605
|
+
content: "\e97c";
|
|
610
606
|
}
|
|
611
607
|
|
|
612
608
|
.pi-paperclip:before {
|
|
613
|
-
|
|
609
|
+
content: "\e97b";
|
|
614
610
|
}
|
|
615
611
|
|
|
616
612
|
.pi-share-alt:before {
|
|
617
|
-
|
|
613
|
+
content: "\e97a";
|
|
618
614
|
}
|
|
619
615
|
|
|
620
616
|
.pi-envelope:before {
|
|
621
|
-
|
|
617
|
+
content: "\e979";
|
|
622
618
|
}
|
|
623
619
|
|
|
624
620
|
.pi-volume-down:before {
|
|
625
|
-
|
|
621
|
+
content: "\e976";
|
|
626
622
|
}
|
|
627
623
|
|
|
628
624
|
.pi-volume-up:before {
|
|
629
|
-
|
|
625
|
+
content: "\e977";
|
|
630
626
|
}
|
|
631
627
|
|
|
632
628
|
.pi-volume-off:before {
|
|
633
|
-
|
|
629
|
+
content: "\e978";
|
|
634
630
|
}
|
|
635
631
|
|
|
636
632
|
.pi-eject:before {
|
|
637
|
-
|
|
633
|
+
content: "\e975";
|
|
638
634
|
}
|
|
639
635
|
|
|
640
636
|
.pi-money-bill:before {
|
|
641
|
-
|
|
637
|
+
content: "\e974";
|
|
642
638
|
}
|
|
643
639
|
|
|
644
640
|
.pi-images:before {
|
|
645
|
-
|
|
641
|
+
content: "\e973";
|
|
646
642
|
}
|
|
647
643
|
|
|
648
644
|
.pi-image:before {
|
|
649
|
-
|
|
645
|
+
content: "\e972";
|
|
650
646
|
}
|
|
651
647
|
|
|
652
648
|
.pi-sign-in:before {
|
|
653
|
-
|
|
649
|
+
content: "\e970";
|
|
654
650
|
}
|
|
655
651
|
|
|
656
652
|
.pi-sign-out:before {
|
|
657
|
-
|
|
653
|
+
content: "\e971";
|
|
658
654
|
}
|
|
659
655
|
|
|
660
656
|
.pi-wifi:before {
|
|
661
|
-
|
|
657
|
+
content: "\e96f";
|
|
662
658
|
}
|
|
663
659
|
|
|
664
660
|
.pi-sitemap:before {
|
|
665
|
-
|
|
661
|
+
content: "\e96e";
|
|
666
662
|
}
|
|
667
663
|
|
|
668
664
|
.pi-chart-bar:before {
|
|
669
|
-
|
|
665
|
+
content: "\e96d";
|
|
670
666
|
}
|
|
671
667
|
|
|
672
668
|
.pi-camera:before {
|
|
673
|
-
|
|
669
|
+
content: "\e96c";
|
|
674
670
|
}
|
|
675
671
|
|
|
676
672
|
.pi-dollar:before {
|
|
677
|
-
|
|
673
|
+
content: "\e96b";
|
|
678
674
|
}
|
|
679
675
|
|
|
680
676
|
.pi-lock-open:before {
|
|
681
|
-
|
|
677
|
+
content: "\e96a";
|
|
682
678
|
}
|
|
683
679
|
|
|
684
680
|
.pi-table:before {
|
|
685
|
-
|
|
681
|
+
content: "\e969";
|
|
686
682
|
}
|
|
687
683
|
|
|
688
684
|
.pi-map-marker:before {
|
|
689
|
-
|
|
685
|
+
content: "\e968";
|
|
690
686
|
}
|
|
691
687
|
|
|
692
688
|
.pi-list:before {
|
|
693
|
-
|
|
689
|
+
content: "\e967";
|
|
694
690
|
}
|
|
695
691
|
|
|
696
692
|
.pi-eye-slash:before {
|
|
697
|
-
|
|
693
|
+
content: "\e965";
|
|
698
694
|
}
|
|
699
695
|
|
|
700
696
|
.pi-eye:before {
|
|
701
|
-
|
|
697
|
+
content: "\e966";
|
|
702
698
|
}
|
|
703
699
|
|
|
704
700
|
.pi-folder-open:before {
|
|
705
|
-
|
|
701
|
+
content: "\e964";
|
|
706
702
|
}
|
|
707
703
|
|
|
708
704
|
.pi-folder:before {
|
|
709
|
-
|
|
705
|
+
content: "\e963";
|
|
710
706
|
}
|
|
711
707
|
|
|
712
708
|
.pi-video:before {
|
|
713
|
-
|
|
709
|
+
content: "\e962";
|
|
714
710
|
}
|
|
715
711
|
|
|
716
712
|
.pi-inbox:before {
|
|
717
|
-
|
|
713
|
+
content: "\e961";
|
|
718
714
|
}
|
|
719
715
|
|
|
720
716
|
.pi-lock:before {
|
|
721
|
-
|
|
717
|
+
content: "\e95f";
|
|
722
718
|
}
|
|
723
719
|
|
|
724
720
|
.pi-unlock:before {
|
|
725
|
-
|
|
721
|
+
content: "\e960";
|
|
726
722
|
}
|
|
727
723
|
|
|
728
724
|
.pi-tags:before {
|
|
729
|
-
|
|
725
|
+
content: "\e95d";
|
|
730
726
|
}
|
|
731
727
|
|
|
732
728
|
.pi-tag:before {
|
|
733
|
-
|
|
729
|
+
content: "\e95e";
|
|
734
730
|
}
|
|
735
731
|
|
|
736
732
|
.pi-power-off:before {
|
|
737
|
-
|
|
733
|
+
content: "\e95c";
|
|
738
734
|
}
|
|
739
735
|
|
|
740
736
|
.pi-save:before {
|
|
741
|
-
|
|
737
|
+
content: "\e95b";
|
|
742
738
|
}
|
|
743
739
|
|
|
744
740
|
.pi-question-circle:before {
|
|
745
|
-
|
|
741
|
+
content: "\e959";
|
|
746
742
|
}
|
|
747
743
|
|
|
748
744
|
.pi-question:before {
|
|
749
|
-
|
|
745
|
+
content: "\e95a";
|
|
750
746
|
}
|
|
751
747
|
|
|
752
748
|
.pi-copy:before {
|
|
753
|
-
|
|
749
|
+
content: "\e957";
|
|
754
750
|
}
|
|
755
751
|
|
|
756
752
|
.pi-file:before {
|
|
757
|
-
|
|
753
|
+
content: "\e958";
|
|
758
754
|
}
|
|
759
755
|
|
|
760
756
|
.pi-clone:before {
|
|
761
|
-
|
|
757
|
+
content: "\e955";
|
|
762
758
|
}
|
|
763
759
|
|
|
764
760
|
.pi-calendar-times:before {
|
|
765
|
-
|
|
761
|
+
content: "\e952";
|
|
766
762
|
}
|
|
767
763
|
|
|
768
764
|
.pi-calendar-minus:before {
|
|
769
|
-
|
|
765
|
+
content: "\e953";
|
|
770
766
|
}
|
|
771
767
|
|
|
772
768
|
.pi-calendar-plus:before {
|
|
773
|
-
|
|
769
|
+
content: "\e954";
|
|
774
770
|
}
|
|
775
771
|
|
|
776
772
|
.pi-ellipsis-v:before {
|
|
777
|
-
|
|
773
|
+
content: "\e950";
|
|
778
774
|
}
|
|
779
775
|
|
|
780
776
|
.pi-ellipsis-h:before {
|
|
781
|
-
|
|
777
|
+
content: "\e951";
|
|
782
778
|
}
|
|
783
779
|
|
|
784
780
|
.pi-bookmark:before {
|
|
785
|
-
|
|
781
|
+
content: "\e94e";
|
|
786
782
|
}
|
|
787
783
|
|
|
788
784
|
.pi-globe:before {
|
|
789
|
-
|
|
785
|
+
content: "\e94f";
|
|
790
786
|
}
|
|
791
787
|
|
|
792
788
|
.pi-replay:before {
|
|
793
|
-
|
|
789
|
+
content: "\e94d";
|
|
794
790
|
}
|
|
795
791
|
|
|
796
792
|
.pi-filter:before {
|
|
797
|
-
|
|
793
|
+
content: "\e94c";
|
|
798
794
|
}
|
|
799
795
|
|
|
800
796
|
.pi-print:before {
|
|
801
|
-
|
|
797
|
+
content: "\e94b";
|
|
802
798
|
}
|
|
803
799
|
|
|
804
800
|
.pi-align-right:before {
|
|
805
|
-
|
|
801
|
+
content: "\e946";
|
|
806
802
|
}
|
|
807
803
|
|
|
808
804
|
.pi-align-left:before {
|
|
809
|
-
|
|
805
|
+
content: "\e947";
|
|
810
806
|
}
|
|
811
807
|
|
|
812
808
|
.pi-align-center:before {
|
|
813
|
-
|
|
809
|
+
content: "\e948";
|
|
814
810
|
}
|
|
815
811
|
|
|
816
812
|
.pi-align-justify:before {
|
|
817
|
-
|
|
813
|
+
content: "\e949";
|
|
818
814
|
}
|
|
819
815
|
|
|
820
816
|
.pi-cog:before {
|
|
821
|
-
|
|
817
|
+
content: "\e94a";
|
|
822
818
|
}
|
|
823
819
|
|
|
824
820
|
.pi-cloud-download:before {
|
|
825
|
-
|
|
821
|
+
content: "\e943";
|
|
826
822
|
}
|
|
827
823
|
|
|
828
824
|
.pi-cloud-upload:before {
|
|
829
|
-
|
|
825
|
+
content: "\e944";
|
|
830
826
|
}
|
|
831
827
|
|
|
832
828
|
.pi-cloud:before {
|
|
833
|
-
|
|
829
|
+
content: "\e945";
|
|
834
830
|
}
|
|
835
831
|
|
|
836
832
|
.pi-pencil:before {
|
|
837
|
-
|
|
833
|
+
content: "\e942";
|
|
838
834
|
}
|
|
839
835
|
|
|
840
836
|
.pi-users:before {
|
|
841
|
-
|
|
837
|
+
content: "\e941";
|
|
842
838
|
}
|
|
843
839
|
|
|
844
840
|
.pi-clock:before {
|
|
845
|
-
|
|
841
|
+
content: "\e940";
|
|
846
842
|
}
|
|
847
843
|
|
|
848
844
|
.pi-user-minus:before {
|
|
849
|
-
|
|
845
|
+
content: "\e93e";
|
|
850
846
|
}
|
|
851
847
|
|
|
852
848
|
.pi-user-plus:before {
|
|
853
|
-
|
|
849
|
+
content: "\e93f";
|
|
854
850
|
}
|
|
855
851
|
|
|
856
852
|
.pi-trash:before {
|
|
857
|
-
|
|
853
|
+
content: "\e93d";
|
|
858
854
|
}
|
|
859
855
|
|
|
860
856
|
.pi-external-link:before {
|
|
861
|
-
|
|
857
|
+
content: "\e93c";
|
|
862
858
|
}
|
|
863
859
|
|
|
864
860
|
.pi-window-maximize:before {
|
|
865
|
-
|
|
861
|
+
content: "\e93b";
|
|
866
862
|
}
|
|
867
863
|
|
|
868
864
|
.pi-window-minimize:before {
|
|
869
|
-
|
|
865
|
+
content: "\e93a";
|
|
870
866
|
}
|
|
871
867
|
|
|
872
868
|
.pi-refresh:before {
|
|
873
|
-
|
|
869
|
+
content: "\e938";
|
|
874
870
|
}
|
|
875
|
-
|
|
871
|
+
|
|
876
872
|
.pi-user:before {
|
|
877
|
-
|
|
873
|
+
content: "\e939";
|
|
878
874
|
}
|
|
879
875
|
|
|
880
876
|
.pi-exclamation-triangle:before {
|
|
881
|
-
|
|
877
|
+
content: "\e922";
|
|
882
878
|
}
|
|
883
879
|
|
|
884
880
|
.pi-calendar:before {
|
|
885
|
-
|
|
881
|
+
content: "\e927";
|
|
886
882
|
}
|
|
887
883
|
|
|
888
884
|
.pi-chevron-circle-left:before {
|
|
889
|
-
|
|
885
|
+
content: "\e928";
|
|
890
886
|
}
|
|
891
887
|
|
|
892
888
|
.pi-chevron-circle-down:before {
|
|
893
|
-
|
|
889
|
+
content: "\e929";
|
|
894
890
|
}
|
|
895
891
|
|
|
896
892
|
.pi-chevron-circle-right:before {
|
|
897
|
-
|
|
893
|
+
content: "\e92a";
|
|
898
894
|
}
|
|
899
895
|
|
|
900
896
|
.pi-chevron-circle-up:before {
|
|
901
|
-
|
|
897
|
+
content: "\e92b";
|
|
902
898
|
}
|
|
903
899
|
|
|
904
900
|
.pi-angle-double-down:before {
|
|
905
|
-
|
|
901
|
+
content: "\e92c";
|
|
906
902
|
}
|
|
907
903
|
|
|
908
904
|
.pi-angle-double-left:before {
|
|
909
|
-
|
|
905
|
+
content: "\e92d";
|
|
910
906
|
}
|
|
911
907
|
|
|
912
908
|
.pi-angle-double-right:before {
|
|
913
|
-
|
|
909
|
+
content: "\e92e";
|
|
914
910
|
}
|
|
915
911
|
|
|
916
912
|
.pi-angle-double-up:before {
|
|
917
|
-
|
|
913
|
+
content: "\e92f";
|
|
918
914
|
}
|
|
919
915
|
|
|
920
916
|
.pi-angle-down:before {
|
|
921
|
-
|
|
917
|
+
content: "\e930";
|
|
922
918
|
}
|
|
923
919
|
|
|
924
920
|
.pi-angle-left:before {
|
|
925
|
-
|
|
921
|
+
content: "\e931";
|
|
926
922
|
}
|
|
927
923
|
|
|
928
924
|
.pi-angle-right:before {
|
|
929
|
-
|
|
925
|
+
content: "\e932";
|
|
930
926
|
}
|
|
931
927
|
|
|
932
928
|
.pi-angle-up:before {
|
|
933
|
-
|
|
929
|
+
content: "\e933";
|
|
934
930
|
}
|
|
935
931
|
|
|
936
932
|
.pi-upload:before {
|
|
937
|
-
|
|
933
|
+
content: "\e934";
|
|
938
934
|
}
|
|
939
935
|
|
|
940
936
|
.pi-download:before {
|
|
941
|
-
|
|
937
|
+
content: "\e956";
|
|
942
938
|
}
|
|
943
939
|
|
|
944
940
|
.pi-ban:before {
|
|
945
|
-
|
|
941
|
+
content: "\e935";
|
|
946
942
|
}
|
|
947
943
|
|
|
948
944
|
.pi-star-fill:before {
|
|
949
|
-
|
|
945
|
+
content: "\e936";
|
|
950
946
|
}
|
|
951
947
|
|
|
952
948
|
.pi-star:before {
|
|
953
|
-
|
|
949
|
+
content: "\e937";
|
|
954
950
|
}
|
|
955
951
|
|
|
956
952
|
.pi-chevron-left:before {
|
|
957
|
-
|
|
953
|
+
content: "\e900";
|
|
958
954
|
}
|
|
959
955
|
|
|
960
956
|
.pi-chevron-right:before {
|
|
961
|
-
|
|
962
|
-
|
|
957
|
+
content: "\e901";
|
|
958
|
+
font-size: 13px;
|
|
963
959
|
}
|
|
964
960
|
|
|
965
961
|
.pi-chevron-down:before {
|
|
966
|
-
|
|
967
|
-
|
|
962
|
+
content: "\e902";
|
|
963
|
+
font-size: 13px;
|
|
968
964
|
}
|
|
969
965
|
|
|
970
966
|
.pi-chevron-up:before {
|
|
971
|
-
|
|
967
|
+
content: "\e903";
|
|
972
968
|
}
|
|
973
969
|
|
|
974
970
|
.pi-caret-left:before {
|
|
975
|
-
|
|
971
|
+
content: "\e904";
|
|
976
972
|
}
|
|
977
973
|
|
|
978
974
|
.pi-caret-right:before {
|
|
979
|
-
|
|
975
|
+
content: "\e905";
|
|
980
976
|
}
|
|
981
977
|
|
|
982
978
|
.pi-caret-down:before {
|
|
983
|
-
|
|
979
|
+
content: "\e906";
|
|
984
980
|
}
|
|
985
981
|
|
|
986
982
|
.pi-caret-up:before {
|
|
987
|
-
|
|
983
|
+
content: "\e907";
|
|
988
984
|
}
|
|
989
985
|
|
|
990
986
|
.pi-search:before {
|
|
991
|
-
|
|
987
|
+
content: "\e908";
|
|
992
988
|
}
|
|
993
989
|
|
|
994
990
|
.pi-check:before {
|
|
995
|
-
|
|
996
|
-
/* content: url("../assets/svg/check.svg");
|
|
997
|
-
width: 10px;
|
|
998
|
-
height: 10px; */
|
|
991
|
+
content: "\e909";
|
|
999
992
|
}
|
|
1000
993
|
|
|
994
|
+
|
|
1001
995
|
.pi-check-circle:before {
|
|
1002
|
-
|
|
996
|
+
content: "\e90a";
|
|
1003
997
|
}
|
|
1004
998
|
|
|
1005
999
|
.pi-times:before {
|
|
1006
|
-
|
|
1000
|
+
content: "\e90b";
|
|
1007
1001
|
}
|
|
1008
1002
|
|
|
1009
1003
|
.pi-times-circle:before {
|
|
1010
|
-
|
|
1004
|
+
content: "\e90c";
|
|
1011
1005
|
}
|
|
1012
1006
|
|
|
1013
1007
|
.pi-plus:before {
|
|
1014
|
-
|
|
1008
|
+
content: "\e90d";
|
|
1015
1009
|
}
|
|
1016
1010
|
|
|
1017
1011
|
.pi-plus-circle:before {
|
|
1018
|
-
|
|
1012
|
+
content: "\e90e";
|
|
1019
1013
|
}
|
|
1020
1014
|
|
|
1021
1015
|
.pi-minus:before {
|
|
1022
|
-
|
|
1016
|
+
content: "\e90f";
|
|
1023
1017
|
}
|
|
1024
1018
|
|
|
1025
1019
|
.pi-minus-circle:before {
|
|
1026
|
-
|
|
1020
|
+
content: "\e910";
|
|
1027
1021
|
}
|
|
1028
1022
|
|
|
1029
1023
|
.pi-circle-on:before {
|
|
1030
|
-
|
|
1024
|
+
content: "\e911";
|
|
1031
1025
|
}
|
|
1032
1026
|
|
|
1033
1027
|
.pi-circle-off:before {
|
|
1034
|
-
|
|
1028
|
+
content: "\e912";
|
|
1035
1029
|
}
|
|
1036
1030
|
|
|
1037
1031
|
.pi-sort-down:before {
|
|
1038
|
-
|
|
1032
|
+
content: "\e913";
|
|
1039
1033
|
}
|
|
1040
1034
|
|
|
1041
1035
|
.pi-sort-up:before {
|
|
1042
|
-
|
|
1036
|
+
content: "\e914";
|
|
1043
1037
|
}
|
|
1044
1038
|
|
|
1045
1039
|
.pi-sort:before {
|
|
1046
|
-
|
|
1040
|
+
content: "\e915";
|
|
1047
1041
|
}
|
|
1048
1042
|
|
|
1049
1043
|
.pi-step-backward:before {
|
|
1050
|
-
|
|
1044
|
+
content: "\e916";
|
|
1051
1045
|
}
|
|
1052
1046
|
|
|
1053
1047
|
.pi-step-forward:before {
|
|
1054
|
-
|
|
1048
|
+
content: "\e917";
|
|
1055
1049
|
}
|
|
1056
1050
|
|
|
1057
1051
|
.pi-th-large:before {
|
|
1058
|
-
|
|
1052
|
+
content: "\e918";
|
|
1059
1053
|
}
|
|
1060
1054
|
|
|
1061
1055
|
.pi-arrow-down:before {
|
|
1062
|
-
|
|
1056
|
+
content: "\e919";
|
|
1063
1057
|
}
|
|
1064
1058
|
|
|
1065
1059
|
.pi-arrow-left:before {
|
|
1066
|
-
|
|
1060
|
+
content: "\e91a";
|
|
1067
1061
|
}
|
|
1068
1062
|
|
|
1069
1063
|
.pi-arrow-right:before {
|
|
1070
|
-
|
|
1064
|
+
content: "\e91b";
|
|
1071
1065
|
}
|
|
1072
1066
|
|
|
1073
1067
|
.pi-arrow-up:before {
|
|
1074
|
-
|
|
1068
|
+
content: "\e91c";
|
|
1075
1069
|
}
|
|
1076
1070
|
|
|
1077
1071
|
.pi-bars:before {
|
|
1078
|
-
|
|
1072
|
+
content: "\e91d";
|
|
1079
1073
|
}
|
|
1080
1074
|
|
|
1081
1075
|
.pi-arrow-circle-down:before {
|
|
1082
|
-
|
|
1076
|
+
content: "\e91e";
|
|
1083
1077
|
}
|
|
1084
1078
|
|
|
1085
1079
|
.pi-arrow-circle-left:before {
|
|
1086
|
-
|
|
1080
|
+
content: "\e91f";
|
|
1087
1081
|
}
|
|
1088
1082
|
|
|
1089
1083
|
.pi-arrow-circle-right:before {
|
|
1090
|
-
|
|
1084
|
+
content: "\e920";
|
|
1091
1085
|
}
|
|
1092
1086
|
|
|
1093
1087
|
.pi-arrow-circle-up:before {
|
|
1094
|
-
|
|
1088
|
+
content: "\e921";
|
|
1095
1089
|
}
|
|
1096
1090
|
|
|
1097
1091
|
.pi-info:before {
|
|
1098
|
-
|
|
1092
|
+
content: "\e923";
|
|
1099
1093
|
}
|
|
1100
1094
|
|
|
1101
1095
|
.pi-info-circle:before {
|
|
1102
|
-
|
|
1096
|
+
content: "\e924";
|
|
1103
1097
|
}
|
|
1104
1098
|
|
|
1105
1099
|
.pi-home:before {
|
|
1106
|
-
|
|
1100
|
+
content: "\e925";
|
|
1107
1101
|
}
|
|
1108
1102
|
|
|
1109
1103
|
.pi-spinner:before {
|
|
1110
|
-
|
|
1104
|
+
content: "\e926";
|
|
1111
1105
|
}
|