@instructure/ui-icons 7.16.0 → 7.17.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.
Files changed (72) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/es/IconCanvasLogoLine.js +42 -0
  3. package/es/IconCanvasLogoSolid.js +42 -0
  4. package/es/IconCloudUploadLine.js +43 -0
  5. package/es/IconCloudUploadSolid.js +43 -0
  6. package/es/IconElevateLogoLine.js +42 -0
  7. package/es/IconElevateLogoSolid.js +42 -0
  8. package/es/IconImpactLogoLine.js +42 -0
  9. package/es/IconImpactLogoSolid.js +42 -0
  10. package/es/IconMasteryLogoLine.js +42 -0
  11. package/es/IconMasteryLogoSolid.js +42 -0
  12. package/es/IconMiniArrowDoubleLine.js +42 -0
  13. package/es/IconMiniArrowDoubleSolid.js +42 -0
  14. package/es/font/Line/InstructureIcons-Line.css +328 -298
  15. package/es/font/Line/InstructureIcons-Line.eot +0 -0
  16. package/es/font/Line/InstructureIcons-Line.svg +316 -298
  17. package/es/font/Line/InstructureIcons-Line.ttf +0 -0
  18. package/es/font/Line/InstructureIcons-Line.woff +0 -0
  19. package/es/font/Line/InstructureIcons-Line.woff2 +0 -0
  20. package/es/font/Line/InstructureIcons-Line_icon-map.scss +310 -298
  21. package/es/font/Solid/InstructureIcons-Solid.css +328 -298
  22. package/es/font/Solid/InstructureIcons-Solid.eot +0 -0
  23. package/es/font/Solid/InstructureIcons-Solid.svg +316 -298
  24. package/es/font/Solid/InstructureIcons-Solid.ttf +0 -0
  25. package/es/font/Solid/InstructureIcons-Solid.woff +0 -0
  26. package/es/font/Solid/InstructureIcons-Solid.woff2 +0 -0
  27. package/es/font/Solid/InstructureIcons-Solid_icon-map.scss +310 -298
  28. package/es/font/index.js +716 -596
  29. package/es/index.js +12 -0
  30. package/es/svg/index.js +1 -1
  31. package/lib/IconCanvasLogoLine.js +58 -0
  32. package/lib/IconCanvasLogoSolid.js +58 -0
  33. package/lib/IconCloudUploadLine.js +59 -0
  34. package/lib/IconCloudUploadSolid.js +59 -0
  35. package/lib/IconElevateLogoLine.js +58 -0
  36. package/lib/IconElevateLogoSolid.js +58 -0
  37. package/lib/IconImpactLogoLine.js +58 -0
  38. package/lib/IconImpactLogoSolid.js +58 -0
  39. package/lib/IconMasteryLogoLine.js +58 -0
  40. package/lib/IconMasteryLogoSolid.js +58 -0
  41. package/lib/IconMiniArrowDoubleLine.js +58 -0
  42. package/lib/IconMiniArrowDoubleSolid.js +58 -0
  43. package/lib/font/Line/InstructureIcons-Line.css +328 -298
  44. package/lib/font/Line/InstructureIcons-Line.eot +0 -0
  45. package/lib/font/Line/InstructureIcons-Line.svg +316 -298
  46. package/lib/font/Line/InstructureIcons-Line.ttf +0 -0
  47. package/lib/font/Line/InstructureIcons-Line.woff +0 -0
  48. package/lib/font/Line/InstructureIcons-Line.woff2 +0 -0
  49. package/lib/font/Line/InstructureIcons-Line_icon-map.scss +310 -298
  50. package/lib/font/Solid/InstructureIcons-Solid.css +328 -298
  51. package/lib/font/Solid/InstructureIcons-Solid.eot +0 -0
  52. package/lib/font/Solid/InstructureIcons-Solid.svg +316 -298
  53. package/lib/font/Solid/InstructureIcons-Solid.ttf +0 -0
  54. package/lib/font/Solid/InstructureIcons-Solid.woff +0 -0
  55. package/lib/font/Solid/InstructureIcons-Solid.woff2 +0 -0
  56. package/lib/font/Solid/InstructureIcons-Solid_icon-map.scss +310 -298
  57. package/lib/font/index.js +735 -602
  58. package/lib/index.js +96 -0
  59. package/lib/svg/index.js +1 -1
  60. package/package.json +4 -4
  61. package/svg/Line/canvas-logo.svg +3 -0
  62. package/svg/Line/cloud-upload.svg +3 -0
  63. package/svg/Line/elevate-logo.svg +3 -0
  64. package/svg/Line/impact-logo.svg +3 -0
  65. package/svg/Line/mastery-logo.svg +3 -0
  66. package/svg/Line/mini-arrow-double.svg +3 -0
  67. package/svg/Solid/canvas-logo.svg +3 -0
  68. package/svg/Solid/cloud-upload.svg +3 -0
  69. package/svg/Solid/elevate-logo.svg +3 -0
  70. package/svg/Solid/impact-logo.svg +3 -0
  71. package/svg/Solid/mastery-logo.svg +3 -0
  72. package/svg/Solid/mini-arrow-double.svg +3 -0
@@ -355,142 +355,152 @@
355
355
  }
356
356
 
357
357
 
