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