@odx/icons 3.48.0 → 3.49.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/CHANGELOG.md +7 -0
- package/core/core-demo-poster.html +232 -15
- package/core/core-iconmap.scss +46 -15
- package/core/core-icons.css +1 -1
- package/core/core-icons.eot +0 -0
- package/core/core-icons.scss +126 -33
- package/core/core-icons.ttf +0 -0
- package/core/core-icons.woff +0 -0
- package/core/core-icons.woff2 +0 -0
- package/core/core-metadata.json +130 -6
- package/core/svg/battery-alarm-mono.svg +4 -0
- package/core/svg/battery-error-mono.svg +4 -0
- package/core/svg/battery-warning-mono.svg +5 -0
- package/core/svg/blocked-mono.svg +4 -0
- package/core/svg/blocked.svg +5 -1
- package/core/svg/calendar-bumptest-error-mono.svg +4 -0
- package/core/svg/calendar-bumptest-warning-mono.svg +4 -0
- package/core/svg/calendar-calibration-error-mono.svg +4 -0
- package/core/svg/calendar-calibration-warning-mono.svg +4 -0
- package/core/svg/calendar-flag-mono.svg +4 -0
- package/core/svg/calendar-user-error-mono.svg +4 -0
- package/core/svg/calendar-user-warning-mono.svg +4 -0
- package/core/svg/check-filled-mono.svg +4 -0
- package/core/svg/check-filled.svg +2 -1
- package/core/svg/cloud-error-mono.svg +4 -0
- package/core/svg/cloud-ok-mono.svg +4 -0
- package/core/svg/cloud-warning-mono.svg +4 -0
- package/core/svg/delete-success-mono.svg +4 -0
- package/core/svg/document-flag-mono.svg +4 -0
- package/core/svg/document-ok-mono.svg +4 -0
- package/core/svg/error-filled-mono.svg +4 -0
- package/core/svg/error-filled.svg +2 -1
- package/core/svg/feedback-warning-filled-mono.svg +4 -0
- package/core/svg/feedback-warning-filled.svg +2 -1
- package/core/svg/ifu-error-mono.svg +4 -0
- package/core/svg/ifu-success-mono.svg +4 -0
- package/core/svg/location-scan-error-mono.svg +4 -0
- package/core/svg/location-scan-success-mono.svg +4 -0
- package/core/svg/mail-error-mono.svg +4 -0
- package/core/svg/mail-success-mono.svg +4 -0
- package/core/svg/print-error-mono.svg +4 -0
- package/core/svg/print-success-mono.svg +4 -0
- package/core/svg/print-warning-mono.svg +4 -0
- package/core/svg/shoppingcart-history.svg +4 -0
- package/core/svg/sync-off-success-mono.svg +4 -0
- package/core/svg/sync-success-mono.svg +4 -0
- package/core/svg/user-id-error-mono.svg +4 -0
- package/core/svg/user-id-invalid-mono.svg +4 -0
- package/core/svg/user-id-success-mono.svg +4 -0
- package/core/svg/warning-filled-mono.svg +4 -0
- package/core/svg/warning-filled.svg +2 -1
- package/medical/medical-demo-poster.html +2 -2
- package/package.json +1 -1
- package/safety/safety-demo-poster.html +3 -3
- package/safety/safety-iconmap.scss +1 -0
- package/safety/safety-icons.css +1 -1
- package/safety/safety-icons.eot +0 -0
- package/safety/safety-icons.scss +4 -0
- package/safety/safety-icons.ttf +0 -0
- package/safety/safety-icons.woff +0 -0
- package/safety/safety-icons.woff2 +0 -0
- package/safety/svg/system-storage-error.svg +14 -1
- package/safety/svg/underrange-error.svg +6 -1
- package/uib-legacy/uib-legacy-demo-poster.html +2 -2
- package/core/svg/blocked-colored.svg +0 -1
- package/core/svg/check-colored.svg +0 -5
- package/core/svg/error-colored.svg +0 -5
- package/core/svg/feedback-warning-colored.svg +0 -5
- package/core/svg/warning-colored.svg +0 -5
package/core/core-icons.scss
CHANGED
|
@@ -166,6 +166,9 @@
|
|
|
166
166
|
&[data-icon-name="battery-75"]::before {
|
|
167
167
|
content: utils.get-icon-glyph("battery-75");
|
|
168
168
|
}
|
|
169
|
+
&[data-icon-name="battery-alarm-mono"]::before {
|
|
170
|
+
content: utils.get-icon-glyph("battery-alarm-mono");
|
|
171
|
+
}
|
|
169
172
|
&[data-icon-name="battery-alarm"]::before {
|
|
170
173
|
content: utils.get-icon-glyph("battery-alarm");
|
|
171
174
|
color: #F30303;
|
|
@@ -180,6 +183,9 @@
|
|
|
180
183
|
&[data-icon-name="battery-charge"]::before {
|
|
181
184
|
content: utils.get-icon-glyph("battery-charge");
|
|
182
185
|
}
|
|
186
|
+
&[data-icon-name="battery-error-mono"]::before {
|
|
187
|
+
content: utils.get-icon-glyph("battery-error-mono");
|
|
188
|
+
}
|
|
183
189
|
&[data-icon-name="battery-error"]::before {
|
|
184
190
|
content: utils.get-icon-glyph("battery-error");
|
|
185
191
|
color: #F30303;
|
|
@@ -194,6 +200,9 @@
|
|
|
194
200
|
&[data-icon-name="battery-uncalibrated"]::before {
|
|
195
201
|
content: utils.get-icon-glyph("battery-uncalibrated");
|
|
196
202
|
}
|
|
203
|
+
&[data-icon-name="battery-warning-mono"]::before {
|
|
204
|
+
content: utils.get-icon-glyph("battery-warning-mono");
|
|
205
|
+
}
|
|
197
206
|
&[data-icon-name="battery-warning"]::before {
|
|
198
207
|
content: utils.get-icon-glyph("battery-warning");
|
|
199
208
|
color: #FFE300;
|
|
@@ -205,15 +214,15 @@
|
|
|
205
214
|
&[data-icon-name="battery-warning"] span::before {
|
|
206
215
|
content: utils.get-icon-glyph("battery-warning-part2");
|
|
207
216
|
}
|
|
217
|
+
&[data-icon-name="blocked-mono"]::before {
|
|
218
|
+
content: utils.get-icon-glyph("blocked-mono");
|
|
219
|
+
}
|
|
208
220
|
&[data-icon-name="blocked"]::before {
|
|
209
221
|
content: utils.get-icon-glyph("blocked");
|
|
210
|
-
}
|
|
211
|
-
&[data-icon-name="blocked-colored"]::before {
|
|
212
|
-
content: utils.get-icon-glyph("blocked-colored");
|
|
213
222
|
color: #F30303;
|
|
214
223
|
}
|
|
215
|
-
&[data-icon-name="blocked
|
|
216
|
-
content: utils.get-icon-glyph("blocked-
|
|
224
|
+
&[data-icon-name="blocked"]::after {
|
|
225
|
+
content: utils.get-icon-glyph("blocked-part1");
|
|
217
226
|
color: #FFF;
|
|
218
227
|
}
|
|
219
228
|
&[data-icon-name="bluetooth"]::before {
|
|
@@ -264,6 +273,9 @@
|
|
|
264
273
|
&[data-icon-name="calendar-bumptest"]::before {
|
|
265
274
|
content: utils.get-icon-glyph("calendar-bumptest");
|
|
266
275
|
}
|
|
276
|
+
&[data-icon-name="calendar-bumptest-error-mono"]::before {
|
|
277
|
+
content: utils.get-icon-glyph("calendar-bumptest-error-mono");
|
|
278
|
+
}
|
|
267
279
|
&[data-icon-name="calendar-bumptest-error"]::before {
|
|
268
280
|
content: utils.get-icon-glyph("calendar-bumptest-error");
|
|
269
281
|
color: #F30303;
|
|
@@ -278,6 +290,9 @@
|
|
|
278
290
|
&[data-icon-name="calendar-bumptest-warning"]::before {
|
|
279
291
|
content: utils.get-icon-glyph("calendar-bumptest-warning");
|
|
280
292
|
}
|
|
293
|
+
&[data-icon-name="calendar-bumptest-warning-mono"]::before {
|
|
294
|
+
content: utils.get-icon-glyph("calendar-bumptest-warning-mono");
|
|
295
|
+
}
|
|
281
296
|
&[data-icon-name="calendar-bumptest-warning"]::after {
|
|
282
297
|
content: utils.get-icon-glyph("calendar-bumptest-warning-part1");
|
|
283
298
|
color: #FFE300;
|
|
@@ -289,6 +304,9 @@
|
|
|
289
304
|
&[data-icon-name="calendar-calibration"]::before {
|
|
290
305
|
content: utils.get-icon-glyph("calendar-calibration");
|
|
291
306
|
}
|
|
307
|
+
&[data-icon-name="calendar-calibration-error-mono"]::before {
|
|
308
|
+
content: utils.get-icon-glyph("calendar-calibration-error-mono");
|
|
309
|
+
}
|
|
292
310
|
&[data-icon-name="calendar-calibration-error"]::before {
|
|
293
311
|
content: utils.get-icon-glyph("calendar-calibration-error");
|
|
294
312
|
color: #F30303;
|
|
@@ -303,6 +321,9 @@
|
|
|
303
321
|
&[data-icon-name="calendar-calibration-warning"]::before {
|
|
304
322
|
content: utils.get-icon-glyph("calendar-calibration-warning");
|
|
305
323
|
}
|
|
324
|
+
&[data-icon-name="calendar-calibration-warning-mono"]::before {
|
|
325
|
+
content: utils.get-icon-glyph("calendar-calibration-warning-mono");
|
|
326
|
+
}
|
|
306
327
|
&[data-icon-name="calendar-calibration-warning"]::after {
|
|
307
328
|
content: utils.get-icon-glyph("calendar-calibration-warning-part1");
|
|
308
329
|
color: #FFE300;
|
|
@@ -317,6 +338,9 @@
|
|
|
317
338
|
&[data-icon-name="calendar-event"]::before {
|
|
318
339
|
content: utils.get-icon-glyph("calendar-event");
|
|
319
340
|
}
|
|
341
|
+
&[data-icon-name="calendar-flag-mono"]::before {
|
|
342
|
+
content: utils.get-icon-glyph("calendar-flag-mono");
|
|
343
|
+
}
|
|
320
344
|
&[data-icon-name="calendar-flag"]::before {
|
|
321
345
|
content: utils.get-icon-glyph("calendar-flag");
|
|
322
346
|
color: #FFE300;
|
|
@@ -339,6 +363,9 @@
|
|
|
339
363
|
&[data-icon-name="calendar-user"]::before {
|
|
340
364
|
content: utils.get-icon-glyph("calendar-user");
|
|
341
365
|
}
|
|
366
|
+
&[data-icon-name="calendar-user-error-mono"]::before {
|
|
367
|
+
content: utils.get-icon-glyph("calendar-user-error-mono");
|
|
368
|
+
}
|
|
342
369
|
&[data-icon-name="calendar-user-error"]::before {
|
|
343
370
|
content: utils.get-icon-glyph("calendar-user-error");
|
|
344
371
|
color: #F30303;
|
|
@@ -353,6 +380,9 @@
|
|
|
353
380
|
&[data-icon-name="calendar-user-warning"]::before {
|
|
354
381
|
content: utils.get-icon-glyph("calendar-user-warning");
|
|
355
382
|
}
|
|
383
|
+
&[data-icon-name="calendar-user-warning-mono"]::before {
|
|
384
|
+
content: utils.get-icon-glyph("calendar-user-warning-mono");
|
|
385
|
+
}
|
|
356
386
|
&[data-icon-name="calendar-user-warning"]::after {
|
|
357
387
|
content: utils.get-icon-glyph("calendar-user-warning-part1");
|
|
358
388
|
color: #FFE300;
|
|
@@ -373,16 +403,16 @@
|
|
|
373
403
|
&[data-icon-name="check"]::before {
|
|
374
404
|
content: utils.get-icon-glyph("check");
|
|
375
405
|
}
|
|
376
|
-
&[data-icon-name="check-
|
|
377
|
-
content: utils.get-icon-glyph("check-
|
|
378
|
-
color: #00DD31;
|
|
379
|
-
}
|
|
380
|
-
&[data-icon-name="check-colored"]::after {
|
|
381
|
-
content: utils.get-icon-glyph("check-colored-part1");
|
|
382
|
-
color: #002766;
|
|
406
|
+
&[data-icon-name="check-filled-mono"]::before {
|
|
407
|
+
content: utils.get-icon-glyph("check-filled-mono");
|
|
383
408
|
}
|
|
384
409
|
&[data-icon-name="check-filled"]::before {
|
|
385
410
|
content: utils.get-icon-glyph("check-filled");
|
|
411
|
+
color: #00DD31;
|
|
412
|
+
}
|
|
413
|
+
&[data-icon-name="check-filled"]::after {
|
|
414
|
+
content: utils.get-icon-glyph("check-filled-part1");
|
|
415
|
+
color: #002766;
|
|
386
416
|
}
|
|
387
417
|
&[data-icon-name="chevron-down"]::before {
|
|
388
418
|
content: utils.get-icon-glyph("chevron-down");
|
|
@@ -417,6 +447,9 @@
|
|
|
417
447
|
&[data-icon-name="cloud-disabled"]::before {
|
|
418
448
|
content: utils.get-icon-glyph("cloud-disabled");
|
|
419
449
|
}
|
|
450
|
+
&[data-icon-name="cloud-error-mono"]::before {
|
|
451
|
+
content: utils.get-icon-glyph("cloud-error-mono");
|
|
452
|
+
}
|
|
420
453
|
&[data-icon-name="cloud-error"]::before {
|
|
421
454
|
content: utils.get-icon-glyph("cloud-error");
|
|
422
455
|
color: #F30303;
|
|
@@ -428,6 +461,9 @@
|
|
|
428
461
|
&[data-icon-name="cloud-error"] span::before {
|
|
429
462
|
content: utils.get-icon-glyph("cloud-error-part2");
|
|
430
463
|
}
|
|
464
|
+
&[data-icon-name="cloud-ok-mono"]::before {
|
|
465
|
+
content: utils.get-icon-glyph("cloud-ok-mono");
|
|
466
|
+
}
|
|
431
467
|
&[data-icon-name="cloud-ok"]::before {
|
|
432
468
|
content: utils.get-icon-glyph("cloud-ok");
|
|
433
469
|
color: #00DD31;
|
|
@@ -445,6 +481,9 @@
|
|
|
445
481
|
&[data-icon-name="cloud-warning"]::before {
|
|
446
482
|
content: utils.get-icon-glyph("cloud-warning");
|
|
447
483
|
}
|
|
484
|
+
&[data-icon-name="cloud-warning-mono"]::before {
|
|
485
|
+
content: utils.get-icon-glyph("cloud-warning-mono");
|
|
486
|
+
}
|
|
448
487
|
&[data-icon-name="cloud-warning"]::after {
|
|
449
488
|
content: utils.get-icon-glyph("cloud-warning-part1");
|
|
450
489
|
color: #FFE300;
|
|
@@ -513,6 +552,9 @@
|
|
|
513
552
|
&[data-icon-name="delete"]::before {
|
|
514
553
|
content: utils.get-icon-glyph("delete");
|
|
515
554
|
}
|
|
555
|
+
&[data-icon-name="delete-success-mono"]::before {
|
|
556
|
+
content: utils.get-icon-glyph("delete-success-mono");
|
|
557
|
+
}
|
|
516
558
|
&[data-icon-name="delete-success"]::before {
|
|
517
559
|
content: utils.get-icon-glyph("delete-success");
|
|
518
560
|
color: #00DD31;
|
|
@@ -536,6 +578,9 @@
|
|
|
536
578
|
&[data-icon-name="document-check"]::before {
|
|
537
579
|
content: utils.get-icon-glyph("document-check");
|
|
538
580
|
}
|
|
581
|
+
&[data-icon-name="document-flag-mono"]::before {
|
|
582
|
+
content: utils.get-icon-glyph("document-flag-mono");
|
|
583
|
+
}
|
|
539
584
|
&[data-icon-name="document-flag"]::before {
|
|
540
585
|
content: utils.get-icon-glyph("document-flag");
|
|
541
586
|
color: #F30303;
|
|
@@ -546,6 +591,9 @@
|
|
|
546
591
|
&[data-icon-name="document-ok"]::before {
|
|
547
592
|
content: utils.get-icon-glyph("document-ok");
|
|
548
593
|
}
|
|
594
|
+
&[data-icon-name="document-ok-mono"]::before {
|
|
595
|
+
content: utils.get-icon-glyph("document-ok-mono");
|
|
596
|
+
}
|
|
549
597
|
&[data-icon-name="document-qa"]::before {
|
|
550
598
|
content: utils.get-icon-glyph("document-qa");
|
|
551
599
|
}
|
|
@@ -576,16 +624,16 @@
|
|
|
576
624
|
&[data-icon-name="error"]::before {
|
|
577
625
|
content: utils.get-icon-glyph("error");
|
|
578
626
|
}
|
|
579
|
-
&[data-icon-name="error-
|
|
580
|
-
content: utils.get-icon-glyph("error-
|
|
581
|
-
color: #F30303;
|
|
582
|
-
}
|
|
583
|
-
&[data-icon-name="error-colored"]::after {
|
|
584
|
-
content: utils.get-icon-glyph("error-colored-part1");
|
|
585
|
-
color: #FFF;
|
|
627
|
+
&[data-icon-name="error-filled-mono"]::before {
|
|
628
|
+
content: utils.get-icon-glyph("error-filled-mono");
|
|
586
629
|
}
|
|
587
630
|
&[data-icon-name="error-filled"]::before {
|
|
588
631
|
content: utils.get-icon-glyph("error-filled");
|
|
632
|
+
color: #F30303;
|
|
633
|
+
}
|
|
634
|
+
&[data-icon-name="error-filled"]::after {
|
|
635
|
+
content: utils.get-icon-glyph("error-filled-part1");
|
|
636
|
+
color: #FFF;
|
|
589
637
|
}
|
|
590
638
|
&[data-icon-name="export"]::before {
|
|
591
639
|
content: utils.get-icon-glyph("export");
|
|
@@ -614,16 +662,16 @@
|
|
|
614
662
|
&[data-icon-name="feedback-warning"]::before {
|
|
615
663
|
content: utils.get-icon-glyph("feedback-warning");
|
|
616
664
|
}
|
|
617
|
-
&[data-icon-name="feedback-warning-
|
|
618
|
-
content: utils.get-icon-glyph("feedback-warning-
|
|
619
|
-
color: #FFE300;
|
|
620
|
-
}
|
|
621
|
-
&[data-icon-name="feedback-warning-colored"]::after {
|
|
622
|
-
content: utils.get-icon-glyph("feedback-warning-colored-part1");
|
|
623
|
-
color: #002766;
|
|
665
|
+
&[data-icon-name="feedback-warning-filled-mono"]::before {
|
|
666
|
+
content: utils.get-icon-glyph("feedback-warning-filled-mono");
|
|
624
667
|
}
|
|
625
668
|
&[data-icon-name="feedback-warning-filled"]::before {
|
|
626
669
|
content: utils.get-icon-glyph("feedback-warning-filled");
|
|
670
|
+
color: #FFE300;
|
|
671
|
+
}
|
|
672
|
+
&[data-icon-name="feedback-warning-filled"]::after {
|
|
673
|
+
content: utils.get-icon-glyph("feedback-warning-filled-part1");
|
|
674
|
+
color: #002766;
|
|
627
675
|
}
|
|
628
676
|
&[data-icon-name="file"]::before {
|
|
629
677
|
content: utils.get-icon-glyph("file");
|
|
@@ -721,6 +769,9 @@
|
|
|
721
769
|
&[data-icon-name="ifu"]::before {
|
|
722
770
|
content: utils.get-icon-glyph("ifu");
|
|
723
771
|
}
|
|
772
|
+
&[data-icon-name="ifu-error-mono"]::before {
|
|
773
|
+
content: utils.get-icon-glyph("ifu-error-mono");
|
|
774
|
+
}
|
|
724
775
|
&[data-icon-name="ifu-error"]::before {
|
|
725
776
|
content: utils.get-icon-glyph("ifu-error");
|
|
726
777
|
color: #F30303;
|
|
@@ -732,6 +783,9 @@
|
|
|
732
783
|
&[data-icon-name="ifu-error"] span::before {
|
|
733
784
|
content: utils.get-icon-glyph("ifu-error-part2");
|
|
734
785
|
}
|
|
786
|
+
&[data-icon-name="ifu-success-mono"]::before {
|
|
787
|
+
content: utils.get-icon-glyph("ifu-success-mono");
|
|
788
|
+
}
|
|
735
789
|
&[data-icon-name="ifu-success"]::before {
|
|
736
790
|
content: utils.get-icon-glyph("ifu-success");
|
|
737
791
|
color: #00DD31;
|
|
@@ -788,6 +842,9 @@
|
|
|
788
842
|
&[data-icon-name="location-scan"]::before {
|
|
789
843
|
content: utils.get-icon-glyph("location-scan");
|
|
790
844
|
}
|
|
845
|
+
&[data-icon-name="location-scan-error-mono"]::before {
|
|
846
|
+
content: utils.get-icon-glyph("location-scan-error-mono");
|
|
847
|
+
}
|
|
791
848
|
&[data-icon-name="location-scan-error"]::before {
|
|
792
849
|
content: utils.get-icon-glyph("location-scan-error");
|
|
793
850
|
color: #F30303;
|
|
@@ -799,6 +856,9 @@
|
|
|
799
856
|
&[data-icon-name="location-scan-error"] span::before {
|
|
800
857
|
content: utils.get-icon-glyph("location-scan-error-part2");
|
|
801
858
|
}
|
|
859
|
+
&[data-icon-name="location-scan-success-mono"]::before {
|
|
860
|
+
content: utils.get-icon-glyph("location-scan-success-mono");
|
|
861
|
+
}
|
|
802
862
|
&[data-icon-name="location-scan-success"]::before {
|
|
803
863
|
content: utils.get-icon-glyph("location-scan-success");
|
|
804
864
|
color: #00DD31;
|
|
@@ -822,6 +882,9 @@
|
|
|
822
882
|
&[data-icon-name="mail"]::before {
|
|
823
883
|
content: utils.get-icon-glyph("mail");
|
|
824
884
|
}
|
|
885
|
+
&[data-icon-name="mail-error-mono"]::before {
|
|
886
|
+
content: utils.get-icon-glyph("mail-error-mono");
|
|
887
|
+
}
|
|
825
888
|
&[data-icon-name="mail-error"]::before {
|
|
826
889
|
content: utils.get-icon-glyph("mail-error");
|
|
827
890
|
color: #F30303;
|
|
@@ -845,6 +908,9 @@
|
|
|
845
908
|
&[data-icon-name="mail-sending"]::before {
|
|
846
909
|
content: utils.get-icon-glyph("mail-sending");
|
|
847
910
|
}
|
|
911
|
+
&[data-icon-name="mail-success-mono"]::before {
|
|
912
|
+
content: utils.get-icon-glyph("mail-success-mono");
|
|
913
|
+
}
|
|
848
914
|
&[data-icon-name="mail-success"]::before {
|
|
849
915
|
content: utils.get-icon-glyph("mail-success");
|
|
850
916
|
color: #00DD31;
|
|
@@ -973,6 +1039,9 @@
|
|
|
973
1039
|
&[data-icon-name="print-config"]::before {
|
|
974
1040
|
content: utils.get-icon-glyph("print-config");
|
|
975
1041
|
}
|
|
1042
|
+
&[data-icon-name="print-error-mono"]::before {
|
|
1043
|
+
content: utils.get-icon-glyph("print-error-mono");
|
|
1044
|
+
}
|
|
976
1045
|
&[data-icon-name="print-error"]::before {
|
|
977
1046
|
content: utils.get-icon-glyph("print-error");
|
|
978
1047
|
color: #F30303;
|
|
@@ -990,6 +1059,9 @@
|
|
|
990
1059
|
&[data-icon-name="print-selection"]::before {
|
|
991
1060
|
content: utils.get-icon-glyph("print-selection");
|
|
992
1061
|
}
|
|
1062
|
+
&[data-icon-name="print-success-mono"]::before {
|
|
1063
|
+
content: utils.get-icon-glyph("print-success-mono");
|
|
1064
|
+
}
|
|
993
1065
|
&[data-icon-name="print-success"]::before {
|
|
994
1066
|
content: utils.get-icon-glyph("print-success");
|
|
995
1067
|
color: #00DD31;
|
|
@@ -1004,6 +1076,9 @@
|
|
|
1004
1076
|
&[data-icon-name="print-warning"]::before {
|
|
1005
1077
|
content: utils.get-icon-glyph("print-warning");
|
|
1006
1078
|
}
|
|
1079
|
+
&[data-icon-name="print-warning-mono"]::before {
|
|
1080
|
+
content: utils.get-icon-glyph("print-warning-mono");
|
|
1081
|
+
}
|
|
1007
1082
|
&[data-icon-name="print-warning"]::after {
|
|
1008
1083
|
content: utils.get-icon-glyph("print-warning-part1");
|
|
1009
1084
|
color: #FFE300;
|
|
@@ -1105,6 +1180,9 @@
|
|
|
1105
1180
|
&[data-icon-name="shoppingcart"]::before {
|
|
1106
1181
|
content: utils.get-icon-glyph("shoppingcart");
|
|
1107
1182
|
}
|
|
1183
|
+
&[data-icon-name="shoppingcart-history"]::before {
|
|
1184
|
+
content: utils.get-icon-glyph("shoppingcart-history");
|
|
1185
|
+
}
|
|
1108
1186
|
&[data-icon-name="shot-close"]::before {
|
|
1109
1187
|
content: utils.get-icon-glyph("shot-close");
|
|
1110
1188
|
}
|
|
@@ -1150,6 +1228,9 @@
|
|
|
1150
1228
|
&[data-icon-name="sync-off"]::before {
|
|
1151
1229
|
content: utils.get-icon-glyph("sync-off");
|
|
1152
1230
|
}
|
|
1231
|
+
&[data-icon-name="sync-off-success-mono"]::before {
|
|
1232
|
+
content: utils.get-icon-glyph("sync-off-success-mono");
|
|
1233
|
+
}
|
|
1153
1234
|
&[data-icon-name="sync-off-success"]::before {
|
|
1154
1235
|
content: utils.get-icon-glyph("sync-off-success");
|
|
1155
1236
|
color: #00DD31;
|
|
@@ -1161,6 +1242,9 @@
|
|
|
1161
1242
|
&[data-icon-name="sync-off-success"] span::before {
|
|
1162
1243
|
content: utils.get-icon-glyph("sync-off-success-part2");
|
|
1163
1244
|
}
|
|
1245
|
+
&[data-icon-name="sync-success-mono"]::before {
|
|
1246
|
+
content: utils.get-icon-glyph("sync-success-mono");
|
|
1247
|
+
}
|
|
1164
1248
|
&[data-icon-name="sync-success"]::before {
|
|
1165
1249
|
content: utils.get-icon-glyph("sync-success");
|
|
1166
1250
|
color: #00DD31;
|
|
@@ -1226,6 +1310,9 @@
|
|
|
1226
1310
|
&[data-icon-name="user-id-edit"]::before {
|
|
1227
1311
|
content: utils.get-icon-glyph("user-id-edit");
|
|
1228
1312
|
}
|
|
1313
|
+
&[data-icon-name="user-id-error-mono"]::before {
|
|
1314
|
+
content: utils.get-icon-glyph("user-id-error-mono");
|
|
1315
|
+
}
|
|
1229
1316
|
&[data-icon-name="user-id-error"]::before {
|
|
1230
1317
|
content: utils.get-icon-glyph("user-id-error");
|
|
1231
1318
|
color: #F30303;
|
|
@@ -1237,6 +1324,9 @@
|
|
|
1237
1324
|
&[data-icon-name="user-id-error"] span::before {
|
|
1238
1325
|
content: utils.get-icon-glyph("user-id-error-part2");
|
|
1239
1326
|
}
|
|
1327
|
+
&[data-icon-name="user-id-invalid-mono"]::before {
|
|
1328
|
+
content: utils.get-icon-glyph("user-id-invalid-mono");
|
|
1329
|
+
}
|
|
1240
1330
|
&[data-icon-name="user-id-invalid"]::before {
|
|
1241
1331
|
content: utils.get-icon-glyph("user-id-invalid");
|
|
1242
1332
|
color: #F30303;
|
|
@@ -1254,6 +1344,9 @@
|
|
|
1254
1344
|
&[data-icon-name="user-id-reading"]::before {
|
|
1255
1345
|
content: utils.get-icon-glyph("user-id-reading");
|
|
1256
1346
|
}
|
|
1347
|
+
&[data-icon-name="user-id-success-mono"]::before {
|
|
1348
|
+
content: utils.get-icon-glyph("user-id-success-mono");
|
|
1349
|
+
}
|
|
1257
1350
|
&[data-icon-name="user-id-success"]::before {
|
|
1258
1351
|
content: utils.get-icon-glyph("user-id-success");
|
|
1259
1352
|
color: #00DD31;
|
|
@@ -1313,16 +1406,16 @@
|
|
|
1313
1406
|
&[data-icon-name="warning"]::before {
|
|
1314
1407
|
content: utils.get-icon-glyph("warning");
|
|
1315
1408
|
}
|
|
1316
|
-
&[data-icon-name="warning-
|
|
1317
|
-
content: utils.get-icon-glyph("warning-
|
|
1318
|
-
color: #002766;
|
|
1319
|
-
}
|
|
1320
|
-
&[data-icon-name="warning-colored"]::after {
|
|
1321
|
-
content: utils.get-icon-glyph("warning-colored-part1");
|
|
1322
|
-
color: #FFE300;
|
|
1409
|
+
&[data-icon-name="warning-filled-mono"]::before {
|
|
1410
|
+
content: utils.get-icon-glyph("warning-filled-mono");
|
|
1323
1411
|
}
|
|
1324
1412
|
&[data-icon-name="warning-filled"]::before {
|
|
1325
1413
|
content: utils.get-icon-glyph("warning-filled");
|
|
1414
|
+
color: #002766;
|
|
1415
|
+
}
|
|
1416
|
+
&[data-icon-name="warning-filled"]::after {
|
|
1417
|
+
content: utils.get-icon-glyph("warning-filled-part1");
|
|
1418
|
+
color: #FFE300;
|
|
1326
1419
|
}
|
|
1327
1420
|
&[data-icon-name="zoom-in"]::before {
|
|
1328
1421
|
content: utils.get-icon-glyph("zoom-in");
|
package/core/core-icons.ttf
CHANGED
|
Binary file
|
package/core/core-icons.woff
CHANGED
|
Binary file
|
package/core/core-icons.woff2
CHANGED
|
Binary file
|