358
- .icon-certified::before {
358
+ .icon-canvas-logo::before {
359
359
  content: "\EA34";
360
360
  }
361
361
 
362
362
 
363
- .icon-chat::before {
363
+ .icon-certified::before {
364
364
  content: "\EA35";
365
365
  }
366
366
 
367
+
368
+ .icon-chat::before {
369
+ content: "\EA36";
370
+ }
371
+
367
372
  [dir="rtl"] .icon-chat::before {
368
373
  transform: scale3d(-1, 1, 1);
369
374
  }
370
375
 
371
376
 
372
377
  .icon-check-dark::before {
373
- content: "\EA36";
378
+ content: "\EA37";
374
379
  }
375
380
 
376
381
 
377
382
  .icon-check-mark-indeterminate::before {
378
- content: "\EA37";
383
+ content: "\EA38";
379
384
  }
380
385
 
381
386
 
382
387
  .icon-check-mark::before {
383
- content: "\EA38";
388
+ content: "\EA39";
384
389
  }
385
390
 
386
391
 
387
392
  .icon-check-plus::before {
388
- content: "\EA39";
393
+ content: "\EA3A";
389
394
  }
390
395
 
391
396
 
392
397
  .icon-check::before {
393
- content: "\EA3A";
398
+ content: "\EA3B";
394
399
  }
395
400
 
396
401
 
397
402
  .icon-circle-arrow-down::before {
398
- content: "\EA3B";
403
+ content: "\EA3C";
399
404
  }
400
405
 
401
406
 
402
407
  .icon-circle-arrow-up::before {
403
- content: "\EA3C";
408
+ content: "\EA3D";
404
409
  }
405
410
 
406
411
 
407
412
  .icon-clear-text-formatting::before {
408
- content: "\EA3D";
413
+ content: "\EA3E";
409
414
  }
410
415
 
411
416
 
412
417
  .icon-clock::before {
413
- content: "\EA3E";
418
+ content: "\EA3F";
414
419
  }
415
420
 
416
421
 
417
422
  .icon-closed-captioning-off::before {
418
- content: "\EA3F";
423
+ content: "\EA40";
419
424
  }
420
425
 
421
426
 
422
427
  .icon-closed-captioning-on::before {
423
- content: "\EA40";
428
+ content: "\EA41";
424
429
  }
425
430
 
426
431
 
427
432
  .icon-closed-captioning::before {
428
- content: "\EA41";
433
+ content: "\EA42";
429
434
  }
430
435
 
431
436
 
432
437
  .icon-cloud-download::before {
433
- content: "\EA42";
438
+ content: "\EA43";
434
439
  }
435
440
 
436
441
 
437
442
  .icon-cloud-lock::before {
438
- content: "\EA43";
443
+ content: "\EA44";
444
+ }
445
+
446
+
447
+ .icon-cloud-upload::before {
448
+ content: "\EA45";
439
449
  }
440
450
 
441
451
 
442
452
  .icon-code::before {
443
- content: "\EA44";
453
+ content: "\EA46";
444
454
  }
445
455
 
446
456
 
447
457
  .icon-collapse::before {
448
- content: "\EA45";
458
+ content: "\EA47";
449
459
  }
450
460
 
451
461
 
452
462
  .icon-collection-save::before {
453
- content: "\EA46";
463
+ content: "\EA48";
454
464
  }
455
465
 
456
466
 
457
467
  .icon-collection::before {
458
- content: "\EA47";
468
+ content: "\EA49";
459
469
  }
460
470
 
461
471
 
462
472
  .icon-comment::before {
463
- content: "\EA48";
473
+ content: "\EA4A";
464
474
  }
465
475
 
466
476
 
467
477
  .icon-comments-off::before {
468
- content: "\EA49";
478
+ content: "\EA4B";
469
479
  }
470
480
 
471
481
 
472
482
  .icon-comments-on::before {
473
- content: "\EA4A";
483
+ content: "\EA4C";
474
484
  }
475
485
 
476
486
 
477
487
  .icon-commons::before {
478
- content: "\EA4B";
488
+ content: "\EA4D";
479
489
  }
480
490
 
481
491
 
482
492
  .icon-compass::before {
483
- content: "\EA4C";
493
+ content: "\EA4E";
484
494
  }
485
495
 
486
496
 
487
497
  .icon-complete::before {
488
- content: "\EA4D";
498
+ content: "\EA4F";
489
499
  }
490
500
 
491
501
 
492
502
  .icon-compose::before {
493
- content: "\EA4E";
503
+ content: "\EA50";
494
504
  }
495
505
 
496
506
  [dir="rtl"] .icon-compose::before {
@@ -499,17 +509,17 @@
499
509
 
500
510
 
501
511
  .icon-copy-course::before {
502
- content: "\EA4F";
512
+ content: "\EA51";
503
513
  }
504
514
 
505
515
 
506
516
  .icon-copy::before {
507
- content: "\EA50";
517
+ content: "\EA52";
508
518
  }
509
519
 
510
520
 
511
521
  .icon-courses::before {
512
- content: "\EA51";
522
+ content: "\EA53";
513
523
  }
514
524
 
515
525
  [dir="rtl"] .icon-courses::before {
@@ -518,32 +528,32 @@
518
528
 
519
529
 
520
530
  .icon-crop::before {
521
- content: "\EA52";
531
+ content: "\EA54";
522
532
  }
523
533
 
524
534
 
525
535
  .icon-dashboard::before {
526
- content: "\EA53";
536
+ content: "\EA55";
527
537
  }
528
538
 
529
539
 
530
540
  .icon-deactivate-user::before {
531
- content: "\EA54";
541
+ content: "\EA56";
532
542
  }
533
543
 
534
544
 
535
545
  .icon-discussion-check::before {
536
- content: "\EA55";
546
+ content: "\EA57";
537
547
  }
538
548
 
539
549
 
540
550
  .icon-discussion-new::before {
541
- content: "\EA56";
551
+ content: "\EA58";
542
552
  }
543
553
 
544
554
 
545
555
  .icon-discussion-reply-2::before {
546
- content: "\EA57";
556
+ content: "\EA59";
547
557
  }
548
558
 
549
559
  [dir="rtl"] .icon-discussion-reply-2::before {
@@ -552,27 +562,27 @@
552
562
 
553
563
 
554
564
  .icon-discussion-reply-dark::before {
555
- content: "\EA58";
565
+ content: "\EA5A";
556
566
  }
557
567
 
558
568
 
559
569
  .icon-discussion-reply::before {
560
- content: "\EA59";
570
+ content: "\EA5B";
561
571
  }
562
572
 
563
573
 
564
574
  .icon-discussion-search::before {
565
- content: "\EA5A";
575
+ content: "\EA5C";
566
576
  }
567
577
 
568
578
 
569
579
  .icon-discussion-x::before {
570
- content: "\EA5B";
580
+ content: "\EA5D";
571
581
  }
572
582
 
573
583
 
574
584
  .icon-discussion::before {
575
- content: "\EA5C";
585
+ content: "\EA5E";
576
586
  }
577
587
 
578
588
  [dir="rtl"] .icon-discussion::before {
@@ -581,7 +591,7 @@
581
591
 
582
592
 
583
593
  .icon-document::before {
584
- content: "\EA5D";
594
+ content: "\EA5F";
585
595
  }
586
596
 
587
597
  [dir="rtl"] .icon-document::before {
@@ -590,27 +600,27 @@
590
600
 
591
601
 
592
602
  .icon-download::before {
593
- content: "\EA5E";
603
+ content: "\EA60";
594
604
  }
595
605
 
596
606
 
597
607
  .icon-drag-handle::before {
598
- content: "\EA5F";
608
+ content: "\EA61";
599
609
  }
600
610
 
601
611
 
602
612
  .icon-drop-down::before {
603
- content: "\EA60";
613
+ content: "\EA62";
604
614
  }
605
615
 
606
616
 
607
617
  .icon-duplicate::before {
608
- content: "\EA61";
618
+ content: "\EA63";
609
619
  }
610
620
 
611
621
 
612
622
  .icon-edit::before {
613
- content: "\EA62";
623
+ content: "\EA64";
614
624
  }
615
625
 
616
626
  [dir="rtl"] .icon-edit::before {
@@ -619,42 +629,47 @@
619
629
 
620
630
 
621
631
  .icon-educators::before {
622
- content: "\EA63";
632
+ content: "\EA65";
633
+ }
634
+
635
+
636
+ .icon-elevate-logo::before {
637
+ content: "\EA66";
623
638
  }
624
639
 
625
640
 
626
641
  .icon-email::before {
627
- content: "\EA64";
642
+ content: "\EA67";
628
643
  }
629
644
 
630
645
 
631
646
  .icon-empty::before {
632
- content: "\EA65";
647
+ content: "\EA68";
633
648
  }
634
649
 
635
650
 
636
651
  .icon-end::before {
637
- content: "\EA66";
652
+ content: "\EA69";
638
653
  }
639
654
 
640
655
 
641
656
  .icon-eportfolio::before {
642
- content: "\EA67";
657
+ content: "\EA6A";
643
658
  }
644
659
 
645
660
 
646
661
  .icon-equation::before {
647
- content: "\EA68";
662
+ content: "\EA6B";
648
663
  }
649
664
 
650
665
 
651
666
  .icon-equella::before {
652
- content: "\EA69";
667
+ content: "\EA6C";
653
668
  }
654
669
 
655
670
 
656
671
  .icon-essay::before {
657
- content: "\EA6A";
672
+ content: "\EA6D";
658
673
  }
659
674
 
660
675
  [dir="rtl"] .icon-essay::before {
@@ -663,17 +678,17 @@
663
678
 
664
679
 
665
680
  .icon-exit-full-screen::before {
666
- content: "\EA6B";
681
+ content: "\EA6E";
667
682
  }
668
683
 
669
684
 
670
685
  .icon-expand-items::before {
671
- content: "\EA6C";
686
+ content: "\EA6F";
672
687
  }
673
688
 
674
689
 
675
690
  .icon-expand-left::before {
676
- content: "\EA6D";
691
+ content: "\EA70";
677
692
  }
678
693
 
679
694
  [dir="rtl"] .icon-expand-left::before {
@@ -682,7 +697,7 @@
682
697
 
683
698
 
684
699
  .icon-expand-start::before {
685
- content: "\EA6E";
700
+ content: "\EA71";
686
701
  }
687
702
 
688
703
  [dir="rtl"] .icon-expand-start::before {
@@ -691,12 +706,12 @@
691
706
 
692
707
 
693
708
  .icon-expand::before {
694
- content: "\EA6F";
709
+ content: "\EA72";
695
710
  }
696
711
 
697
712
 
698
713
  .icon-export-content::before {
699
- content: "\EA70";
714
+ content: "\EA73";
700
715
  }
701
716
 
702
717
  [dir="rtl"] .icon-export-content::before {
@@ -705,7 +720,7 @@
705
720
 
706
721
 
707
722
  .icon-export::before {
708
- content: "\EA71";
723
+ content: "\EA74";
709
724
  }
710
725
 
711
726
  [dir="rtl"] .icon-export::before {
@@ -714,7 +729,7 @@
714
729
 
715
730
 
716
731
  .icon-external-link::before {
717
- content: "\EA72";
732
+ content: "\EA75";
718
733
  }
719
734
 
720
735
  [dir="rtl"] .icon-external-link::before {
@@ -723,27 +738,27 @@
723
738
 
724
739
 
725
740
  .icon-eye::before {
726
- content: "\EA73";
741
+ content: "\EA76";
727
742
  }
728
743
 
729
744
 
730
745
  .icon-facebook-boxed::before {
731
- content: "\EA74";
746
+ content: "\EA77";
732
747
  }
733
748
 
734
749
 
735
750
  .icon-facebook::before {
736
- content: "\EA75";
751
+ content: "\EA78";
737
752
  }
738
753
 
739
754
 
740
755
  .icon-fast-forward::before {
741
- content: "\EA76";
756
+ content: "\EA79";
742
757
  }
743
758
 
744
759
 
745
760
  .icon-feedback::before {
746
- content: "\EA77";
761
+ content: "\EA7A";
747
762
  }
748
763
 
749
764
  [dir="rtl"] .icon-feedback::before {
@@ -752,52 +767,52 @@
752
767
 
753
768
 
754
769
  .icon-file-locked::before {
755
- content: "\EA78";
770
+ content: "\EA7B";
756
771
  }
757
772
 
758
773
 
759
774
  .icon-files-copyright::before {
760
- content: "\EA79";
775
+ content: "\EA7C";
761
776
  }
762
777
 
763
778
 
764
779
  .icon-files-creative-commons::before {
765
- content: "\EA7A";
780
+ content: "\EA7D";
766
781
  }
767
782
 
768
783
 
769
784
  .icon-files-fair-use::before {
770
- content: "\EA7B";
785
+ content: "\EA7E";
771
786
  }
772
787
 
773
788
 
774
789
  .icon-files-obtained-permission::before {
775
- content: "\EA7C";
790
+ content: "\EA7F";
776
791
  }
777
792
 
778
793
 
779
794
  .icon-files-public-domain::before {
780
- content: "\EA7D";
795
+ content: "\EA80";
781
796
  }
782
797
 
783
798
 
784
799
  .icon-filmstrip::before {
785
- content: "\EA7E";
800
+ content: "\EA81";
786
801
  }
787
802
 
788
803
 
789
804
  .icon-filter::before {
790
- content: "\EA7F";
805
+ content: "\EA82";
791
806
  }
792
807
 
793
808
 
794
809
  .icon-flag::before {
795
- content: "\EA80";
810
+ content: "\EA83";
796
811
  }
797
812
 
798
813
 
799
814
  .icon-folder-locked::before {
800
- content: "\EA81";
815
+ content: "\EA84";
801
816
  }
802
817
 
803
818
  [dir="rtl"] .icon-folder-locked::before {
@@ -806,7 +821,7 @@
806
821
 
807
822
 
808
823
  .icon-folder::before {
809
- content: "\EA82";
824
+ content: "\EA85";
810
825
  }
811
826
 
812
827
  [dir="rtl"] .icon-folder::before {
@@ -815,7 +830,7 @@
815
830
 
816
831
 
817
832
  .icon-forward::before {
818
- content: "\EA83";
833
+ content: "\EA86";
819
834
  }
820
835
 
821
836
  [dir="rtl"] .icon-forward::before {
@@ -824,17 +839,17 @@
824
839
 
825
840
 
826
841
  .icon-full-screen::before {
827
- content: "\EA84";
842
+ content: "\EA87";
828
843
  }
829
844
 
830
845
 
831
846
  .icon-github::before {
832
- content: "\EA85";
847
+ content: "\EA88";
833
848
  }
834
849
 
835
850
 
836
851
  .icon-gradebook-export::before {
837
- content: "\EA86";
852
+ content: "\EA89";
838
853
  }
839
854
 
840
855
  [dir="rtl"] .icon-gradebook-export::before {
@@ -843,7 +858,7 @@
843
858
 
844
859
 
845
860
  .icon-gradebook-import::before {
846
- content: "\EA87";
861
+ content: "\EA8A";
847
862
  }
848
863
 
849
864
  [dir="rtl"] .icon-gradebook-import::before {
@@ -852,37 +867,37 @@
852
867
 
853
868
 
854
869
  .icon-gradebook::before {
855
- content: "\EA88";
870
+ content: "\EA8B";
856
871
  }
857
872
 
858
873
 
859
874
  .icon-group-dark-new::before {
860
- content: "\EA89";
875
+ content: "\EA8C";
861
876
  }
862
877
 
863
878
 
864
879
  .icon-group-new::before {
865
- content: "\EA8A";
880
+ content: "\EA8D";
866
881
  }
867
882
 
868
883
 
869
884
  .icon-group::before {
870
- content: "\EA8B";
885
+ content: "\EA8E";
871
886
  }
872
887
 
873
888
 
874
889
  .icon-hamburger::before {
875
- content: "\EA8C";
890
+ content: "\EA8F";
876
891
  }
877
892
 
878
893
 
879
894
  .icon-heart::before {
880
- content: "\EA8D";
895
+ content: "\EA90";
881
896
  }
882
897
 
883
898
 
884
899
  .icon-highlighter::before {
885
- content: "\EA8E";
900
+ content: "\EA91";
886
901
  }
887
902
 
888
903
  [dir="rtl"] .icon-highlighter::before {
@@ -891,27 +906,32 @@
891
906
 
892
907
 
893
908
  .icon-home::before {
894
- content: "\EA8F";
909
+ content: "\EA92";
895
910
  }
896
911
 
897
912
 
898
913
  .icon-hour-glass::before {
899
- content: "\EA90";
914
+ content: "\EA93";
900
915
  }
901
916
 
902
917
 
903
918
  .icon-image::before {
904
- content: "\EA91";
919
+ content: "\EA94";
905
920
  }
906
921
 
907
922
 
908
923
  .icon-immersive-reader::before {
909
- content: "\EA92";
924
+ content: "\EA95";
925
+ }
926
+
927
+
928
+ .icon-impact-logo::before {
929
+ content: "\EA96";
910
930
  }
911
931
 
912
932
 
913
933
  .icon-import-content::before {
914
- content: "\EA93";
934
+ content: "\EA97";
915
935
  }
916
936
 
917
937
  [dir="rtl"] .icon-import-content::before {
@@ -920,7 +940,7 @@
920
940
 
921
941
 
922
942
  .icon-import::before {
923
- content: "\EA94";
943
+ content: "\EA98";
924
944
  }
925
945
 
926
946
  [dir="rtl"] .icon-import::before {
@@ -929,17 +949,17 @@
929
949
 
930
950
 
931
951
  .icon-important-dates::before {
932
- content: "\EA95";
952
+ content: "\EA99";
933
953
  }
934
954
 
935
955
 
936
956
  .icon-inbox::before {
937
- content: "\EA96";
957
+ content: "\EA9A";
938
958
  }
939
959
 
940
960
 
941
961
  .icon-indent-2::before {
942
- content: "\EA97";
962
+ content: "\EA9B";
943
963
  }
944
964
 
945
965
  [dir="rtl"] .icon-indent-2::before {
@@ -948,7 +968,7 @@
948
968
 
949
969
 
950
970
  .icon-indent::before {
951
- content: "\EA98";
971
+ content: "\EA9C";
952
972
  }
953
973
 
954
974
  [dir="rtl"] .icon-indent::before {
@@ -957,147 +977,157 @@
957
977
 
958
978
 
959
979
  .icon-info-borderless::before {
960
- content: "\EA99";
980
+ content: "\EA9D";
961
981
  }
962
982
 
963
983
 
964
984
  .icon-info::before {
965
- content: "\EA9A";
985
+ content: "\EA9E";
966
986
  }
967
987
 
968
988
 
969
989
  .icon-instructure::before {
970
- content: "\EA9B";
990
+ content: "\EA9F";
971
991
  }
972
992
 
973
993
 
974
994
  .icon-integrations::before {
975
- content: "\EA9C";
995
+ content: "\EAA0";
976
996
  }
977
997
 
978
998
 
979
999
  .icon-invitation::before {
980
- content: "\EA9D";
1000
+ content: "\EAA1";
981
1001
  }
982
1002
 
983
1003
 
984
1004
  .icon-italic::before {
985
- content: "\EA9E";
1005
+ content: "\EAA2";
986
1006
  }
987
1007
 
988
1008
 
989
1009
  .icon-keyboard-shortcuts::before {
990
- content: "\EA9F";
1010
+ content: "\EAA3";
991
1011
  }
992
1012
 
993
1013
 
994
1014
  .icon-launch::before {
995
- content: "\EAA0";
1015
+ content: "\EAA4";
996
1016
  }
997
1017
 
998
1018
 
999
1019
  .icon-life-preserver::before {
1000
- content: "\EAA1";
1020
+ content: "\EAA5";
1001
1021
  }
1002
1022
 
1003
1023
 
1004
1024
  .icon-like::before {
1005
- content: "\EAA2";
1025
+ content: "\EAA6";
1006
1026
  }
1007
1027
 
1008
1028
 
1009
1029
  .icon-line-reader::before {
1010
- content: "\EAA3";
1030
+ content: "\EAA7";
1011
1031
  }
1012
1032
 
1013
1033
 
1014
1034
  .icon-link::before {
1015
- content: "\EAA4";
1035
+ content: "\EAA8";
1016
1036
  }
1017
1037
 
1018
1038
 
1019
1039
  .icon-linkedin::before {
1020
- content: "\EAA5";
1040
+ content: "\EAA9";
1021
1041
  }
1022
1042
 
1023
1043
 
1024
1044
  .icon-lock::before {
1025
- content: "\EAA6";
1045
+ content: "\EAAA";
1026
1046
  }
1027
1047
 
1028
1048
 
1029
1049
  .icon-lti::before {
1030
- content: "\EAA7";
1050
+ content: "\EAAB";
1031
1051
  }
1032
1052
 
1033
1053
 
1034
1054
  .icon-mark-as-read::before {
1035
- content: "\EAA8";
1055
+ content: "\EAAC";
1036
1056
  }
1037
1057
 
1038
1058
 
1039
1059
  .icon-marker::before {
1040
- content: "\EAA9";
1060
+ content: "\EAAD";
1041
1061
  }
1042
1062
 
1043
1063
 
1044
1064
  .icon-masquerade::before {
1045
- content: "\EAAA";
1065
+ content: "\EAAE";
1066
+ }
1067
+
1068
+
1069
+ .icon-mastery-logo::before {
1070
+ content: "\EAAF";
1046
1071
  }
1047
1072
 
1048
1073
 
1049
1074
  .icon-mastery-paths::before {
1050
- content: "\EAAB";
1075
+ content: "\EAB0";
1051
1076
  }
1052
1077
 
1053
1078
 
1054
1079
  .icon-materials-required-light::before {
1055
- content: "\EAAC";
1080
+ content: "\EAB1";
1056
1081
  }
1057
1082
 
1058
1083
 
1059
1084
  .icon-materials-required::before {
1060
- content: "\EAAD";
1085
+ content: "\EAB2";
1061
1086
  }
1062
1087
 
1063
1088
 
1064
1089
  .icon-mature-light::before {
1065
- content: "\EAAE";
1090
+ content: "\EAB3";
1066
1091
  }
1067
1092
 
1068
1093
 
1069
1094
  .icon-mature::before {
1070
- content: "\EAAF";
1095
+ content: "\EAB4";
1071
1096
  }
1072
1097
 
1073
1098
 
1074
1099
  .icon-media::before {
1075
- content: "\EAB0";
1100
+ content: "\EAB5";
1076
1101
  }
1077
1102
 
1078
1103
 
1079
1104
  .icon-message::before {
1080
- content: "\EAB1";
1105
+ content: "\EAB6";
1081
1106
  }
1082
1107
 
1083
1108
 
1084
1109
  .icon-mic-off::before {
1085
- content: "\EAB2";
1110
+ content: "\EAB7";
1086
1111
  }
1087
1112
 
1088
1113
 
1089
1114
  .icon-mic::before {
1090
- content: "\EAB3";
1115
+ content: "\EAB8";
1116
+ }
1117
+
1118
+
1119
+ .icon-mini-arrow-double::before {
1120
+ content: "\EAB9";
1091
1121
  }
1092
1122
 
1093
1123
 
1094
1124
  .icon-mini-arrow-down::before {
1095
- content: "\EAB4";
1125
+ content: "\EABA";
1096
1126
  }
1097
1127
 
1098
1128
 
1099
1129
  .icon-mini-arrow-end::before {
1100
- content: "\EAB5";
1130
+ content: "\EABB";
1101
1131
  }
1102
1132
 
1103
1133
  [dir="rtl"] .icon-mini-arrow-end::before {
@@ -1106,7 +1136,7 @@
1106
1136
 
1107
1137
 
1108
1138
  .icon-mini-arrow-left::before {
1109
- content: "\EAB6";
1139
+ content: "\EABC";
1110
1140
  }
1111
1141
 
1112
1142
  [dir="rtl"] .icon-mini-arrow-left::before {
@@ -1115,7 +1145,7 @@
1115
1145
 
1116
1146
 
1117
1147
  .icon-mini-arrow-right::before {
1118
- content: "\EAB7";
1148
+ content: "\EABD";
1119
1149
  }
1120
1150
 
1121
1151
  [dir="rtl"] .icon-mini-arrow-right::before {
@@ -1124,7 +1154,7 @@
1124
1154
 
1125
1155
 
1126
1156
  .icon-mini-arrow-start::before {
1127
- content: "\EAB8";
1157
+ content: "\EABE";
1128
1158
  }
1129
1159
 
1130
1160
  [dir="rtl"] .icon-mini-arrow-start::before {
@@ -1133,37 +1163,37 @@
1133
1163
 
1134
1164
 
1135
1165
  .icon-mini-arrow-up::before {
1136
- content: "\EAB9";
1166
+ content: "\EABF";
1137
1167
  }
1138
1168
 
1139
1169
 
1140
1170
  .icon-minimize::before {
1141
- content: "\EABA";
1171
+ content: "\EAC0";
1142
1172
  }
1143
1173
 
1144
1174
 
1145
1175
  .icon-module::before {
1146
- content: "\EABB";
1176
+ content: "\EAC1";
1147
1177
  }
1148
1178
 
1149
1179
 
1150
1180
  .icon-more::before {
1151
- content: "\EABC";
1181
+ content: "\EAC2";
1152
1182
  }
1153
1183
 
1154
1184
 
1155
1185
  .icon-move-down-bottom::before {
1156
- content: "\EABD";
1186
+ content: "\EAC3";
1157
1187
  }
1158
1188
 
1159
1189
 
1160
1190
  .icon-move-down::before {
1161
- content: "\EABE";
1191
+ content: "\EAC4";
1162
1192
  }
1163
1193
 
1164
1194
 
1165
1195
  .icon-move-end::before {
1166
- content: "\EABF";
1196
+ content: "\EAC5";
1167
1197
  }
1168
1198
 
1169
1199
  [dir="rtl"] .icon-move-end::before {
@@ -1172,7 +1202,7 @@
1172
1202
 
1173
1203
 
1174
1204
  .icon-move-left::before {
1175
- content: "\EAC0";
1205
+ content: "\EAC6";
1176
1206
  }
1177
1207
 
1178
1208
  [dir="rtl"] .icon-move-left::before {
@@ -1181,7 +1211,7 @@
1181
1211
 
1182
1212
 
1183
1213
  .icon-move-right::before {
1184
- content: "\EAC1";
1214
+ content: "\EAC7";
1185
1215
  }
1186
1216
 
1187
1217
  [dir="rtl"] .icon-move-right::before {
@@ -1190,7 +1220,7 @@
1190
1220
 
1191
1221
 
1192
1222
  .icon-move-start::before {
1193
- content: "\EAC2";
1223
+ content: "\EAC8";
1194
1224
  }
1195
1225
 
1196
1226
  [dir="rtl"] .icon-move-start::before {
@@ -1199,37 +1229,37 @@
1199
1229
 
1200
1230
 
1201
1231
  .icon-move-up-top::before {
1202
- content: "\EAC3";
1232
+ content: "\EAC9";
1203
1233
  }
1204
1234
 
1205
1235
 
1206
1236
  .icon-move-up::before {
1207
- content: "\EAC4";
1237
+ content: "\EACA";
1208
1238
  }
1209
1239
 
1210
1240
 
1211
1241
  .icon-ms-excel::before {
1212
- content: "\EAC5";
1242
+ content: "\EACB";
1213
1243
  }
1214
1244
 
1215
1245
 
1216
1246
  .icon-ms-ppt::before {
1217
- content: "\EAC6";
1247
+ content: "\EACC";
1218
1248
  }
1219
1249
 
1220
1250
 
1221
1251
  .icon-ms-word::before {
1222
- content: "\EAC7";
1252
+ content: "\EACD";
1223
1253
  }
1224
1254
 
1225
1255
 
1226
1256
  .icon-muted::before {
1227
- content: "\EAC8";
1257
+ content: "\EACE";
1228
1258
  }
1229
1259
 
1230
1260
 
1231
1261
  .icon-next-unread::before {
1232
- content: "\EAC9";
1262
+ content: "\EACF";
1233
1263
  }
1234
1264
 
1235
1265
  [dir="rtl"] .icon-next-unread::before {
@@ -1238,12 +1268,12 @@
1238
1268
 
1239
1269
 
1240
1270
  .icon-no::before {
1241
- content: "\EACA";
1271
+ content: "\EAD0";
1242
1272
  }
1243
1273
 
1244
1274
 
1245
1275
  .icon-not-graded::before {
1246
- content: "\EACB";
1276
+ content: "\EAD1";
1247
1277
  }
1248
1278
 
1249
1279
  [dir="rtl"] .icon-not-graded::before {
@@ -1252,17 +1282,17 @@
1252
1282
 
1253
1283
 
1254
1284
  .icon-note-dark::before {
1255
- content: "\EACC";
1285
+ content: "\EAD2";
1256
1286
  }
1257
1287
 
1258
1288
 
1259
1289
  .icon-note-light::before {
1260
- content: "\EACD";
1290
+ content: "\EAD3";
1261
1291
  }
1262
1292
 
1263
1293
 
1264
1294
  .icon-note::before {
1265
- content: "\EACE";
1295
+ content: "\EAD4";
1266
1296
  }
1267
1297
 
1268
1298
  [dir="rtl"] .icon-note::before {
@@ -1271,22 +1301,22 @@
1271
1301
 
1272
1302
 
1273
1303
  .icon-notepad::before {
1274
- content: "\EACF";
1304
+ content: "\EAD5";
1275
1305
  }
1276
1306
 
1277
1307
 
1278
1308
  .icon-numbered-list::before {
1279
- content: "\EAD0";
1309
+ content: "\EAD6";
1280
1310
  }
1281
1311
 
1282
1312
 
1283
1313
  .icon-off::before {
1284
- content: "\EAD1";
1314
+ content: "\EAD7";
1285
1315
  }
1286
1316
 
1287
1317
 
1288
1318
  .icon-open-folder::before {
1289
- content: "\EAD2";
1319
+ content: "\EAD8";
1290
1320
  }
1291
1321
 
1292
1322
  [dir="rtl"] .icon-open-folder::before {
@@ -1295,12 +1325,12 @@
1295
1325
 
1296
1326
 
1297
1327
  .icon-outcomes::before {
1298
- content: "\EAD3";
1328
+ content: "\EAD9";
1299
1329
  }
1300
1330
 
1301
1331
 
1302
1332
  .icon-outdent::before {
1303
- content: "\EAD4";
1333
+ content: "\EADA";
1304
1334
  }
1305
1335
 
1306
1336
  [dir="rtl"] .icon-outdent::before {
@@ -1309,7 +1339,7 @@
1309
1339
 
1310
1340
 
1311
1341
  .icon-outdent2::before {
1312
- content: "\EAD5";
1342
+ content: "\EADB";
1313
1343
  }
1314
1344
 
1315
1345
  [dir="rtl"] .icon-outdent2::before {
@@ -1318,137 +1348,137 @@
1318
1348
 
1319
1349
 
1320
1350
  .icon-oval-half::before {
1321
- content: "\EAD6";
1351
+ content: "\EADC";
1322
1352
  }
1323
1353
 
1324
1354
 
1325
1355
  .icon-page-down::before {
1326
- content: "\EAD7";
1356
+ content: "\EADD";
1327
1357
  }
1328
1358
 
1329
1359
 
1330
1360
  .icon-page-up::before {
1331
- content: "\EAD8";
1361
+ content: "\EADE";
1332
1362
  }
1333
1363
 
1334
1364
 
1335
1365
  .icon-paint::before {
1336
- content: "\EAD9";
1366
+ content: "\EADF";
1337
1367
  }
1338
1368
 
1339
1369
 
1340
1370
  .icon-paperclip::before {
1341
- content: "\EADA";
1371
+ content: "\EAE0";
1342
1372
  }
1343
1373
 
1344
1374
 
1345
1375
  .icon-partial::before {
1346
- content: "\EADB";
1376
+ content: "\EAE1";
1347
1377
  }
1348
1378
 
1349
1379
 
1350
1380
  .icon-pause::before {
1351
- content: "\EADC";
1381
+ content: "\EAE2";
1352
1382
  }
1353
1383
 
1354
1384
 
1355
1385
  .icon-pdf::before {
1356
- content: "\EADD";
1386
+ content: "\EAE3";
1357
1387
  }
1358
1388
 
1359
1389
 
1360
1390
  .icon-peer-graded::before {
1361
- content: "\EADE";
1391
+ content: "\EAE4";
1362
1392
  }
1363
1393
 
1364
1394
 
1365
1395
  .icon-peer-review::before {
1366
- content: "\EADF";
1396
+ content: "\EAE5";
1367
1397
  }
1368
1398
 
1369
1399
 
1370
1400
  .icon-permissions::before {
1371
- content: "\EAE0";
1401
+ content: "\EAE6";
1372
1402
  }
1373
1403
 
1374
1404
 
1375
1405
  .icon-pin::before {
1376
- content: "\EAE1";
1406
+ content: "\EAE7";
1377
1407
  }
1378
1408
 
1379
1409
 
1380
1410
  .icon-pinterest::before {
1381
- content: "\EAE2";
1411
+ content: "\EAE8";
1382
1412
  }
1383
1413
 
1384
1414
 
1385
1415
  .icon-play::before {
1386
- content: "\EAE3";
1416
+ content: "\EAE9";
1387
1417
  }
1388
1418
 
1389
1419
 
1390
1420
  .icon-plus::before {
1391
- content: "\EAE4";
1421
+ content: "\EAEA";
1392
1422
  }
1393
1423
 
1394
1424
 
1395
1425
  .icon-post-to-sis::before {
1396
- content: "\EAE5";
1426
+ content: "\EAEB";
1397
1427
  }
1398
1428
 
1399
1429
 
1400
1430
  .icon-prerequisite::before {
1401
- content: "\EAE6";
1431
+ content: "\EAEC";
1402
1432
  }
1403
1433
 
1404
1434
 
1405
1435
  .icon-printer::before {
1406
- content: "\EAE7";
1436
+ content: "\EAED";
1407
1437
  }
1408
1438
 
1409
1439
 
1410
1440
  .icon-progress::before {
1411
- content: "\EAE8";
1441
+ content: "\EAEE";
1412
1442
  }
1413
1443
 
1414
1444
 
1415
1445
  .icon-protractor::before {
1416
- content: "\EAE9";
1446
+ content: "\EAEF";
1417
1447
  }
1418
1448
 
1419
1449
 
1420
1450
  .icon-publish::before {
1421
- content: "\EAEA";
1451
+ content: "\EAF0";
1422
1452
  }
1423
1453
 
1424
1454
 
1425
1455
  .icon-question::before {
1426
- content: "\EAEB";
1456
+ content: "\EAF1";
1427
1457
  }
1428
1458
 
1429
1459
 
1430
1460
  .icon-quiz-instructions::before {
1431
- content: "\EAEC";
1461
+ content: "\EAF2";
1432
1462
  }
1433
1463
 
1434
1464
 
1435
1465
  .icon-quiz-stats-avg::before {
1436
- content: "\EAED";
1466
+ content: "\EAF3";
1437
1467
  }
1438
1468
 
1439
1469
 
1440
1470
  .icon-quiz-stats-cronbachs-alpha::before {
1441
- content: "\EAEE";
1471
+ content: "\EAF4";
1442
1472
  }
1443
1473
 
1444
1474
 
1445
1475
  .icon-quiz-stats-deviation::before {
1446
- content: "\EAEF";
1476
+ content: "\EAF5";
1447
1477
  }
1448
1478
 
1449
1479
 
1450
1480
  .icon-quiz-stats-high::before {
1451
- content: "\EAF0";
1481
+ content: "\EAF6";
1452
1482
  }
1453
1483
 
1454
1484
  [dir="rtl"] .icon-quiz-stats-high::before {
@@ -1457,7 +1487,7 @@
1457
1487
 
1458
1488
 
1459
1489
  .icon-quiz-stats-low::before {
1460
- content: "\EAF1";
1490
+ content: "\EAF7";
1461
1491
  }
1462
1492
 
1463
1493
  [dir="rtl"] .icon-quiz-stats-low::before {
@@ -1466,17 +1496,17 @@
1466
1496
 
1467
1497
 
1468
1498
  .icon-quiz-stats-time::before {
1469
- content: "\EAF2";
1499
+ content: "\EAF8";
1470
1500
  }
1471
1501
 
1472
1502
 
1473
1503
  .icon-quiz-title::before {
1474
- content: "\EAF3";
1504
+ content: "\EAF9";
1475
1505
  }
1476
1506
 
1477
1507
 
1478
1508
  .icon-quiz::before {
1479
- content: "\EAF4";
1509
+ content: "\EAFA";
1480
1510
  }
1481
1511
 
1482
1512
  [dir="rtl"] .icon-quiz::before {
@@ -1485,32 +1515,32 @@
1485
1515
 
1486
1516
 
1487
1517
  .icon-record::before {
1488
- content: "\EAF5";
1518
+ content: "\EAFB";
1489
1519
  }
1490
1520
 
1491
1521
 
1492
1522
  .icon-refresh::before {
1493
- content: "\EAF6";
1523
+ content: "\EAFC";
1494
1524
  }
1495
1525
 
1496
1526
 
1497
1527
  .icon-remove-bookmark::before {
1498
- content: "\EAF7";
1528
+ content: "\EAFD";
1499
1529
  }
1500
1530
 
1501
1531
 
1502
1532
  .icon-remove-from-collection::before {
1503
- content: "\EAF8";
1533
+ content: "\EAFE";
1504
1534
  }
1505
1535
 
1506
1536
 
1507
1537
  .icon-remove-link::before {
1508
- content: "\EAF9";
1538
+ content: "\EAFF";
1509
1539
  }
1510
1540
 
1511
1541
 
1512
1542
  .icon-replied::before {
1513
- content: "\EAFA";
1543
+ content: "\EB00";
1514
1544
  }
1515
1545
 
1516
1546
  [dir="rtl"] .icon-replied::before {
@@ -1519,7 +1549,7 @@
1519
1549
 
1520
1550
 
1521
1551
  .icon-reply-2::before {
1522
- content: "\EAFB";
1552
+ content: "\EB01";
1523
1553
  }
1524
1554
 
1525
1555
  [dir="rtl"] .icon-reply-2::before {
@@ -1528,7 +1558,7 @@
1528
1558
 
1529
1559
 
1530
1560
  .icon-reply-all-2::before {
1531
- content: "\EAFC";
1561
+ content: "\EB02";
1532
1562
  }
1533
1563
 
1534
1564
  [dir="rtl"] .icon-reply-all-2::before {
@@ -1537,7 +1567,7 @@
1537
1567
 
1538
1568
 
1539
1569
  .icon-reply::before {
1540
- content: "\EAFD";
1570
+ content: "\EB03";
1541
1571
  }
1542
1572
 
1543
1573
  [dir="rtl"] .icon-reply::before {
@@ -1546,42 +1576,42 @@
1546
1576
 
1547
1577
 
1548
1578
  .icon-reset::before {
1549
- content: "\EAFE";
1579
+ content: "\EB04";
1550
1580
  }
1551
1581
 
1552
1582
 
1553
1583
  .icon-review-screen::before {
1554
- content: "\EAFF";
1584
+ content: "\EB05";
1555
1585
  }
1556
1586
 
1557
1587
 
1558
1588
  .icon-rewind::before {
1559
- content: "\EB00";
1589
+ content: "\EB06";
1560
1590
  }
1561
1591
 
1562
1592
 
1563
1593
  .icon-rotate-left::before {
1564
- content: "\EB01";
1594
+ content: "\EB07";
1565
1595
  }
1566
1596
 
1567
1597
 
1568
1598
  .icon-rotate-right::before {
1569
- content: "\EB02";
1599
+ content: "\EB08";
1570
1600
  }
1571
1601
 
1572
1602
 
1573
1603
  .icon-rss-add::before {
1574
- content: "\EB03";
1604
+ content: "\EB09";
1575
1605
  }
1576
1606
 
1577
1607
 
1578
1608
  .icon-rss::before {
1579
- content: "\EB04";
1609
+ content: "\EB0A";
1580
1610
  }
1581
1611
 
1582
1612
 
1583
1613
  .icon-rubric-dark::before {
1584
- content: "\EB05";
1614
+ content: "\EB0B";
1585
1615
  }
1586
1616
 
1587
1617
  [dir="rtl"] .icon-rubric-dark::before {
@@ -1590,7 +1620,7 @@
1590
1620
 
1591
1621
 
1592
1622
  .icon-rubric::before {
1593
- content: "\EB06";
1623
+ content: "\EB0C";
1594
1624
  }
1595
1625
 
1596
1626
  [dir="rtl"] .icon-rubric::before {
@@ -1599,62 +1629,62 @@
1599
1629
 
1600
1630
 
1601
1631
  .icon-ruler::before {
1602
- content: "\EB07";
1632
+ content: "\EB0D";
1603
1633
  }
1604
1634
 
1605
1635
 
1606
1636
  .icon-save::before {
1607
- content: "\EB08";
1637
+ content: "\EB0E";
1608
1638
  }
1609
1639
 
1610
1640
 
1611
1641
  .icon-screen-capture::before {
1612
- content: "\EB09";
1642
+ content: "\EB0F";
1613
1643
  }
1614
1644
 
1615
1645
 
1616
1646
  .icon-search-address-book::before {
1617
- content: "\EB0A";
1647
+ content: "\EB10";
1618
1648
  }
1619
1649
 
1620
1650
 
1621
1651
  .icon-search::before {
1622
- content: "\EB0B";
1652
+ content: "\EB11";
1623
1653
  }
1624
1654
 
1625
1655
 
1626
1656
  .icon-settings-2::before {
1627
- content: "\EB0C";
1657
+ content: "\EB12";
1628
1658
  }
1629
1659
 
1630
1660
 
1631
1661
  .icon-settings::before {
1632
- content: "\EB0D";
1662
+ content: "\EB13";
1633
1663
  }
1634
1664
 
1635
1665
 
1636
1666
  .icon-shape-oval::before {
1637
- content: "\EB0E";
1667
+ content: "\EB14";
1638
1668
  }
1639
1669
 
1640
1670
 
1641
1671
  .icon-shape-polygon::before {
1642
- content: "\EB0F";
1672
+ content: "\EB15";
1643
1673
  }
1644
1674
 
1645
1675
 
1646
1676
  .icon-shape-rectangle::before {
1647
- content: "\EB10";
1677
+ content: "\EB16";
1648
1678
  }
1649
1679
 
1650
1680
 
1651
1681
  .icon-share::before {
1652
- content: "\EB11";
1682
+ content: "\EB17";
1653
1683
  }
1654
1684
 
1655
1685
 
1656
1686
  .icon-sis-imported::before {
1657
- content: "\EB12";
1687
+ content: "\EB18";
1658
1688
  }
1659
1689
 
1660
1690
  [dir="rtl"] .icon-sis-imported::before {
@@ -1663,82 +1693,82 @@
1663
1693
 
1664
1694
 
1665
1695
  .icon-sis-not-synced::before {
1666
- content: "\EB13";
1696
+ content: "\EB19";
1667
1697
  }
1668
1698
 
1669
1699
 
1670
1700
  .icon-sis-synced::before {
1671
- content: "\EB14";
1701
+ content: "\EB1A";
1672
1702
  }
1673
1703
 
1674
1704
 
1675
1705
  .icon-skype::before {
1676
- content: "\EB15";
1706
+ content: "\EB1B";
1677
1707
  }
1678
1708
 
1679
1709
 
1680
1710
  .icon-sort::before {
1681
- content: "\EB16";
1711
+ content: "\EB1C";
1682
1712
  }
1683
1713
 
1684
1714
 
1685
1715
  .icon-speed-grader::before {
1686
- content: "\EB17";
1716
+ content: "\EB1D";
1687
1717
  }
1688
1718
 
1689
1719
 
1690
1720
  .icon-standards::before {
1691
- content: "\EB18";
1721
+ content: "\EB1E";
1692
1722
  }
1693
1723
 
1694
1724
 
1695
1725
  .icon-star-light::before {
1696
- content: "\EB19";
1726
+ content: "\EB1F";
1697
1727
  }
1698
1728
 
1699
1729
 
1700
1730
  .icon-star::before {
1701
- content: "\EB1A";
1731
+ content: "\EB20";
1702
1732
  }
1703
1733
 
1704
1734
 
1705
1735
  .icon-stats::before {
1706
- content: "\EB1B";
1736
+ content: "\EB21";
1707
1737
  }
1708
1738
 
1709
1739
 
1710
1740
  .icon-stop::before {
1711
- content: "\EB1C";
1741
+ content: "\EB22";
1712
1742
  }
1713
1743
 
1714
1744
 
1715
1745
  .icon-strikethrough::before {
1716
- content: "\EB1D";
1746
+ content: "\EB23";
1717
1747
  }
1718
1748
 
1719
1749
 
1720
1750
  .icon-student-view::before {
1721
- content: "\EB1E";
1751
+ content: "\EB24";
1722
1752
  }
1723
1753
 
1724
1754
 
1725
1755
  .icon-studio::before {
1726
- content: "\EB1F";
1756
+ content: "\EB25";
1727
1757
  }
1728
1758
 
1729
1759
 
1730
1760
  .icon-subaccounts::before {
1731
- content: "\EB20";
1761
+ content: "\EB26";
1732
1762
  }
1733
1763
 
1734
1764
 
1735
1765
  .icon-subtitles::before {
1736
- content: "\EB21";
1766
+ content: "\EB27";
1737
1767
  }
1738
1768
 
1739
1769
 
1740
1770
  .icon-syllabus::before {
1741
- content: "\EB22";
1771
+ content: "\EB28";
1742
1772
  }
1743
1773
 
1744
1774
  [dir="rtl"] .icon-syllabus::before {
@@ -1747,112 +1777,112 @@
1747
1777
 
1748
1778
 
1749
1779
  .icon-table-cell-select-all::before {
1750
- content: "\EB23";
1780
+ content: "\EB29";
1751
1781
  }
1752
1782
 
1753
1783
 
1754
1784
  .icon-table-delete-column::before {
1755
- content: "\EB24";
1785
+ content: "\EB2A";
1756
1786
  }
1757
1787
 
1758
1788
 
1759
1789
  .icon-table-delete-row::before {
1760
- content: "\EB25";
1790
+ content: "\EB2B";
1761
1791
  }
1762
1792
 
1763
1793
 
1764
1794
  .icon-table-delete-table::before {
1765
- content: "\EB26";
1795
+ content: "\EB2C";
1766
1796
  }
1767
1797
 
1768
1798
 
1769
1799
  .icon-table-insert-column-after::before {
1770
- content: "\EB27";
1800
+ content: "\EB2D";
1771
1801
  }
1772
1802
 
1773
1803
 
1774
1804
  .icon-table-insert-column-before::before {
1775
- content: "\EB28";
1805
+ content: "\EB2E";
1776
1806
  }
1777
1807
 
1778
1808
 
1779
1809
  .icon-table-insert-row-above::before {
1780
- content: "\EB29";
1810
+ content: "\EB2F";
1781
1811
  }
1782
1812
 
1783
1813
 
1784
1814
  .icon-table-insert-row-after::before {
1785
- content: "\EB2A";
1815
+ content: "\EB30";
1786
1816
  }
1787
1817
 
1788
1818
 
1789
1819
  .icon-table-left-header::before {
1790
- content: "\EB2B";
1820
+ content: "\EB31";
1791
1821
  }
1792
1822
 
1793
1823
 
1794
1824
  .icon-table-merge-cells::before {
1795
- content: "\EB2C";
1825
+ content: "\EB32";
1796
1826
  }
1797
1827
 
1798
1828
 
1799
1829
  .icon-table-row-properties::before {
1800
- content: "\EB2D";
1830
+ content: "\EB33";
1801
1831
  }
1802
1832
 
1803
1833
 
1804
1834
  .icon-table-split-cells::before {
1805
- content: "\EB2E";
1835
+ content: "\EB34";
1806
1836
  }
1807
1837
 
1808
1838
 
1809
1839
  .icon-table-top-header::before {
1810
- content: "\EB2F";
1840
+ content: "\EB35";
1811
1841
  }
1812
1842
 
1813
1843
 
1814
1844
  .icon-table::before {
1815
- content: "\EB30";
1845
+ content: "\EB36";
1816
1846
  }
1817
1847
 
1818
1848
 
1819
1849
  .icon-tag::before {
1820
- content: "\EB31";
1850
+ content: "\EB37";
1821
1851
  }
1822
1852
 
1823
1853
 
1824
1854
  .icon-target::before {
1825
- content: "\EB32";
1855
+ content: "\EB38";
1826
1856
  }
1827
1857
 
1828
1858
 
1829
1859
  .icon-text-background-color::before {
1830
- content: "\EB33";
1860
+ content: "\EB39";
1831
1861
  }
1832
1862
 
1833
1863
 
1834
1864
  .icon-text-centered::before {
1835
- content: "\EB34";
1865
+ content: "\EB3A";
1836
1866
  }
1837
1867
 
1838
1868
 
1839
1869
  .icon-text-color::before {
1840
- content: "\EB35";
1870
+ content: "\EB3B";
1841
1871
  }
1842
1872
 
1843
1873
 
1844
1874
  .icon-text-direction-ltr::before {
1845
- content: "\EB36";
1875
+ content: "\EB3C";
1846
1876
  }
1847
1877
 
1848
1878
 
1849
1879
  .icon-text-direction-rtl::before {
1850
- content: "\EB37";
1880
+ content: "\EB3D";
1851
1881
  }
1852
1882
 
1853
1883
 
1854
1884
  .icon-text-end::before {
1855
- content: "\EB38";
1885
+ content: "\EB3E";
1856
1886
  }
1857
1887
 
1858
1888
  [dir="rtl"] .icon-text-end::before {
@@ -1861,7 +1891,7 @@
1861
1891
 
1862
1892
 
1863
1893
  .icon-text-left::before {
1864
- content: "\EB39";
1894
+ content: "\EB3F";
1865
1895
  }
1866
1896
 
1867
1897
  [dir="rtl"] .icon-text-left::before {
@@ -1870,7 +1900,7 @@
1870
1900
 
1871
1901
 
1872
1902
  .icon-text-right::before {
1873
- content: "\EB3A";
1903
+ content: "\EB40";
1874
1904
  }
1875
1905
 
1876
1906
  [dir="rtl"] .icon-text-right::before {
@@ -1879,7 +1909,7 @@
1879
1909
 
1880
1910
 
1881
1911
  .icon-text-start::before {
1882
- content: "\EB3B";
1912
+ content: "\EB41";
1883
1913
  }
1884
1914
 
1885
1915
  [dir="rtl"] .icon-text-start::before {
@@ -1888,22 +1918,22 @@
1888
1918
 
1889
1919
 
1890
1920
  .icon-text-subscript::before {
1891
- content: "\EB3C";
1921
+ content: "\EB42";
1892
1922
  }
1893
1923
 
1894
1924
 
1895
1925
  .icon-text-superscript::before {
1896
- content: "\EB3D";
1926
+ content: "\EB43";
1897
1927
  }
1898
1928
 
1899
1929
 
1900
1930
  .icon-text::before {
1901
- content: "\EB3E";
1931
+ content: "\EB44";
1902
1932
  }
1903
1933
 
1904
1934
 
1905
1935
  .icon-textarea::before {
1906
- content: "\EB3F";
1936
+ content: "\EB45";
1907
1937
  }
1908
1938
 
1909
1939
  [dir="rtl"] .icon-textarea::before {
@@ -1912,12 +1942,12 @@
1912
1942
 
1913
1943
 
1914
1944
  .icon-timer::before {
1915
- content: "\EB40";
1945
+ content: "\EB46";
1916
1946
  }
1917
1947
 
1918
1948
 
1919
1949
  .icon-toggle-end::before {
1920
- content: "\EB41";
1950
+ content: "\EB47";
1921
1951
  }
1922
1952
 
1923
1953
  [dir="rtl"] .icon-toggle-end::before {
@@ -1926,7 +1956,7 @@
1926
1956
 
1927
1957
 
1928
1958
  .icon-toggle-left::before {
1929
- content: "\EB42";
1959
+ content: "\EB48";
1930
1960
  }
1931
1961
 
1932
1962
  [dir="rtl"] .icon-toggle-left::before {
@@ -1935,7 +1965,7 @@
1935
1965
 
1936
1966
 
1937
1967
  .icon-toggle-right::before {
1938
- content: "\EB43";
1968
+ content: "\EB49";
1939
1969
  }
1940
1970
 
1941
1971
  [dir="rtl"] .icon-toggle-right::before {
@@ -1944,7 +1974,7 @@
1944
1974
 
1945
1975
 
1946
1976
  .icon-toggle-start::before {
1947
- content: "\EB44";
1977
+ content: "\EB4A";
1948
1978
  }
1949
1979
 
1950
1980
  [dir="rtl"] .icon-toggle-start::before {
@@ -1953,127 +1983,127 @@
1953
1983
 
1954
1984
 
1955
1985
  .icon-trash::before {
1956
- content: "\EB45";
1986
+ content: "\EB4B";
1957
1987
  }
1958
1988
 
1959
1989
 
1960
1990
  .icon-trouble::before {
1961
- content: "\EB46";
1991
+ content: "\EB4C";
1962
1992
  }
1963
1993
 
1964
1994
 
1965
1995
  .icon-twitter-boxed::before {
1966
- content: "\EB47";
1996
+ content: "\EB4D";
1967
1997
  }
1968
1998
 
1969
1999
 
1970
2000
  .icon-twitter::before {
1971
- content: "\EB48";
2001
+ content: "\EB4E";
1972
2002
  }
1973
2003
 
1974
2004
 
1975
2005
  .icon-unarchive::before {
1976
- content: "\EB49";
2006
+ content: "\EB4F";
1977
2007
  }
1978
2008
 
1979
2009
 
1980
2010
  .icon-underline::before {
1981
- content: "\EB4A";
2011
+ content: "\EB50";
1982
2012
  }
1983
2013
 
1984
2014
 
1985
2015
  .icon-unlock::before {
1986
- content: "\EB4B";
2016
+ content: "\EB51";
1987
2017
  }
1988
2018
 
1989
2019
 
1990
2020
  .icon-unmuted::before {
1991
- content: "\EB4C";
2021
+ content: "\EB52";
1992
2022
  }
1993
2023
 
1994
2024
 
1995
2025
  .icon-unpublish::before {
1996
- content: "\EB4D";
2026
+ content: "\EB53";
1997
2027
  }
1998
2028
 
1999
2029
 
2000
2030
  .icon-unpublished::before {
2001
- content: "\EB4E";
2031
+ content: "\EB54";
2002
2032
  }
2003
2033
 
2004
2034
 
2005
2035
  .icon-updown::before {
2006
- content: "\EB4F";
2036
+ content: "\EB55";
2007
2037
  }
2008
2038
 
2009
2039
 
2010
2040
  .icon-upload::before {
2011
- content: "\EB50";
2041
+ content: "\EB56";
2012
2042
  }
2013
2043
 
2014
2044
 
2015
2045
  .icon-user-add::before {
2016
- content: "\EB51";
2046
+ content: "\EB57";
2017
2047
  }
2018
2048
 
2019
2049
 
2020
2050
  .icon-user::before {
2021
- content: "\EB52";
2051
+ content: "\EB58";
2022
2052
  }
2023
2053
 
2024
2054
 
2025
2055
  .icon-video-camera-off::before {
2026
- content: "\EB53";
2056
+ content: "\EB59";
2027
2057
  }
2028
2058
 
2029
2059
 
2030
2060
  .icon-video-camera::before {
2031
- content: "\EB54";
2061
+ content: "\EB5A";
2032
2062
  }
2033
2063
 
2034
2064
 
2035
2065
  .icon-video::before {
2036
- content: "\EB55";
2066
+ content: "\EB5B";
2037
2067
  }
2038
2068
 
2039
2069
 
2040
2070
  .icon-warning-borderless::before {
2041
- content: "\EB56";
2071
+ content: "\EB5C";
2042
2072
  }
2043
2073
 
2044
2074
 
2045
2075
  .icon-warning::before {
2046
- content: "\EB57";
2076
+ content: "\EB5D";
2047
2077
  }
2048
2078
 
2049
2079
 
2050
2080
  .icon-windows::before {
2051
- content: "\EB58";
2081
+ content: "\EB5E";
2052
2082
  }
2053
2083
 
2054
2084
 
2055
2085
  .icon-wordpress::before {
2056
- content: "\EB59";
2086
+ content: "\EB5F";
2057
2087
  }
2058
2088
 
2059
2089
 
2060
2090
  .icon-x::before {
2061
- content: "\EB5A";
2091
+ content: "\EB60";
2062
2092
  }
2063
2093
 
2064
2094
 
2065
2095
  .icon-zipped::before {
2066
- content: "\EB5B";
2096
+ content: "\EB61";
2067
2097
  }
2068
2098
 
2069
2099
 
2070
2100
  .icon-zoom-in::before {
2071
- content: "\EB5C";
2101
+ content: "\EB62";
2072
2102
  }
2073
2103
 
2074
2104
 
2075
2105
  .icon-zoom-out::before {
2076
- content: "\EB5D";
2106
+ content: "\EB63";
2077
2107
  }
2078
2108
 
2079
2109