@itwin/itwinui-css 0.53.2 → 0.54.1
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/css/alert.css +61 -43
- package/css/all.css +427 -102
- package/css/anchor.css +68 -0
- package/css/breadcrumbs.css +48 -5
- package/css/color-picker.css +4 -0
- package/css/footer.css +48 -5
- package/css/global.css +47 -5
- package/css/skip-to-content.css +2 -1
- package/css/table.css +9 -9
- package/css/tag.css +47 -5
- package/css/toast-notification.css +94 -27
- package/css/tree.css +2 -2
- package/package.json +1 -1
- package/scss/alert/alert.scss +5 -25
- package/scss/anchor/anchor.scss +3 -0
- package/scss/anchor/classes.scss +7 -0
- package/scss/anchor/index.scss +3 -0
- package/scss/breadcrumbs/breadcrumbs.scss +2 -1
- package/scss/classes.scss +1 -0
- package/scss/color-picker/color-picker.scss +4 -0
- package/scss/footer/footer.scss +1 -0
- package/scss/index.scss +1 -0
- package/scss/skip-to-content/skip-to-content.scss +2 -1
- package/scss/style/anchor.scss +79 -0
- package/scss/style/global.scss +1 -0
- package/scss/style/mixins.scss +0 -17
- package/scss/table/table.scss +5 -5
- package/scss/tag/classes.scss +1 -0
- package/scss/toast-notification/categories.scss +3 -20
- package/scss/toast-notification/toast.scss +5 -6
- package/scss/tree/tree.scss +2 -2
package/css/all.css
CHANGED
|
@@ -584,27 +584,69 @@ html.iui-theme-dark-hc{
|
|
|
584
584
|
}
|
|
585
585
|
|
|
586
586
|
.iui-anchor{
|
|
587
|
-
|
|
588
|
-
text-decoration:none;
|
|
589
|
-
cursor:pointer;
|
|
587
|
+
--_iui-anchor-external-svg:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
|
|
590
588
|
color:#008ae0;
|
|
589
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
591
590
|
color:var(--iui-color-foreground-primary);
|
|
591
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
592
|
+
border-radius:3px;
|
|
593
|
+
cursor:pointer;
|
|
594
|
+
text-decoration:none;
|
|
592
595
|
}
|
|
593
596
|
.iui-anchor:focus-visible{
|
|
594
597
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
595
|
-
outline-offset:
|
|
598
|
+
outline-offset:1px;
|
|
596
599
|
}
|
|
597
600
|
@supports not selector(*:focus-visible){
|
|
598
601
|
.iui-anchor:focus{
|
|
599
602
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
600
|
-
outline-offset:
|
|
603
|
+
outline-offset:1px;
|
|
601
604
|
}
|
|
602
605
|
}
|
|
603
606
|
.iui-anchor:hover{
|
|
604
607
|
color:#006bad;
|
|
605
608
|
color:var(--iui-color-foreground-primary-overlay);
|
|
609
|
+
}
|
|
610
|
+
.iui-anchor-external::after{
|
|
611
|
+
content:"";
|
|
612
|
+
display:inline-block;
|
|
613
|
+
width:1.5ch;
|
|
614
|
+
height:1.5ch;
|
|
615
|
+
margin-left:0.5ch;
|
|
616
|
+
vertical-align:-0.1ch;
|
|
617
|
+
background-color:currentColor;
|
|
618
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
619
|
+
mask:var(--_iui-anchor-external-svg);
|
|
620
|
+
}
|
|
621
|
+
@media (forced-colors: active){
|
|
622
|
+
.iui-anchor-external::after{
|
|
623
|
+
background-color:LinkText;
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
.iui-anchor:hover{
|
|
606
627
|
text-decoration:underline;
|
|
607
628
|
}
|
|
629
|
+
@media (prefers-contrast: more){
|
|
630
|
+
.iui-anchor{
|
|
631
|
+
text-decoration:underline;
|
|
632
|
+
}
|
|
633
|
+
.iui-anchor:hover{
|
|
634
|
+
text-decoration:none;
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
.iui-theme-light .iui-anchor, .iui-theme-dark .iui-anchor{
|
|
638
|
+
text-decoration:none;
|
|
639
|
+
}
|
|
640
|
+
.iui-theme-light .iui-anchor:hover, .iui-theme-dark .iui-anchor:hover{
|
|
641
|
+
text-decoration:underline;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.iui-theme-light-hc .iui-anchor, .iui-theme-dark-hc .iui-anchor{
|
|
645
|
+
text-decoration:underline;
|
|
646
|
+
}
|
|
647
|
+
.iui-theme-light-hc .iui-anchor:hover, .iui-theme-dark-hc .iui-anchor:hover{
|
|
648
|
+
text-decoration:none;
|
|
649
|
+
}
|
|
608
650
|
|
|
609
651
|
[class*=iui-],
|
|
610
652
|
[class*=iui-] *{
|
|
@@ -691,31 +733,18 @@ html.iui-theme-dark-hc{
|
|
|
691
733
|
margin:11px 16px;
|
|
692
734
|
}
|
|
693
735
|
.iui-alert-link{
|
|
736
|
+
text-decoration:underline;
|
|
737
|
+
border-radius:3px;
|
|
694
738
|
cursor:pointer;
|
|
695
739
|
margin-left:8px;
|
|
696
|
-
text-decoration:underline;
|
|
697
740
|
-webkit-user-select:none;
|
|
698
741
|
-moz-user-select:none;
|
|
699
742
|
-ms-user-select:none;
|
|
700
743
|
user-select:none;
|
|
701
744
|
white-space:nowrap;
|
|
702
|
-
color:#008ae0;
|
|
703
|
-
color:var(--iui-color-foreground-primary);
|
|
704
|
-
}
|
|
705
|
-
.iui-alert-link:focus-visible{
|
|
706
|
-
outline:1px solid var(--iui-color-foreground-primary);
|
|
707
|
-
outline-offset:-1px;
|
|
708
|
-
}
|
|
709
|
-
@supports not selector(*:focus-visible){
|
|
710
|
-
.iui-alert-link:focus{
|
|
711
|
-
outline:1px solid var(--iui-color-foreground-primary);
|
|
712
|
-
outline-offset:-1px;
|
|
713
|
-
}
|
|
714
745
|
}
|
|
715
746
|
.iui-alert-link:hover{
|
|
716
747
|
text-decoration:none;
|
|
717
|
-
color:#006bad;
|
|
718
|
-
color:var(--iui-color-foreground-primary-overlay);
|
|
719
748
|
}
|
|
720
749
|
.iui-alert > .iui-button{
|
|
721
750
|
margin-left:auto;
|
|
@@ -748,24 +777,34 @@ html.iui-theme-dark-hc{
|
|
|
748
777
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
749
778
|
}
|
|
750
779
|
.iui-alert.iui-positive .iui-alert-link{
|
|
751
|
-
border-radius:3px;
|
|
752
780
|
color:#53a21a;
|
|
781
|
+
-webkit-tap-highlight-color:rgba(83, 162, 26, 0.2);
|
|
753
782
|
color:var(--iui-color-foreground-positive);
|
|
754
|
-
|
|
755
|
-
.iui-alert.iui-positive .iui-alert-link:hover{
|
|
756
|
-
color:#3d7613;
|
|
757
|
-
color:var(--iui-color-foreground-positive-overlay);
|
|
783
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
758
784
|
}
|
|
759
785
|
.iui-alert.iui-positive .iui-alert-link:focus-visible{
|
|
760
786
|
outline:1px solid var(--iui-color-foreground-positive);
|
|
761
|
-
outline-offset:
|
|
787
|
+
outline-offset:1px;
|
|
762
788
|
}
|
|
763
789
|
@supports not selector(*:focus-visible){
|
|
764
790
|
.iui-alert.iui-positive .iui-alert-link:focus{
|
|
765
791
|
outline:1px solid var(--iui-color-foreground-positive);
|
|
766
|
-
outline-offset:
|
|
792
|
+
outline-offset:1px;
|
|
767
793
|
}
|
|
768
794
|
}
|
|
795
|
+
.iui-alert.iui-positive .iui-alert-link::-moz-selection, .iui-alert.iui-positive .iui-alert-link *::-moz-selection{
|
|
796
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
797
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
798
|
+
}
|
|
799
|
+
.iui-alert.iui-positive .iui-alert-link::selection,
|
|
800
|
+
.iui-alert.iui-positive .iui-alert-link *::selection{
|
|
801
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
802
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
803
|
+
}
|
|
804
|
+
.iui-alert.iui-positive .iui-alert-link:hover{
|
|
805
|
+
color:#3d7613;
|
|
806
|
+
color:var(--iui-color-foreground-positive-overlay);
|
|
807
|
+
}
|
|
769
808
|
.iui-alert.iui-positive > .iui-button{
|
|
770
809
|
outline-color:var(--iui-color-foreground-positive);
|
|
771
810
|
}
|
|
@@ -789,24 +828,34 @@ html.iui-theme-dark-hc{
|
|
|
789
828
|
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
790
829
|
}
|
|
791
830
|
.iui-alert.iui-negative .iui-alert-link{
|
|
792
|
-
border-radius:3px;
|
|
793
831
|
color:#d10a0a;
|
|
832
|
+
-webkit-tap-highlight-color:rgba(209, 10, 10, 0.2);
|
|
794
833
|
color:var(--iui-color-foreground-negative);
|
|
795
|
-
|
|
796
|
-
.iui-alert.iui-negative .iui-alert-link:hover{
|
|
797
|
-
color:#a10808;
|
|
798
|
-
color:var(--iui-color-foreground-negative-overlay);
|
|
834
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
799
835
|
}
|
|
800
836
|
.iui-alert.iui-negative .iui-alert-link:focus-visible{
|
|
801
837
|
outline:1px solid var(--iui-color-foreground-negative);
|
|
802
|
-
outline-offset:
|
|
838
|
+
outline-offset:1px;
|
|
803
839
|
}
|
|
804
840
|
@supports not selector(*:focus-visible){
|
|
805
841
|
.iui-alert.iui-negative .iui-alert-link:focus{
|
|
806
842
|
outline:1px solid var(--iui-color-foreground-negative);
|
|
807
|
-
outline-offset:
|
|
843
|
+
outline-offset:1px;
|
|
808
844
|
}
|
|
809
845
|
}
|
|
846
|
+
.iui-alert.iui-negative .iui-alert-link::-moz-selection, .iui-alert.iui-negative .iui-alert-link *::-moz-selection{
|
|
847
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
848
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
849
|
+
}
|
|
850
|
+
.iui-alert.iui-negative .iui-alert-link::selection,
|
|
851
|
+
.iui-alert.iui-negative .iui-alert-link *::selection{
|
|
852
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
853
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
854
|
+
}
|
|
855
|
+
.iui-alert.iui-negative .iui-alert-link:hover{
|
|
856
|
+
color:#a10808;
|
|
857
|
+
color:var(--iui-color-foreground-negative-overlay);
|
|
858
|
+
}
|
|
810
859
|
.iui-alert.iui-negative > .iui-button{
|
|
811
860
|
outline-color:var(--iui-color-foreground-negative);
|
|
812
861
|
}
|
|
@@ -830,24 +879,34 @@ html.iui-theme-dark-hc{
|
|
|
830
879
|
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
831
880
|
}
|
|
832
881
|
.iui-alert.iui-warning .iui-alert-link{
|
|
833
|
-
border-radius:3px;
|
|
834
882
|
color:#f18d13;
|
|
883
|
+
-webkit-tap-highlight-color:rgba(241, 141, 19, 0.2);
|
|
835
884
|
color:var(--iui-color-foreground-warning);
|
|
836
|
-
|
|
837
|
-
.iui-alert.iui-warning .iui-alert-link:hover{
|
|
838
|
-
color:#c6720c;
|
|
839
|
-
color:var(--iui-color-foreground-warning-overlay);
|
|
885
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
840
886
|
}
|
|
841
887
|
.iui-alert.iui-warning .iui-alert-link:focus-visible{
|
|
842
888
|
outline:1px solid var(--iui-color-foreground-warning);
|
|
843
|
-
outline-offset:
|
|
889
|
+
outline-offset:1px;
|
|
844
890
|
}
|
|
845
891
|
@supports not selector(*:focus-visible){
|
|
846
892
|
.iui-alert.iui-warning .iui-alert-link:focus{
|
|
847
893
|
outline:1px solid var(--iui-color-foreground-warning);
|
|
848
|
-
outline-offset:
|
|
894
|
+
outline-offset:1px;
|
|
849
895
|
}
|
|
850
896
|
}
|
|
897
|
+
.iui-alert.iui-warning .iui-alert-link::-moz-selection, .iui-alert.iui-warning .iui-alert-link *::-moz-selection{
|
|
898
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
899
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
900
|
+
}
|
|
901
|
+
.iui-alert.iui-warning .iui-alert-link::selection,
|
|
902
|
+
.iui-alert.iui-warning .iui-alert-link *::selection{
|
|
903
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
904
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
905
|
+
}
|
|
906
|
+
.iui-alert.iui-warning .iui-alert-link:hover{
|
|
907
|
+
color:#c6720c;
|
|
908
|
+
color:var(--iui-color-foreground-warning-overlay);
|
|
909
|
+
}
|
|
851
910
|
.iui-alert.iui-warning > .iui-button{
|
|
852
911
|
outline-color:var(--iui-color-foreground-warning);
|
|
853
912
|
}
|
|
@@ -871,28 +930,94 @@ html.iui-theme-dark-hc{
|
|
|
871
930
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
872
931
|
}
|
|
873
932
|
.iui-alert.iui-informational .iui-alert-link{
|
|
874
|
-
border-radius:3px;
|
|
875
933
|
color:#008ae0;
|
|
934
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
876
935
|
color:var(--iui-color-foreground-primary);
|
|
877
|
-
|
|
878
|
-
.iui-alert.iui-informational .iui-alert-link:hover{
|
|
879
|
-
color:#006bad;
|
|
880
|
-
color:var(--iui-color-foreground-primary-overlay);
|
|
936
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
881
937
|
}
|
|
882
938
|
.iui-alert.iui-informational .iui-alert-link:focus-visible{
|
|
883
939
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
884
|
-
outline-offset:
|
|
940
|
+
outline-offset:1px;
|
|
885
941
|
}
|
|
886
942
|
@supports not selector(*:focus-visible){
|
|
887
943
|
.iui-alert.iui-informational .iui-alert-link:focus{
|
|
888
944
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
889
|
-
outline-offset:
|
|
945
|
+
outline-offset:1px;
|
|
890
946
|
}
|
|
891
947
|
}
|
|
948
|
+
.iui-alert.iui-informational .iui-alert-link:hover{
|
|
949
|
+
color:#006bad;
|
|
950
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
951
|
+
}
|
|
892
952
|
.iui-alert.iui-informational > .iui-button{
|
|
893
953
|
outline-color:var(--iui-color-foreground-primary);
|
|
894
954
|
}
|
|
895
955
|
|
|
956
|
+
.iui-anchor{
|
|
957
|
+
--_iui-anchor-external-svg:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
|
|
958
|
+
color:#008ae0;
|
|
959
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
960
|
+
color:var(--iui-color-foreground-primary);
|
|
961
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
962
|
+
border-radius:3px;
|
|
963
|
+
cursor:pointer;
|
|
964
|
+
text-decoration:none;
|
|
965
|
+
}
|
|
966
|
+
.iui-anchor:focus-visible{
|
|
967
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
968
|
+
outline-offset:1px;
|
|
969
|
+
}
|
|
970
|
+
@supports not selector(*:focus-visible){
|
|
971
|
+
.iui-anchor:focus{
|
|
972
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
973
|
+
outline-offset:1px;
|
|
974
|
+
}
|
|
975
|
+
}
|
|
976
|
+
.iui-anchor:hover{
|
|
977
|
+
color:#006bad;
|
|
978
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
979
|
+
}
|
|
980
|
+
.iui-anchor-external::after{
|
|
981
|
+
content:"";
|
|
982
|
+
display:inline-block;
|
|
983
|
+
width:1.5ch;
|
|
984
|
+
height:1.5ch;
|
|
985
|
+
margin-left:0.5ch;
|
|
986
|
+
vertical-align:-0.1ch;
|
|
987
|
+
background-color:currentColor;
|
|
988
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
989
|
+
mask:var(--_iui-anchor-external-svg);
|
|
990
|
+
}
|
|
991
|
+
@media (forced-colors: active){
|
|
992
|
+
.iui-anchor-external::after{
|
|
993
|
+
background-color:LinkText;
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
.iui-anchor:hover{
|
|
997
|
+
text-decoration:underline;
|
|
998
|
+
}
|
|
999
|
+
@media (prefers-contrast: more){
|
|
1000
|
+
.iui-anchor{
|
|
1001
|
+
text-decoration:underline;
|
|
1002
|
+
}
|
|
1003
|
+
.iui-anchor:hover{
|
|
1004
|
+
text-decoration:none;
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
.iui-theme-light .iui-anchor, .iui-theme-dark .iui-anchor{
|
|
1008
|
+
text-decoration:none;
|
|
1009
|
+
}
|
|
1010
|
+
.iui-theme-light .iui-anchor:hover, .iui-theme-dark .iui-anchor:hover{
|
|
1011
|
+
text-decoration:underline;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
.iui-theme-light-hc .iui-anchor, .iui-theme-dark-hc .iui-anchor{
|
|
1015
|
+
text-decoration:underline;
|
|
1016
|
+
}
|
|
1017
|
+
.iui-theme-light-hc .iui-anchor:hover, .iui-theme-dark-hc .iui-anchor:hover{
|
|
1018
|
+
text-decoration:none;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
896
1021
|
.iui-badge{
|
|
897
1022
|
--iui-badge-background-color:#c7ccd1;
|
|
898
1023
|
--_iui-badge-text-color:rgba(0, 0, 0, 0.6);
|
|
@@ -976,27 +1101,70 @@ html.iui-theme-dark-hc{
|
|
|
976
1101
|
margin:0 12px;
|
|
977
1102
|
}
|
|
978
1103
|
.iui-breadcrumbs-item a{
|
|
979
|
-
|
|
980
|
-
text-decoration:none;
|
|
981
|
-
cursor:pointer;
|
|
1104
|
+
--_iui-anchor-external-svg:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
|
|
982
1105
|
color:#008ae0;
|
|
1106
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
983
1107
|
color:var(--iui-color-foreground-primary);
|
|
1108
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1109
|
+
border-radius:3px;
|
|
1110
|
+
cursor:pointer;
|
|
1111
|
+
text-decoration:none;
|
|
984
1112
|
}
|
|
985
1113
|
.iui-breadcrumbs-item a:focus-visible{
|
|
986
1114
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
987
|
-
outline-offset:
|
|
1115
|
+
outline-offset:1px;
|
|
988
1116
|
}
|
|
989
1117
|
@supports not selector(*:focus-visible){
|
|
990
1118
|
.iui-breadcrumbs-item a:focus{
|
|
991
1119
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
992
|
-
outline-offset:
|
|
1120
|
+
outline-offset:1px;
|
|
993
1121
|
}
|
|
994
1122
|
}
|
|
995
1123
|
.iui-breadcrumbs-item a:hover{
|
|
996
1124
|
color:#006bad;
|
|
997
1125
|
color:var(--iui-color-foreground-primary-overlay);
|
|
1126
|
+
}
|
|
1127
|
+
.iui-breadcrumbs-item a-external::after{
|
|
1128
|
+
content:"";
|
|
1129
|
+
display:inline-block;
|
|
1130
|
+
width:1.5ch;
|
|
1131
|
+
height:1.5ch;
|
|
1132
|
+
margin-left:0.5ch;
|
|
1133
|
+
vertical-align:-0.1ch;
|
|
1134
|
+
background-color:currentColor;
|
|
1135
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
1136
|
+
mask:var(--_iui-anchor-external-svg);
|
|
1137
|
+
}
|
|
1138
|
+
@media (forced-colors: active){
|
|
1139
|
+
.iui-breadcrumbs-item a-external::after{
|
|
1140
|
+
background-color:LinkText;
|
|
1141
|
+
}
|
|
1142
|
+
}
|
|
1143
|
+
.iui-breadcrumbs-item a:hover{
|
|
1144
|
+
text-decoration:underline;
|
|
1145
|
+
}
|
|
1146
|
+
@media (prefers-contrast: more){
|
|
1147
|
+
.iui-breadcrumbs-item a{
|
|
1148
|
+
text-decoration:underline;
|
|
1149
|
+
}
|
|
1150
|
+
.iui-breadcrumbs-item a:hover{
|
|
1151
|
+
text-decoration:none;
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
.iui-theme-light .iui-breadcrumbs-item a, .iui-theme-dark .iui-breadcrumbs-item a{
|
|
1155
|
+
text-decoration:none;
|
|
1156
|
+
}
|
|
1157
|
+
.iui-theme-light .iui-breadcrumbs-item a:hover, .iui-theme-dark .iui-breadcrumbs-item a:hover{
|
|
998
1158
|
text-decoration:underline;
|
|
999
1159
|
}
|
|
1160
|
+
|
|
1161
|
+
.iui-theme-light-hc .iui-breadcrumbs-item a, .iui-theme-dark-hc .iui-breadcrumbs-item a{
|
|
1162
|
+
text-decoration:underline;
|
|
1163
|
+
}
|
|
1164
|
+
.iui-theme-light-hc .iui-breadcrumbs-item a:hover, .iui-theme-dark-hc .iui-breadcrumbs-item a:hover{
|
|
1165
|
+
text-decoration:none;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1000
1168
|
.iui-breadcrumbs-item .iui-button{
|
|
1001
1169
|
border-color:transparent;
|
|
1002
1170
|
background-color:transparent;
|
|
@@ -1915,6 +2083,7 @@ html.iui-theme-dark-hc{
|
|
|
1915
2083
|
margin-right:4px;
|
|
1916
2084
|
position:relative;
|
|
1917
2085
|
background-color:var(--iui-color-swatch-background);
|
|
2086
|
+
forced-color-adjust:none;
|
|
1918
2087
|
background-position:0 0, 8px 8px;
|
|
1919
2088
|
background-size:16px 16px;
|
|
1920
2089
|
background-image:repeating-linear-gradient(45deg, #edeff2 25%, transparent 25%, transparent 75%, #edeff2 75%, #edeff2), repeating-linear-gradient(45deg, #edeff2 25%, #c7ccd1 25%, #c7ccd1 75%, #edeff2 75%, #edeff2);
|
|
@@ -1977,6 +2146,7 @@ html.iui-theme-dark-hc{
|
|
|
1977
2146
|
cursor:crosshair;
|
|
1978
2147
|
width:100%;
|
|
1979
2148
|
height:209px;
|
|
2149
|
+
forced-color-adjust:none;
|
|
1980
2150
|
background-image:linear-gradient(0deg, black, transparent), linear-gradient(90deg, white, var(--iui-color-field-hue));
|
|
1981
2151
|
}
|
|
1982
2152
|
.iui-color-field:not(:last-child){
|
|
@@ -1985,6 +2155,7 @@ html.iui-theme-dark-hc{
|
|
|
1985
2155
|
|
|
1986
2156
|
.iui-hue-slider .iui-slider-rail{
|
|
1987
2157
|
height:8px;
|
|
2158
|
+
forced-color-adjust:none;
|
|
1988
2159
|
background:linear-gradient(to right, #F00 0%, #FF0 17%, lime 33%, aqua 50%, #03F 67%, #C3F 83%, #F00 100%);
|
|
1989
2160
|
background:linear-gradient(to right, #F00 0%, #FF0 17%, lime 33%, aqua 50%, #03F 67%, #C3F 83%, #F00 100%);
|
|
1990
2161
|
}
|
|
@@ -1994,6 +2165,7 @@ html.iui-theme-dark-hc{
|
|
|
1994
2165
|
|
|
1995
2166
|
.iui-opacity-slider .iui-slider-rail{
|
|
1996
2167
|
height:8px;
|
|
2168
|
+
forced-color-adjust:none;
|
|
1997
2169
|
background-position:0 0, 4px 4px;
|
|
1998
2170
|
background-size:8px 8px;
|
|
1999
2171
|
background-image:repeating-linear-gradient(45deg, #edeff2 25%, transparent 25%, transparent 75%, #edeff2 75%, #edeff2), repeating-linear-gradient(45deg, #edeff2 25%, #c7ccd1 25%, #c7ccd1 75%, #edeff2 75%, #edeff2);
|
|
@@ -2922,27 +3094,70 @@ html.iui-theme-dark-hc{
|
|
|
2922
3094
|
background-color:var(--iui-text-color-muted);
|
|
2923
3095
|
}
|
|
2924
3096
|
.iui-legal-footer > ul > li > a{
|
|
2925
|
-
|
|
2926
|
-
text-decoration:none;
|
|
2927
|
-
cursor:pointer;
|
|
3097
|
+
--_iui-anchor-external-svg:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
|
|
2928
3098
|
color:#008ae0;
|
|
3099
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
2929
3100
|
color:var(--iui-color-foreground-primary);
|
|
3101
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
3102
|
+
border-radius:3px;
|
|
3103
|
+
cursor:pointer;
|
|
3104
|
+
text-decoration:none;
|
|
2930
3105
|
}
|
|
2931
3106
|
.iui-legal-footer > ul > li > a:focus-visible{
|
|
2932
3107
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
2933
|
-
outline-offset:
|
|
3108
|
+
outline-offset:1px;
|
|
2934
3109
|
}
|
|
2935
3110
|
@supports not selector(*:focus-visible){
|
|
2936
3111
|
.iui-legal-footer > ul > li > a:focus{
|
|
2937
3112
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
2938
|
-
outline-offset:
|
|
3113
|
+
outline-offset:1px;
|
|
2939
3114
|
}
|
|
2940
3115
|
}
|
|
2941
3116
|
.iui-legal-footer > ul > li > a:hover{
|
|
2942
3117
|
color:#006bad;
|
|
2943
3118
|
color:var(--iui-color-foreground-primary-overlay);
|
|
3119
|
+
}
|
|
3120
|
+
.iui-legal-footer > ul > li > a-external::after{
|
|
3121
|
+
content:"";
|
|
3122
|
+
display:inline-block;
|
|
3123
|
+
width:1.5ch;
|
|
3124
|
+
height:1.5ch;
|
|
3125
|
+
margin-left:0.5ch;
|
|
3126
|
+
vertical-align:-0.1ch;
|
|
3127
|
+
background-color:currentColor;
|
|
3128
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
3129
|
+
mask:var(--_iui-anchor-external-svg);
|
|
3130
|
+
}
|
|
3131
|
+
@media (forced-colors: active){
|
|
3132
|
+
.iui-legal-footer > ul > li > a-external::after{
|
|
3133
|
+
background-color:LinkText;
|
|
3134
|
+
}
|
|
3135
|
+
}
|
|
3136
|
+
.iui-legal-footer > ul > li > a:hover{
|
|
2944
3137
|
text-decoration:underline;
|
|
2945
3138
|
}
|
|
3139
|
+
@media (prefers-contrast: more){
|
|
3140
|
+
.iui-legal-footer > ul > li > a{
|
|
3141
|
+
text-decoration:underline;
|
|
3142
|
+
}
|
|
3143
|
+
.iui-legal-footer > ul > li > a:hover{
|
|
3144
|
+
text-decoration:none;
|
|
3145
|
+
}
|
|
3146
|
+
}
|
|
3147
|
+
.iui-theme-light .iui-legal-footer > ul > li > a, .iui-theme-dark .iui-legal-footer > ul > li > a{
|
|
3148
|
+
text-decoration:none;
|
|
3149
|
+
}
|
|
3150
|
+
.iui-theme-light .iui-legal-footer > ul > li > a:hover, .iui-theme-dark .iui-legal-footer > ul > li > a:hover{
|
|
3151
|
+
text-decoration:underline;
|
|
3152
|
+
}
|
|
3153
|
+
|
|
3154
|
+
.iui-theme-light-hc .iui-legal-footer > ul > li > a, .iui-theme-dark-hc .iui-legal-footer > ul > li > a{
|
|
3155
|
+
text-decoration:underline;
|
|
3156
|
+
}
|
|
3157
|
+
.iui-theme-light-hc .iui-legal-footer > ul > li > a:hover, .iui-theme-dark-hc .iui-legal-footer > ul > li > a:hover{
|
|
3158
|
+
text-decoration:none;
|
|
3159
|
+
}
|
|
3160
|
+
|
|
2946
3161
|
.iui-legal-footer > ul > li > a, .iui-legal-footer > ul > li > a:hover{
|
|
2947
3162
|
color:rgba(0, 0, 0, 0.4);
|
|
2948
3163
|
color:var(--iui-text-color-muted);
|
|
@@ -6861,10 +7076,10 @@ label.iui-input-label.iui-disabled{
|
|
|
6861
7076
|
background-color:rgba(0, 138, 224, 0.1);
|
|
6862
7077
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
6863
7078
|
}
|
|
6864
|
-
.iui-table-body .iui-row:hover:not(.iui-disabled) > .iui-slot > .iui-more-options{
|
|
7079
|
+
.iui-table-body .iui-row:hover:not(.iui-disabled) > .iui-slot:not(.iui-disabled) > .iui-more-options{
|
|
6865
7080
|
visibility:visible;
|
|
6866
7081
|
}
|
|
6867
|
-
.iui-table-body .iui-row:
|
|
7082
|
+
.iui-table-body .iui-row:focus-within > .iui-slot:not(.iui-disabled) > .iui-more-options{
|
|
6868
7083
|
visibility:visible;
|
|
6869
7084
|
}
|
|
6870
7085
|
@media (prefers-reduced-motion: no-preference){
|
|
@@ -6959,20 +7174,20 @@ label.iui-input-label.iui-disabled{
|
|
|
6959
7174
|
color:#53a21a;
|
|
6960
7175
|
color:var(--iui-color-foreground-positive);
|
|
6961
7176
|
}
|
|
6962
|
-
.iui-table-body .iui-row.iui-disabled, .iui-table-body .iui-row.iui-
|
|
7177
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled, .iui-table-body .iui-row.iui-expanded-content.iui-disabled{
|
|
6963
7178
|
font-style:italic;
|
|
6964
7179
|
cursor:not-allowed;
|
|
6965
7180
|
color:rgba(0, 0, 0, 0.4);
|
|
6966
7181
|
color:var(--iui-text-color-muted);
|
|
6967
7182
|
}
|
|
6968
|
-
.iui-table-body .iui-row.iui-disabled
|
|
7183
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled.iui-slot:hover > .iui-more-options, .iui-table-body .iui-row.iui-expanded-content.iui-disabled.iui-slot:hover > .iui-more-options{
|
|
6969
7184
|
visibility:hidden;
|
|
6970
7185
|
}
|
|
6971
|
-
.iui-table-body .iui-row.iui-disabled img,
|
|
6972
|
-
.iui-table-body .iui-row.iui-disabled svg:not(.iui-radial),
|
|
6973
|
-
.iui-table-body .iui-row.iui-disabled .iui-user-icon, .iui-table-body .iui-row.iui-
|
|
6974
|
-
.iui-table-body .iui-row.iui-
|
|
6975
|
-
.iui-table-body .iui-row.iui-
|
|
7186
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled img,
|
|
7187
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled svg:not(.iui-radial),
|
|
7188
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled .iui-user-icon, .iui-table-body .iui-row.iui-expanded-content.iui-disabled img,
|
|
7189
|
+
.iui-table-body .iui-row.iui-expanded-content.iui-disabled svg:not(.iui-radial),
|
|
7190
|
+
.iui-table-body .iui-row.iui-expanded-content.iui-disabled .iui-user-icon{
|
|
6976
7191
|
filter:grayscale(100%);
|
|
6977
7192
|
}
|
|
6978
7193
|
.iui-table-body .iui-row.iui-positive,
|
|
@@ -7758,28 +7973,70 @@ label.iui-input-label.iui-disabled{
|
|
|
7758
7973
|
}
|
|
7759
7974
|
|
|
7760
7975
|
a.iui-tag{
|
|
7761
|
-
|
|
7762
|
-
text-decoration:none;
|
|
7763
|
-
cursor:pointer;
|
|
7976
|
+
--_iui-anchor-external-svg:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
|
|
7764
7977
|
color:#008ae0;
|
|
7978
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
7765
7979
|
color:var(--iui-color-foreground-primary);
|
|
7980
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
7981
|
+
border-radius:3px;
|
|
7982
|
+
cursor:pointer;
|
|
7983
|
+
text-decoration:none;
|
|
7766
7984
|
}
|
|
7767
7985
|
a.iui-tag:focus-visible{
|
|
7768
7986
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
7769
|
-
outline-offset:
|
|
7987
|
+
outline-offset:1px;
|
|
7770
7988
|
}
|
|
7771
7989
|
@supports not selector(*:focus-visible){
|
|
7772
7990
|
a.iui-tag:focus{
|
|
7773
7991
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
7774
|
-
outline-offset:
|
|
7992
|
+
outline-offset:1px;
|
|
7775
7993
|
}
|
|
7776
7994
|
}
|
|
7777
7995
|
a.iui-tag:hover{
|
|
7778
7996
|
color:#006bad;
|
|
7779
7997
|
color:var(--iui-color-foreground-primary-overlay);
|
|
7998
|
+
}
|
|
7999
|
+
a.iui-tag-external::after{
|
|
8000
|
+
content:"";
|
|
8001
|
+
display:inline-block;
|
|
8002
|
+
width:1.5ch;
|
|
8003
|
+
height:1.5ch;
|
|
8004
|
+
margin-left:0.5ch;
|
|
8005
|
+
vertical-align:-0.1ch;
|
|
8006
|
+
background-color:currentColor;
|
|
8007
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
8008
|
+
mask:var(--_iui-anchor-external-svg);
|
|
8009
|
+
}
|
|
8010
|
+
@media (forced-colors: active){
|
|
8011
|
+
a.iui-tag-external::after{
|
|
8012
|
+
background-color:LinkText;
|
|
8013
|
+
}
|
|
8014
|
+
}
|
|
8015
|
+
a.iui-tag:hover{
|
|
8016
|
+
text-decoration:underline;
|
|
8017
|
+
}
|
|
8018
|
+
@media (prefers-contrast: more){
|
|
8019
|
+
a.iui-tag{
|
|
8020
|
+
text-decoration:underline;
|
|
8021
|
+
}
|
|
8022
|
+
a.iui-tag:hover{
|
|
8023
|
+
text-decoration:none;
|
|
8024
|
+
}
|
|
8025
|
+
}
|
|
8026
|
+
.iui-theme-light a.iui-tag, .iui-theme-dark a.iui-tag{
|
|
8027
|
+
text-decoration:none;
|
|
8028
|
+
}
|
|
8029
|
+
.iui-theme-light a.iui-tag:hover, .iui-theme-dark a.iui-tag:hover{
|
|
7780
8030
|
text-decoration:underline;
|
|
7781
8031
|
}
|
|
7782
8032
|
|
|
8033
|
+
.iui-theme-light-hc a.iui-tag, .iui-theme-dark-hc a.iui-tag{
|
|
8034
|
+
text-decoration:underline;
|
|
8035
|
+
}
|
|
8036
|
+
.iui-theme-light-hc a.iui-tag:hover, .iui-theme-dark-hc a.iui-tag:hover{
|
|
8037
|
+
text-decoration:none;
|
|
8038
|
+
}
|
|
8039
|
+
|
|
7783
8040
|
.iui-tag-container{
|
|
7784
8041
|
color:rgba(0, 0, 0, 0.4);
|
|
7785
8042
|
color:var(--iui-text-color-muted);
|
|
@@ -8667,17 +8924,19 @@ div.iui-tile-thumbnail-picture{
|
|
|
8667
8924
|
color:rgba(0, 0, 0, 0.8);
|
|
8668
8925
|
color:var(--iui-text-color);
|
|
8669
8926
|
}
|
|
8670
|
-
.iui-toast
|
|
8927
|
+
.iui-toast-anchor{
|
|
8928
|
+
text-decoration:underline;
|
|
8929
|
+
border-radius:3px;
|
|
8930
|
+
cursor:pointer;
|
|
8671
8931
|
font-size:12px;
|
|
8672
8932
|
margin-right:16px;
|
|
8673
8933
|
-webkit-user-select:none;
|
|
8674
8934
|
-moz-user-select:none;
|
|
8675
8935
|
-ms-user-select:none;
|
|
8676
8936
|
user-select:none;
|
|
8677
|
-
text-decoration:underline;
|
|
8678
8937
|
white-space:nowrap;
|
|
8679
8938
|
}
|
|
8680
|
-
.iui-toast
|
|
8939
|
+
.iui-toast-anchor:hover{
|
|
8681
8940
|
text-decoration:none;
|
|
8682
8941
|
}
|
|
8683
8942
|
.iui-toast > .iui-button{
|
|
@@ -8711,6 +8970,26 @@ div.iui-tile-thumbnail-picture{
|
|
|
8711
8970
|
background-color:#008ae0;
|
|
8712
8971
|
background-color:var(--iui-color-background-primary);
|
|
8713
8972
|
}
|
|
8973
|
+
.iui-toast.iui-informational > .iui-toast-anchor{
|
|
8974
|
+
color:#008ae0;
|
|
8975
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
8976
|
+
color:var(--iui-color-foreground-primary);
|
|
8977
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
8978
|
+
}
|
|
8979
|
+
.iui-toast.iui-informational > .iui-toast-anchor:focus-visible{
|
|
8980
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
8981
|
+
outline-offset:1px;
|
|
8982
|
+
}
|
|
8983
|
+
@supports not selector(*:focus-visible){
|
|
8984
|
+
.iui-toast.iui-informational > .iui-toast-anchor:focus{
|
|
8985
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
8986
|
+
outline-offset:1px;
|
|
8987
|
+
}
|
|
8988
|
+
}
|
|
8989
|
+
.iui-toast.iui-informational > .iui-toast-anchor:hover{
|
|
8990
|
+
color:#006bad;
|
|
8991
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
8992
|
+
}
|
|
8714
8993
|
.iui-toast.iui-positive{
|
|
8715
8994
|
border-color:#53a21a;
|
|
8716
8995
|
border-color:var(--iui-color-foreground-positive);
|
|
@@ -8728,19 +9007,34 @@ div.iui-tile-thumbnail-picture{
|
|
|
8728
9007
|
background-color:#53a21a;
|
|
8729
9008
|
background-color:var(--iui-color-background-positive);
|
|
8730
9009
|
}
|
|
8731
|
-
.iui-toast.iui-positive > .iui-anchor{
|
|
9010
|
+
.iui-toast.iui-positive > .iui-toast-anchor{
|
|
8732
9011
|
color:#53a21a;
|
|
9012
|
+
-webkit-tap-highlight-color:rgba(83, 162, 26, 0.2);
|
|
8733
9013
|
color:var(--iui-color-foreground-positive);
|
|
9014
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
8734
9015
|
}
|
|
8735
|
-
.iui-toast.iui-positive > .iui-anchor:
|
|
8736
|
-
color
|
|
8737
|
-
|
|
9016
|
+
.iui-toast.iui-positive > .iui-toast-anchor:focus-visible{
|
|
9017
|
+
outline:1px solid var(--iui-color-foreground-positive);
|
|
9018
|
+
outline-offset:1px;
|
|
8738
9019
|
}
|
|
8739
|
-
|
|
8740
|
-
|
|
9020
|
+
@supports not selector(*:focus-visible){
|
|
9021
|
+
.iui-toast.iui-positive > .iui-toast-anchor:focus{
|
|
9022
|
+
outline:1px solid var(--iui-color-foreground-positive);
|
|
9023
|
+
outline-offset:1px;
|
|
9024
|
+
}
|
|
8741
9025
|
}
|
|
8742
|
-
.iui-toast.iui-positive > .iui-
|
|
8743
|
-
|
|
9026
|
+
.iui-toast.iui-positive > .iui-toast-anchor::-moz-selection, .iui-toast.iui-positive > .iui-toast-anchor *::-moz-selection{
|
|
9027
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
9028
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
9029
|
+
}
|
|
9030
|
+
.iui-toast.iui-positive > .iui-toast-anchor::selection,
|
|
9031
|
+
.iui-toast.iui-positive > .iui-toast-anchor *::selection{
|
|
9032
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
9033
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
9034
|
+
}
|
|
9035
|
+
.iui-toast.iui-positive > .iui-toast-anchor:hover{
|
|
9036
|
+
color:#3d7613;
|
|
9037
|
+
color:var(--iui-color-foreground-positive-overlay);
|
|
8744
9038
|
}
|
|
8745
9039
|
.iui-toast.iui-negative{
|
|
8746
9040
|
border-color:#d10a0a;
|
|
@@ -8759,19 +9053,34 @@ div.iui-tile-thumbnail-picture{
|
|
|
8759
9053
|
background-color:#d10a0a;
|
|
8760
9054
|
background-color:var(--iui-color-background-negative);
|
|
8761
9055
|
}
|
|
8762
|
-
.iui-toast.iui-negative > .iui-anchor{
|
|
9056
|
+
.iui-toast.iui-negative > .iui-toast-anchor{
|
|
8763
9057
|
color:#d10a0a;
|
|
9058
|
+
-webkit-tap-highlight-color:rgba(209, 10, 10, 0.2);
|
|
8764
9059
|
color:var(--iui-color-foreground-negative);
|
|
9060
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
8765
9061
|
}
|
|
8766
|
-
.iui-toast.iui-negative > .iui-anchor:
|
|
8767
|
-
color
|
|
8768
|
-
|
|
9062
|
+
.iui-toast.iui-negative > .iui-toast-anchor:focus-visible{
|
|
9063
|
+
outline:1px solid var(--iui-color-foreground-negative);
|
|
9064
|
+
outline-offset:1px;
|
|
8769
9065
|
}
|
|
8770
|
-
|
|
8771
|
-
|
|
9066
|
+
@supports not selector(*:focus-visible){
|
|
9067
|
+
.iui-toast.iui-negative > .iui-toast-anchor:focus{
|
|
9068
|
+
outline:1px solid var(--iui-color-foreground-negative);
|
|
9069
|
+
outline-offset:1px;
|
|
9070
|
+
}
|
|
8772
9071
|
}
|
|
8773
|
-
.iui-toast.iui-negative > .iui-
|
|
8774
|
-
|
|
9072
|
+
.iui-toast.iui-negative > .iui-toast-anchor::-moz-selection, .iui-toast.iui-negative > .iui-toast-anchor *::-moz-selection{
|
|
9073
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
9074
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
9075
|
+
}
|
|
9076
|
+
.iui-toast.iui-negative > .iui-toast-anchor::selection,
|
|
9077
|
+
.iui-toast.iui-negative > .iui-toast-anchor *::selection{
|
|
9078
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
9079
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
9080
|
+
}
|
|
9081
|
+
.iui-toast.iui-negative > .iui-toast-anchor:hover{
|
|
9082
|
+
color:#a10808;
|
|
9083
|
+
color:var(--iui-color-foreground-negative-overlay);
|
|
8775
9084
|
}
|
|
8776
9085
|
.iui-toast.iui-warning{
|
|
8777
9086
|
border-color:#f18d13;
|
|
@@ -8790,19 +9099,34 @@ div.iui-tile-thumbnail-picture{
|
|
|
8790
9099
|
background-color:#f18d13;
|
|
8791
9100
|
background-color:var(--iui-color-background-warning);
|
|
8792
9101
|
}
|
|
8793
|
-
.iui-toast.iui-warning > .iui-anchor{
|
|
9102
|
+
.iui-toast.iui-warning > .iui-toast-anchor{
|
|
8794
9103
|
color:#f18d13;
|
|
9104
|
+
-webkit-tap-highlight-color:rgba(241, 141, 19, 0.2);
|
|
8795
9105
|
color:var(--iui-color-foreground-warning);
|
|
9106
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
8796
9107
|
}
|
|
8797
|
-
.iui-toast.iui-warning > .iui-anchor:
|
|
8798
|
-
color
|
|
8799
|
-
|
|
9108
|
+
.iui-toast.iui-warning > .iui-toast-anchor:focus-visible{
|
|
9109
|
+
outline:1px solid var(--iui-color-foreground-warning);
|
|
9110
|
+
outline-offset:1px;
|
|
8800
9111
|
}
|
|
8801
|
-
|
|
8802
|
-
|
|
9112
|
+
@supports not selector(*:focus-visible){
|
|
9113
|
+
.iui-toast.iui-warning > .iui-toast-anchor:focus{
|
|
9114
|
+
outline:1px solid var(--iui-color-foreground-warning);
|
|
9115
|
+
outline-offset:1px;
|
|
9116
|
+
}
|
|
8803
9117
|
}
|
|
8804
|
-
.iui-toast.iui-warning > .iui-
|
|
8805
|
-
|
|
9118
|
+
.iui-toast.iui-warning > .iui-toast-anchor::-moz-selection, .iui-toast.iui-warning > .iui-toast-anchor *::-moz-selection{
|
|
9119
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
9120
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
9121
|
+
}
|
|
9122
|
+
.iui-toast.iui-warning > .iui-toast-anchor::selection,
|
|
9123
|
+
.iui-toast.iui-warning > .iui-toast-anchor *::selection{
|
|
9124
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
9125
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
9126
|
+
}
|
|
9127
|
+
.iui-toast.iui-warning > .iui-toast-anchor:hover{
|
|
9128
|
+
color:#c6720c;
|
|
9129
|
+
color:var(--iui-color-foreground-warning-overlay);
|
|
8806
9130
|
}
|
|
8807
9131
|
|
|
8808
9132
|
.iui-toggle-switch-wrapper{
|
|
@@ -9093,7 +9417,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9093
9417
|
display:inline-flex;
|
|
9094
9418
|
width:16px;
|
|
9095
9419
|
height:16px;
|
|
9096
|
-
|
|
9420
|
+
margin:0 6px;
|
|
9097
9421
|
flex-shrink:0;
|
|
9098
9422
|
}
|
|
9099
9423
|
.iui-tree-node-content-icon.iui-informational{
|
|
@@ -9113,7 +9437,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9113
9437
|
fill:var(--iui-icons-color-negative);
|
|
9114
9438
|
}
|
|
9115
9439
|
.iui-tree-node-content-icon:first-child{
|
|
9116
|
-
margin-left:
|
|
9440
|
+
margin-left:34px;
|
|
9117
9441
|
}
|
|
9118
9442
|
@media (prefers-reduced-motion: no-preference){
|
|
9119
9443
|
.iui-tree-node-content-expander-icon{
|
|
@@ -9617,8 +9941,9 @@ div.iui-tile-thumbnail-picture{
|
|
|
9617
9941
|
position:fixed;
|
|
9618
9942
|
text-align:center;
|
|
9619
9943
|
left:50%;
|
|
9620
|
-
opacity:0;
|
|
9621
9944
|
top:22px;
|
|
9945
|
+
opacity:0;
|
|
9946
|
+
z-index:99;
|
|
9622
9947
|
transform:translateX(-50%) translateY(-170%);
|
|
9623
9948
|
transition:background-color 0.2s ease-in-out;
|
|
9624
9949
|
}
|