@itwin/itwinui-css 0.53.1 → 0.54.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/css/alert.css +61 -43
- package/css/all.css +388 -126
- 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 +0 -23
- package/css/modal.css +5 -5
- package/css/skip-to-content.css +5 -2
- 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 +79 -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/modal/modal.scss +8 -5
- package/scss/skip-to-content/skip-to-content.scss +7 -3
- package/scss/style/global.scss +0 -4
- 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
|
@@ -583,29 +583,6 @@ html.iui-theme-dark-hc{
|
|
|
583
583
|
font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
|
|
584
584
|
}
|
|
585
585
|
|
|
586
|
-
.iui-anchor{
|
|
587
|
-
border-radius:3px;
|
|
588
|
-
text-decoration:none;
|
|
589
|
-
cursor:pointer;
|
|
590
|
-
color:#008ae0;
|
|
591
|
-
color:var(--iui-color-foreground-primary);
|
|
592
|
-
}
|
|
593
|
-
.iui-anchor:focus-visible{
|
|
594
|
-
outline:1px solid var(--iui-color-foreground-primary);
|
|
595
|
-
outline-offset:2px;
|
|
596
|
-
}
|
|
597
|
-
@supports not selector(*:focus-visible){
|
|
598
|
-
.iui-anchor:focus{
|
|
599
|
-
outline:1px solid var(--iui-color-foreground-primary);
|
|
600
|
-
outline-offset:2px;
|
|
601
|
-
}
|
|
602
|
-
}
|
|
603
|
-
.iui-anchor:hover{
|
|
604
|
-
color:#006bad;
|
|
605
|
-
color:var(--iui-color-foreground-primary-overlay);
|
|
606
|
-
text-decoration:underline;
|
|
607
|
-
}
|
|
608
|
-
|
|
609
586
|
[class*=iui-],
|
|
610
587
|
[class*=iui-] *{
|
|
611
588
|
scrollbar-color:rgba(0, 0, 0, 0.4) transparent;
|
|
@@ -691,31 +668,18 @@ html.iui-theme-dark-hc{
|
|
|
691
668
|
margin:11px 16px;
|
|
692
669
|
}
|
|
693
670
|
.iui-alert-link{
|
|
671
|
+
text-decoration:underline;
|
|
672
|
+
border-radius:3px;
|
|
694
673
|
cursor:pointer;
|
|
695
674
|
margin-left:8px;
|
|
696
|
-
text-decoration:underline;
|
|
697
675
|
-webkit-user-select:none;
|
|
698
676
|
-moz-user-select:none;
|
|
699
677
|
-ms-user-select:none;
|
|
700
678
|
user-select:none;
|
|
701
679
|
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
680
|
}
|
|
715
681
|
.iui-alert-link:hover{
|
|
716
682
|
text-decoration:none;
|
|
717
|
-
color:#006bad;
|
|
718
|
-
color:var(--iui-color-foreground-primary-overlay);
|
|
719
683
|
}
|
|
720
684
|
.iui-alert > .iui-button{
|
|
721
685
|
margin-left:auto;
|
|
@@ -748,24 +712,34 @@ html.iui-theme-dark-hc{
|
|
|
748
712
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
749
713
|
}
|
|
750
714
|
.iui-alert.iui-positive .iui-alert-link{
|
|
751
|
-
border-radius:3px;
|
|
752
715
|
color:#53a21a;
|
|
716
|
+
-webkit-tap-highlight-color:rgba(83, 162, 26, 0.2);
|
|
753
717
|
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);
|
|
718
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
758
719
|
}
|
|
759
720
|
.iui-alert.iui-positive .iui-alert-link:focus-visible{
|
|
760
721
|
outline:1px solid var(--iui-color-foreground-positive);
|
|
761
|
-
outline-offset:
|
|
722
|
+
outline-offset:1px;
|
|
762
723
|
}
|
|
763
724
|
@supports not selector(*:focus-visible){
|
|
764
725
|
.iui-alert.iui-positive .iui-alert-link:focus{
|
|
765
726
|
outline:1px solid var(--iui-color-foreground-positive);
|
|
766
|
-
outline-offset:
|
|
727
|
+
outline-offset:1px;
|
|
767
728
|
}
|
|
768
729
|
}
|
|
730
|
+
.iui-alert.iui-positive .iui-alert-link::-moz-selection, .iui-alert.iui-positive .iui-alert-link *::-moz-selection{
|
|
731
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
732
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
733
|
+
}
|
|
734
|
+
.iui-alert.iui-positive .iui-alert-link::selection,
|
|
735
|
+
.iui-alert.iui-positive .iui-alert-link *::selection{
|
|
736
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
737
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
738
|
+
}
|
|
739
|
+
.iui-alert.iui-positive .iui-alert-link:hover{
|
|
740
|
+
color:#3d7613;
|
|
741
|
+
color:var(--iui-color-foreground-positive-overlay);
|
|
742
|
+
}
|
|
769
743
|
.iui-alert.iui-positive > .iui-button{
|
|
770
744
|
outline-color:var(--iui-color-foreground-positive);
|
|
771
745
|
}
|
|
@@ -789,24 +763,34 @@ html.iui-theme-dark-hc{
|
|
|
789
763
|
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
790
764
|
}
|
|
791
765
|
.iui-alert.iui-negative .iui-alert-link{
|
|
792
|
-
border-radius:3px;
|
|
793
766
|
color:#d10a0a;
|
|
767
|
+
-webkit-tap-highlight-color:rgba(209, 10, 10, 0.2);
|
|
794
768
|
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);
|
|
769
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
799
770
|
}
|
|
800
771
|
.iui-alert.iui-negative .iui-alert-link:focus-visible{
|
|
801
772
|
outline:1px solid var(--iui-color-foreground-negative);
|
|
802
|
-
outline-offset:
|
|
773
|
+
outline-offset:1px;
|
|
803
774
|
}
|
|
804
775
|
@supports not selector(*:focus-visible){
|
|
805
776
|
.iui-alert.iui-negative .iui-alert-link:focus{
|
|
806
777
|
outline:1px solid var(--iui-color-foreground-negative);
|
|
807
|
-
outline-offset:
|
|
778
|
+
outline-offset:1px;
|
|
808
779
|
}
|
|
809
780
|
}
|
|
781
|
+
.iui-alert.iui-negative .iui-alert-link::-moz-selection, .iui-alert.iui-negative .iui-alert-link *::-moz-selection{
|
|
782
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
783
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
784
|
+
}
|
|
785
|
+
.iui-alert.iui-negative .iui-alert-link::selection,
|
|
786
|
+
.iui-alert.iui-negative .iui-alert-link *::selection{
|
|
787
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
788
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
789
|
+
}
|
|
790
|
+
.iui-alert.iui-negative .iui-alert-link:hover{
|
|
791
|
+
color:#a10808;
|
|
792
|
+
color:var(--iui-color-foreground-negative-overlay);
|
|
793
|
+
}
|
|
810
794
|
.iui-alert.iui-negative > .iui-button{
|
|
811
795
|
outline-color:var(--iui-color-foreground-negative);
|
|
812
796
|
}
|
|
@@ -830,24 +814,34 @@ html.iui-theme-dark-hc{
|
|
|
830
814
|
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
831
815
|
}
|
|
832
816
|
.iui-alert.iui-warning .iui-alert-link{
|
|
833
|
-
border-radius:3px;
|
|
834
817
|
color:#f18d13;
|
|
818
|
+
-webkit-tap-highlight-color:rgba(241, 141, 19, 0.2);
|
|
835
819
|
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);
|
|
820
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
840
821
|
}
|
|
841
822
|
.iui-alert.iui-warning .iui-alert-link:focus-visible{
|
|
842
823
|
outline:1px solid var(--iui-color-foreground-warning);
|
|
843
|
-
outline-offset:
|
|
824
|
+
outline-offset:1px;
|
|
844
825
|
}
|
|
845
826
|
@supports not selector(*:focus-visible){
|
|
846
827
|
.iui-alert.iui-warning .iui-alert-link:focus{
|
|
847
828
|
outline:1px solid var(--iui-color-foreground-warning);
|
|
848
|
-
outline-offset:
|
|
829
|
+
outline-offset:1px;
|
|
849
830
|
}
|
|
850
831
|
}
|
|
832
|
+
.iui-alert.iui-warning .iui-alert-link::-moz-selection, .iui-alert.iui-warning .iui-alert-link *::-moz-selection{
|
|
833
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
834
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
835
|
+
}
|
|
836
|
+
.iui-alert.iui-warning .iui-alert-link::selection,
|
|
837
|
+
.iui-alert.iui-warning .iui-alert-link *::selection{
|
|
838
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
839
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
840
|
+
}
|
|
841
|
+
.iui-alert.iui-warning .iui-alert-link:hover{
|
|
842
|
+
color:#c6720c;
|
|
843
|
+
color:var(--iui-color-foreground-warning-overlay);
|
|
844
|
+
}
|
|
851
845
|
.iui-alert.iui-warning > .iui-button{
|
|
852
846
|
outline-color:var(--iui-color-foreground-warning);
|
|
853
847
|
}
|
|
@@ -871,28 +865,94 @@ html.iui-theme-dark-hc{
|
|
|
871
865
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
872
866
|
}
|
|
873
867
|
.iui-alert.iui-informational .iui-alert-link{
|
|
874
|
-
border-radius:3px;
|
|
875
868
|
color:#008ae0;
|
|
869
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
876
870
|
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);
|
|
871
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
881
872
|
}
|
|
882
873
|
.iui-alert.iui-informational .iui-alert-link:focus-visible{
|
|
883
874
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
884
|
-
outline-offset:
|
|
875
|
+
outline-offset:1px;
|
|
885
876
|
}
|
|
886
877
|
@supports not selector(*:focus-visible){
|
|
887
878
|
.iui-alert.iui-informational .iui-alert-link:focus{
|
|
888
879
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
889
|
-
outline-offset:
|
|
880
|
+
outline-offset:1px;
|
|
890
881
|
}
|
|
891
882
|
}
|
|
883
|
+
.iui-alert.iui-informational .iui-alert-link:hover{
|
|
884
|
+
color:#006bad;
|
|
885
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
886
|
+
}
|
|
892
887
|
.iui-alert.iui-informational > .iui-button{
|
|
893
888
|
outline-color:var(--iui-color-foreground-primary);
|
|
894
889
|
}
|
|
895
890
|
|
|
891
|
+
.iui-anchor{
|
|
892
|
+
--_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>");
|
|
893
|
+
color:#008ae0;
|
|
894
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
895
|
+
color:var(--iui-color-foreground-primary);
|
|
896
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
897
|
+
border-radius:3px;
|
|
898
|
+
cursor:pointer;
|
|
899
|
+
text-decoration:none;
|
|
900
|
+
}
|
|
901
|
+
.iui-anchor:focus-visible{
|
|
902
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
903
|
+
outline-offset:1px;
|
|
904
|
+
}
|
|
905
|
+
@supports not selector(*:focus-visible){
|
|
906
|
+
.iui-anchor:focus{
|
|
907
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
908
|
+
outline-offset:1px;
|
|
909
|
+
}
|
|
910
|
+
}
|
|
911
|
+
.iui-anchor:hover{
|
|
912
|
+
color:#006bad;
|
|
913
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
914
|
+
}
|
|
915
|
+
.iui-anchor-external::after{
|
|
916
|
+
content:"";
|
|
917
|
+
display:inline-block;
|
|
918
|
+
width:1.5ch;
|
|
919
|
+
height:1.5ch;
|
|
920
|
+
margin-left:0.5ch;
|
|
921
|
+
vertical-align:-0.1ch;
|
|
922
|
+
background-color:currentColor;
|
|
923
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
924
|
+
mask:var(--_iui-anchor-external-svg);
|
|
925
|
+
}
|
|
926
|
+
@media (forced-colors: active){
|
|
927
|
+
.iui-anchor-external::after{
|
|
928
|
+
background-color:LinkText;
|
|
929
|
+
}
|
|
930
|
+
}
|
|
931
|
+
.iui-anchor:hover{
|
|
932
|
+
text-decoration:underline;
|
|
933
|
+
}
|
|
934
|
+
@media (prefers-contrast: more){
|
|
935
|
+
.iui-anchor{
|
|
936
|
+
text-decoration:underline;
|
|
937
|
+
}
|
|
938
|
+
.iui-anchor:hover{
|
|
939
|
+
text-decoration:none;
|
|
940
|
+
}
|
|
941
|
+
}
|
|
942
|
+
.iui-theme-light .iui-anchor, .iui-theme-dark .iui-anchor{
|
|
943
|
+
text-decoration:none;
|
|
944
|
+
}
|
|
945
|
+
.iui-theme-light .iui-anchor:hover, .iui-theme-dark .iui-anchor:hover{
|
|
946
|
+
text-decoration:underline;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.iui-theme-light-hc .iui-anchor, .iui-theme-dark-hc .iui-anchor{
|
|
950
|
+
text-decoration:underline;
|
|
951
|
+
}
|
|
952
|
+
.iui-theme-light-hc .iui-anchor:hover, .iui-theme-dark-hc .iui-anchor:hover{
|
|
953
|
+
text-decoration:none;
|
|
954
|
+
}
|
|
955
|
+
|
|
896
956
|
.iui-badge{
|
|
897
957
|
--iui-badge-background-color:#c7ccd1;
|
|
898
958
|
--_iui-badge-text-color:rgba(0, 0, 0, 0.6);
|
|
@@ -976,27 +1036,70 @@ html.iui-theme-dark-hc{
|
|
|
976
1036
|
margin:0 12px;
|
|
977
1037
|
}
|
|
978
1038
|
.iui-breadcrumbs-item a{
|
|
979
|
-
|
|
980
|
-
text-decoration:none;
|
|
981
|
-
cursor:pointer;
|
|
1039
|
+
--_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
1040
|
color:#008ae0;
|
|
1041
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
983
1042
|
color:var(--iui-color-foreground-primary);
|
|
1043
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1044
|
+
border-radius:3px;
|
|
1045
|
+
cursor:pointer;
|
|
1046
|
+
text-decoration:none;
|
|
984
1047
|
}
|
|
985
1048
|
.iui-breadcrumbs-item a:focus-visible{
|
|
986
1049
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
987
|
-
outline-offset:
|
|
1050
|
+
outline-offset:1px;
|
|
988
1051
|
}
|
|
989
1052
|
@supports not selector(*:focus-visible){
|
|
990
1053
|
.iui-breadcrumbs-item a:focus{
|
|
991
1054
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
992
|
-
outline-offset:
|
|
1055
|
+
outline-offset:1px;
|
|
993
1056
|
}
|
|
994
1057
|
}
|
|
995
1058
|
.iui-breadcrumbs-item a:hover{
|
|
996
1059
|
color:#006bad;
|
|
997
1060
|
color:var(--iui-color-foreground-primary-overlay);
|
|
1061
|
+
}
|
|
1062
|
+
.iui-breadcrumbs-item a-external::after{
|
|
1063
|
+
content:"";
|
|
1064
|
+
display:inline-block;
|
|
1065
|
+
width:1.5ch;
|
|
1066
|
+
height:1.5ch;
|
|
1067
|
+
margin-left:0.5ch;
|
|
1068
|
+
vertical-align:-0.1ch;
|
|
1069
|
+
background-color:currentColor;
|
|
1070
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
1071
|
+
mask:var(--_iui-anchor-external-svg);
|
|
1072
|
+
}
|
|
1073
|
+
@media (forced-colors: active){
|
|
1074
|
+
.iui-breadcrumbs-item a-external::after{
|
|
1075
|
+
background-color:LinkText;
|
|
1076
|
+
}
|
|
1077
|
+
}
|
|
1078
|
+
.iui-breadcrumbs-item a:hover{
|
|
1079
|
+
text-decoration:underline;
|
|
1080
|
+
}
|
|
1081
|
+
@media (prefers-contrast: more){
|
|
1082
|
+
.iui-breadcrumbs-item a{
|
|
1083
|
+
text-decoration:underline;
|
|
1084
|
+
}
|
|
1085
|
+
.iui-breadcrumbs-item a:hover{
|
|
1086
|
+
text-decoration:none;
|
|
1087
|
+
}
|
|
1088
|
+
}
|
|
1089
|
+
.iui-theme-light .iui-breadcrumbs-item a, .iui-theme-dark .iui-breadcrumbs-item a{
|
|
1090
|
+
text-decoration:none;
|
|
1091
|
+
}
|
|
1092
|
+
.iui-theme-light .iui-breadcrumbs-item a:hover, .iui-theme-dark .iui-breadcrumbs-item a:hover{
|
|
998
1093
|
text-decoration:underline;
|
|
999
1094
|
}
|
|
1095
|
+
|
|
1096
|
+
.iui-theme-light-hc .iui-breadcrumbs-item a, .iui-theme-dark-hc .iui-breadcrumbs-item a{
|
|
1097
|
+
text-decoration:underline;
|
|
1098
|
+
}
|
|
1099
|
+
.iui-theme-light-hc .iui-breadcrumbs-item a:hover, .iui-theme-dark-hc .iui-breadcrumbs-item a:hover{
|
|
1100
|
+
text-decoration:none;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1000
1103
|
.iui-breadcrumbs-item .iui-button{
|
|
1001
1104
|
border-color:transparent;
|
|
1002
1105
|
background-color:transparent;
|
|
@@ -1915,6 +2018,7 @@ html.iui-theme-dark-hc{
|
|
|
1915
2018
|
margin-right:4px;
|
|
1916
2019
|
position:relative;
|
|
1917
2020
|
background-color:var(--iui-color-swatch-background);
|
|
2021
|
+
forced-color-adjust:none;
|
|
1918
2022
|
background-position:0 0, 8px 8px;
|
|
1919
2023
|
background-size:16px 16px;
|
|
1920
2024
|
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 +2081,7 @@ html.iui-theme-dark-hc{
|
|
|
1977
2081
|
cursor:crosshair;
|
|
1978
2082
|
width:100%;
|
|
1979
2083
|
height:209px;
|
|
2084
|
+
forced-color-adjust:none;
|
|
1980
2085
|
background-image:linear-gradient(0deg, black, transparent), linear-gradient(90deg, white, var(--iui-color-field-hue));
|
|
1981
2086
|
}
|
|
1982
2087
|
.iui-color-field:not(:last-child){
|
|
@@ -1985,6 +2090,7 @@ html.iui-theme-dark-hc{
|
|
|
1985
2090
|
|
|
1986
2091
|
.iui-hue-slider .iui-slider-rail{
|
|
1987
2092
|
height:8px;
|
|
2093
|
+
forced-color-adjust:none;
|
|
1988
2094
|
background:linear-gradient(to right, #F00 0%, #FF0 17%, lime 33%, aqua 50%, #03F 67%, #C3F 83%, #F00 100%);
|
|
1989
2095
|
background:linear-gradient(to right, #F00 0%, #FF0 17%, lime 33%, aqua 50%, #03F 67%, #C3F 83%, #F00 100%);
|
|
1990
2096
|
}
|
|
@@ -1994,6 +2100,7 @@ html.iui-theme-dark-hc{
|
|
|
1994
2100
|
|
|
1995
2101
|
.iui-opacity-slider .iui-slider-rail{
|
|
1996
2102
|
height:8px;
|
|
2103
|
+
forced-color-adjust:none;
|
|
1997
2104
|
background-position:0 0, 4px 4px;
|
|
1998
2105
|
background-size:8px 8px;
|
|
1999
2106
|
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 +3029,70 @@ html.iui-theme-dark-hc{
|
|
|
2922
3029
|
background-color:var(--iui-text-color-muted);
|
|
2923
3030
|
}
|
|
2924
3031
|
.iui-legal-footer > ul > li > a{
|
|
2925
|
-
|
|
2926
|
-
text-decoration:none;
|
|
2927
|
-
cursor:pointer;
|
|
3032
|
+
--_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
3033
|
color:#008ae0;
|
|
3034
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
2929
3035
|
color:var(--iui-color-foreground-primary);
|
|
3036
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
3037
|
+
border-radius:3px;
|
|
3038
|
+
cursor:pointer;
|
|
3039
|
+
text-decoration:none;
|
|
2930
3040
|
}
|
|
2931
3041
|
.iui-legal-footer > ul > li > a:focus-visible{
|
|
2932
3042
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
2933
|
-
outline-offset:
|
|
3043
|
+
outline-offset:1px;
|
|
2934
3044
|
}
|
|
2935
3045
|
@supports not selector(*:focus-visible){
|
|
2936
3046
|
.iui-legal-footer > ul > li > a:focus{
|
|
2937
3047
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
2938
|
-
outline-offset:
|
|
3048
|
+
outline-offset:1px;
|
|
2939
3049
|
}
|
|
2940
3050
|
}
|
|
2941
3051
|
.iui-legal-footer > ul > li > a:hover{
|
|
2942
3052
|
color:#006bad;
|
|
2943
3053
|
color:var(--iui-color-foreground-primary-overlay);
|
|
3054
|
+
}
|
|
3055
|
+
.iui-legal-footer > ul > li > a-external::after{
|
|
3056
|
+
content:"";
|
|
3057
|
+
display:inline-block;
|
|
3058
|
+
width:1.5ch;
|
|
3059
|
+
height:1.5ch;
|
|
3060
|
+
margin-left:0.5ch;
|
|
3061
|
+
vertical-align:-0.1ch;
|
|
3062
|
+
background-color:currentColor;
|
|
3063
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
3064
|
+
mask:var(--_iui-anchor-external-svg);
|
|
3065
|
+
}
|
|
3066
|
+
@media (forced-colors: active){
|
|
3067
|
+
.iui-legal-footer > ul > li > a-external::after{
|
|
3068
|
+
background-color:LinkText;
|
|
3069
|
+
}
|
|
3070
|
+
}
|
|
3071
|
+
.iui-legal-footer > ul > li > a:hover{
|
|
2944
3072
|
text-decoration:underline;
|
|
2945
3073
|
}
|
|
3074
|
+
@media (prefers-contrast: more){
|
|
3075
|
+
.iui-legal-footer > ul > li > a{
|
|
3076
|
+
text-decoration:underline;
|
|
3077
|
+
}
|
|
3078
|
+
.iui-legal-footer > ul > li > a:hover{
|
|
3079
|
+
text-decoration:none;
|
|
3080
|
+
}
|
|
3081
|
+
}
|
|
3082
|
+
.iui-theme-light .iui-legal-footer > ul > li > a, .iui-theme-dark .iui-legal-footer > ul > li > a{
|
|
3083
|
+
text-decoration:none;
|
|
3084
|
+
}
|
|
3085
|
+
.iui-theme-light .iui-legal-footer > ul > li > a:hover, .iui-theme-dark .iui-legal-footer > ul > li > a:hover{
|
|
3086
|
+
text-decoration:underline;
|
|
3087
|
+
}
|
|
3088
|
+
|
|
3089
|
+
.iui-theme-light-hc .iui-legal-footer > ul > li > a, .iui-theme-dark-hc .iui-legal-footer > ul > li > a{
|
|
3090
|
+
text-decoration:underline;
|
|
3091
|
+
}
|
|
3092
|
+
.iui-theme-light-hc .iui-legal-footer > ul > li > a:hover, .iui-theme-dark-hc .iui-legal-footer > ul > li > a:hover{
|
|
3093
|
+
text-decoration:none;
|
|
3094
|
+
}
|
|
3095
|
+
|
|
2946
3096
|
.iui-legal-footer > ul > li > a, .iui-legal-footer > ul > li > a:hover{
|
|
2947
3097
|
color:rgba(0, 0, 0, 0.4);
|
|
2948
3098
|
color:var(--iui-text-color-muted);
|
|
@@ -5493,7 +5643,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5493
5643
|
}
|
|
5494
5644
|
@media (prefers-reduced-motion: no-preference){
|
|
5495
5645
|
.iui-modal-full-page{
|
|
5496
|
-
transition:visibility 0s linear 0.
|
|
5646
|
+
transition:visibility 0s linear 0.8s, opacity 0.4s ease-out 0.2s;
|
|
5497
5647
|
}
|
|
5498
5648
|
}
|
|
5499
5649
|
.iui-modal-full-page > .iui-modal-dialog{
|
|
@@ -5501,7 +5651,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5501
5651
|
}
|
|
5502
5652
|
@media (prefers-reduced-motion: no-preference){
|
|
5503
5653
|
.iui-modal-full-page > .iui-modal-dialog{
|
|
5504
|
-
transition:visibility 0s linear 0.4s, opacity 0s linear 0.4s, transform 0.
|
|
5654
|
+
transition:visibility 0s linear 0.4s, opacity 0s linear 0.4s, transform 0.25s ease-in;
|
|
5505
5655
|
}
|
|
5506
5656
|
}
|
|
5507
5657
|
.iui-modal-full-page.iui-modal-visible > .iui-modal-dialog{
|
|
@@ -5509,14 +5659,14 @@ label.iui-input-label.iui-disabled{
|
|
|
5509
5659
|
}
|
|
5510
5660
|
@media (prefers-reduced-motion: no-preference){
|
|
5511
5661
|
.iui-modal-full-page.iui-modal-visible > .iui-modal-dialog{
|
|
5512
|
-
transition:transform 0.
|
|
5662
|
+
transition:transform 0.3s ease-out;
|
|
5513
5663
|
}
|
|
5514
5664
|
}
|
|
5515
|
-
.iui-modal-animation-enter .iui-modal .iui-modal-dialog{
|
|
5665
|
+
.iui-modal-animation-enter .iui-modal-full-page .iui-modal-dialog{
|
|
5516
5666
|
transform:translateY(100%);
|
|
5517
5667
|
opacity:0;
|
|
5518
5668
|
}
|
|
5519
|
-
.iui-modal-animation-enter-active .iui-modal .iui-modal-dialog{
|
|
5669
|
+
.iui-modal-animation-enter-active .iui-modal-full-page .iui-modal-dialog{
|
|
5520
5670
|
transform:translateY(0);
|
|
5521
5671
|
opacity:1;
|
|
5522
5672
|
}
|
|
@@ -6861,10 +7011,10 @@ label.iui-input-label.iui-disabled{
|
|
|
6861
7011
|
background-color:rgba(0, 138, 224, 0.1);
|
|
6862
7012
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
6863
7013
|
}
|
|
6864
|
-
.iui-table-body .iui-row:hover:not(.iui-disabled) > .iui-slot > .iui-more-options{
|
|
7014
|
+
.iui-table-body .iui-row:hover:not(.iui-disabled) > .iui-slot:not(.iui-disabled) > .iui-more-options{
|
|
6865
7015
|
visibility:visible;
|
|
6866
7016
|
}
|
|
6867
|
-
.iui-table-body .iui-row:
|
|
7017
|
+
.iui-table-body .iui-row:focus-within > .iui-slot:not(.iui-disabled) > .iui-more-options{
|
|
6868
7018
|
visibility:visible;
|
|
6869
7019
|
}
|
|
6870
7020
|
@media (prefers-reduced-motion: no-preference){
|
|
@@ -6959,20 +7109,20 @@ label.iui-input-label.iui-disabled{
|
|
|
6959
7109
|
color:#53a21a;
|
|
6960
7110
|
color:var(--iui-color-foreground-positive);
|
|
6961
7111
|
}
|
|
6962
|
-
.iui-table-body .iui-row.iui-disabled, .iui-table-body .iui-row.iui-
|
|
7112
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled, .iui-table-body .iui-row.iui-expanded-content.iui-disabled{
|
|
6963
7113
|
font-style:italic;
|
|
6964
7114
|
cursor:not-allowed;
|
|
6965
7115
|
color:rgba(0, 0, 0, 0.4);
|
|
6966
7116
|
color:var(--iui-text-color-muted);
|
|
6967
7117
|
}
|
|
6968
|
-
.iui-table-body .iui-row.iui-disabled
|
|
7118
|
+
.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
7119
|
visibility:hidden;
|
|
6970
7120
|
}
|
|
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-
|
|
7121
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled img,
|
|
7122
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled svg:not(.iui-radial),
|
|
7123
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled .iui-user-icon, .iui-table-body .iui-row.iui-expanded-content.iui-disabled img,
|
|
7124
|
+
.iui-table-body .iui-row.iui-expanded-content.iui-disabled svg:not(.iui-radial),
|
|
7125
|
+
.iui-table-body .iui-row.iui-expanded-content.iui-disabled .iui-user-icon{
|
|
6976
7126
|
filter:grayscale(100%);
|
|
6977
7127
|
}
|
|
6978
7128
|
.iui-table-body .iui-row.iui-positive,
|
|
@@ -7758,27 +7908,69 @@ label.iui-input-label.iui-disabled{
|
|
|
7758
7908
|
}
|
|
7759
7909
|
|
|
7760
7910
|
a.iui-tag{
|
|
7761
|
-
|
|
7762
|
-
text-decoration:none;
|
|
7763
|
-
cursor:pointer;
|
|
7911
|
+
--_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
7912
|
color:#008ae0;
|
|
7913
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
7765
7914
|
color:var(--iui-color-foreground-primary);
|
|
7915
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
7916
|
+
border-radius:3px;
|
|
7917
|
+
cursor:pointer;
|
|
7918
|
+
text-decoration:none;
|
|
7766
7919
|
}
|
|
7767
7920
|
a.iui-tag:focus-visible{
|
|
7768
7921
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
7769
|
-
outline-offset:
|
|
7922
|
+
outline-offset:1px;
|
|
7770
7923
|
}
|
|
7771
7924
|
@supports not selector(*:focus-visible){
|
|
7772
7925
|
a.iui-tag:focus{
|
|
7773
7926
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
7774
|
-
outline-offset:
|
|
7927
|
+
outline-offset:1px;
|
|
7775
7928
|
}
|
|
7776
7929
|
}
|
|
7777
7930
|
a.iui-tag:hover{
|
|
7778
7931
|
color:#006bad;
|
|
7779
7932
|
color:var(--iui-color-foreground-primary-overlay);
|
|
7933
|
+
}
|
|
7934
|
+
a.iui-tag-external::after{
|
|
7935
|
+
content:"";
|
|
7936
|
+
display:inline-block;
|
|
7937
|
+
width:1.5ch;
|
|
7938
|
+
height:1.5ch;
|
|
7939
|
+
margin-left:0.5ch;
|
|
7940
|
+
vertical-align:-0.1ch;
|
|
7941
|
+
background-color:currentColor;
|
|
7942
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
7943
|
+
mask:var(--_iui-anchor-external-svg);
|
|
7944
|
+
}
|
|
7945
|
+
@media (forced-colors: active){
|
|
7946
|
+
a.iui-tag-external::after{
|
|
7947
|
+
background-color:LinkText;
|
|
7948
|
+
}
|
|
7949
|
+
}
|
|
7950
|
+
a.iui-tag:hover{
|
|
7951
|
+
text-decoration:underline;
|
|
7952
|
+
}
|
|
7953
|
+
@media (prefers-contrast: more){
|
|
7954
|
+
a.iui-tag{
|
|
7955
|
+
text-decoration:underline;
|
|
7956
|
+
}
|
|
7957
|
+
a.iui-tag:hover{
|
|
7958
|
+
text-decoration:none;
|
|
7959
|
+
}
|
|
7960
|
+
}
|
|
7961
|
+
.iui-theme-light a.iui-tag, .iui-theme-dark a.iui-tag{
|
|
7962
|
+
text-decoration:none;
|
|
7963
|
+
}
|
|
7964
|
+
.iui-theme-light a.iui-tag:hover, .iui-theme-dark a.iui-tag:hover{
|
|
7965
|
+
text-decoration:underline;
|
|
7966
|
+
}
|
|
7967
|
+
|
|
7968
|
+
.iui-theme-light-hc a.iui-tag, .iui-theme-dark-hc a.iui-tag{
|
|
7780
7969
|
text-decoration:underline;
|
|
7781
7970
|
}
|
|
7971
|
+
.iui-theme-light-hc a.iui-tag:hover, .iui-theme-dark-hc a.iui-tag:hover{
|
|
7972
|
+
text-decoration:none;
|
|
7973
|
+
}
|
|
7782
7974
|
|
|
7783
7975
|
.iui-tag-container{
|
|
7784
7976
|
color:rgba(0, 0, 0, 0.4);
|
|
@@ -8667,17 +8859,19 @@ div.iui-tile-thumbnail-picture{
|
|
|
8667
8859
|
color:rgba(0, 0, 0, 0.8);
|
|
8668
8860
|
color:var(--iui-text-color);
|
|
8669
8861
|
}
|
|
8670
|
-
.iui-toast
|
|
8862
|
+
.iui-toast-anchor{
|
|
8863
|
+
text-decoration:underline;
|
|
8864
|
+
border-radius:3px;
|
|
8865
|
+
cursor:pointer;
|
|
8671
8866
|
font-size:12px;
|
|
8672
8867
|
margin-right:16px;
|
|
8673
8868
|
-webkit-user-select:none;
|
|
8674
8869
|
-moz-user-select:none;
|
|
8675
8870
|
-ms-user-select:none;
|
|
8676
8871
|
user-select:none;
|
|
8677
|
-
text-decoration:underline;
|
|
8678
8872
|
white-space:nowrap;
|
|
8679
8873
|
}
|
|
8680
|
-
.iui-toast
|
|
8874
|
+
.iui-toast-anchor:hover{
|
|
8681
8875
|
text-decoration:none;
|
|
8682
8876
|
}
|
|
8683
8877
|
.iui-toast > .iui-button{
|
|
@@ -8711,6 +8905,26 @@ div.iui-tile-thumbnail-picture{
|
|
|
8711
8905
|
background-color:#008ae0;
|
|
8712
8906
|
background-color:var(--iui-color-background-primary);
|
|
8713
8907
|
}
|
|
8908
|
+
.iui-toast.iui-informational > .iui-toast-anchor{
|
|
8909
|
+
color:#008ae0;
|
|
8910
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
8911
|
+
color:var(--iui-color-foreground-primary);
|
|
8912
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
8913
|
+
}
|
|
8914
|
+
.iui-toast.iui-informational > .iui-toast-anchor:focus-visible{
|
|
8915
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
8916
|
+
outline-offset:1px;
|
|
8917
|
+
}
|
|
8918
|
+
@supports not selector(*:focus-visible){
|
|
8919
|
+
.iui-toast.iui-informational > .iui-toast-anchor:focus{
|
|
8920
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
8921
|
+
outline-offset:1px;
|
|
8922
|
+
}
|
|
8923
|
+
}
|
|
8924
|
+
.iui-toast.iui-informational > .iui-toast-anchor:hover{
|
|
8925
|
+
color:#006bad;
|
|
8926
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
8927
|
+
}
|
|
8714
8928
|
.iui-toast.iui-positive{
|
|
8715
8929
|
border-color:#53a21a;
|
|
8716
8930
|
border-color:var(--iui-color-foreground-positive);
|
|
@@ -8728,19 +8942,34 @@ div.iui-tile-thumbnail-picture{
|
|
|
8728
8942
|
background-color:#53a21a;
|
|
8729
8943
|
background-color:var(--iui-color-background-positive);
|
|
8730
8944
|
}
|
|
8731
|
-
.iui-toast.iui-positive > .iui-anchor{
|
|
8945
|
+
.iui-toast.iui-positive > .iui-toast-anchor{
|
|
8732
8946
|
color:#53a21a;
|
|
8947
|
+
-webkit-tap-highlight-color:rgba(83, 162, 26, 0.2);
|
|
8733
8948
|
color:var(--iui-color-foreground-positive);
|
|
8949
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
8734
8950
|
}
|
|
8735
|
-
.iui-toast.iui-positive > .iui-anchor:
|
|
8736
|
-
color
|
|
8737
|
-
|
|
8951
|
+
.iui-toast.iui-positive > .iui-toast-anchor:focus-visible{
|
|
8952
|
+
outline:1px solid var(--iui-color-foreground-positive);
|
|
8953
|
+
outline-offset:1px;
|
|
8738
8954
|
}
|
|
8739
|
-
|
|
8740
|
-
|
|
8955
|
+
@supports not selector(*:focus-visible){
|
|
8956
|
+
.iui-toast.iui-positive > .iui-toast-anchor:focus{
|
|
8957
|
+
outline:1px solid var(--iui-color-foreground-positive);
|
|
8958
|
+
outline-offset:1px;
|
|
8959
|
+
}
|
|
8741
8960
|
}
|
|
8742
|
-
.iui-toast.iui-positive > .iui-
|
|
8743
|
-
|
|
8961
|
+
.iui-toast.iui-positive > .iui-toast-anchor::-moz-selection, .iui-toast.iui-positive > .iui-toast-anchor *::-moz-selection{
|
|
8962
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
8963
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
8964
|
+
}
|
|
8965
|
+
.iui-toast.iui-positive > .iui-toast-anchor::selection,
|
|
8966
|
+
.iui-toast.iui-positive > .iui-toast-anchor *::selection{
|
|
8967
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
8968
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
8969
|
+
}
|
|
8970
|
+
.iui-toast.iui-positive > .iui-toast-anchor:hover{
|
|
8971
|
+
color:#3d7613;
|
|
8972
|
+
color:var(--iui-color-foreground-positive-overlay);
|
|
8744
8973
|
}
|
|
8745
8974
|
.iui-toast.iui-negative{
|
|
8746
8975
|
border-color:#d10a0a;
|
|
@@ -8759,19 +8988,34 @@ div.iui-tile-thumbnail-picture{
|
|
|
8759
8988
|
background-color:#d10a0a;
|
|
8760
8989
|
background-color:var(--iui-color-background-negative);
|
|
8761
8990
|
}
|
|
8762
|
-
.iui-toast.iui-negative > .iui-anchor{
|
|
8991
|
+
.iui-toast.iui-negative > .iui-toast-anchor{
|
|
8763
8992
|
color:#d10a0a;
|
|
8993
|
+
-webkit-tap-highlight-color:rgba(209, 10, 10, 0.2);
|
|
8764
8994
|
color:var(--iui-color-foreground-negative);
|
|
8995
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
8765
8996
|
}
|
|
8766
|
-
.iui-toast.iui-negative > .iui-anchor:
|
|
8767
|
-
color
|
|
8768
|
-
|
|
8997
|
+
.iui-toast.iui-negative > .iui-toast-anchor:focus-visible{
|
|
8998
|
+
outline:1px solid var(--iui-color-foreground-negative);
|
|
8999
|
+
outline-offset:1px;
|
|
8769
9000
|
}
|
|
8770
|
-
|
|
8771
|
-
|
|
9001
|
+
@supports not selector(*:focus-visible){
|
|
9002
|
+
.iui-toast.iui-negative > .iui-toast-anchor:focus{
|
|
9003
|
+
outline:1px solid var(--iui-color-foreground-negative);
|
|
9004
|
+
outline-offset:1px;
|
|
9005
|
+
}
|
|
8772
9006
|
}
|
|
8773
|
-
.iui-toast.iui-negative > .iui-
|
|
8774
|
-
|
|
9007
|
+
.iui-toast.iui-negative > .iui-toast-anchor::-moz-selection, .iui-toast.iui-negative > .iui-toast-anchor *::-moz-selection{
|
|
9008
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
9009
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
9010
|
+
}
|
|
9011
|
+
.iui-toast.iui-negative > .iui-toast-anchor::selection,
|
|
9012
|
+
.iui-toast.iui-negative > .iui-toast-anchor *::selection{
|
|
9013
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
9014
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
9015
|
+
}
|
|
9016
|
+
.iui-toast.iui-negative > .iui-toast-anchor:hover{
|
|
9017
|
+
color:#a10808;
|
|
9018
|
+
color:var(--iui-color-foreground-negative-overlay);
|
|
8775
9019
|
}
|
|
8776
9020
|
.iui-toast.iui-warning{
|
|
8777
9021
|
border-color:#f18d13;
|
|
@@ -8790,19 +9034,34 @@ div.iui-tile-thumbnail-picture{
|
|
|
8790
9034
|
background-color:#f18d13;
|
|
8791
9035
|
background-color:var(--iui-color-background-warning);
|
|
8792
9036
|
}
|
|
8793
|
-
.iui-toast.iui-warning > .iui-anchor{
|
|
9037
|
+
.iui-toast.iui-warning > .iui-toast-anchor{
|
|
8794
9038
|
color:#f18d13;
|
|
9039
|
+
-webkit-tap-highlight-color:rgba(241, 141, 19, 0.2);
|
|
8795
9040
|
color:var(--iui-color-foreground-warning);
|
|
9041
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
8796
9042
|
}
|
|
8797
|
-
.iui-toast.iui-warning > .iui-anchor:
|
|
8798
|
-
color
|
|
8799
|
-
|
|
9043
|
+
.iui-toast.iui-warning > .iui-toast-anchor:focus-visible{
|
|
9044
|
+
outline:1px solid var(--iui-color-foreground-warning);
|
|
9045
|
+
outline-offset:1px;
|
|
8800
9046
|
}
|
|
8801
|
-
|
|
8802
|
-
|
|
9047
|
+
@supports not selector(*:focus-visible){
|
|
9048
|
+
.iui-toast.iui-warning > .iui-toast-anchor:focus{
|
|
9049
|
+
outline:1px solid var(--iui-color-foreground-warning);
|
|
9050
|
+
outline-offset:1px;
|
|
9051
|
+
}
|
|
8803
9052
|
}
|
|
8804
|
-
.iui-toast.iui-warning > .iui-
|
|
8805
|
-
|
|
9053
|
+
.iui-toast.iui-warning > .iui-toast-anchor::-moz-selection, .iui-toast.iui-warning > .iui-toast-anchor *::-moz-selection{
|
|
9054
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
9055
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
9056
|
+
}
|
|
9057
|
+
.iui-toast.iui-warning > .iui-toast-anchor::selection,
|
|
9058
|
+
.iui-toast.iui-warning > .iui-toast-anchor *::selection{
|
|
9059
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
9060
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
9061
|
+
}
|
|
9062
|
+
.iui-toast.iui-warning > .iui-toast-anchor:hover{
|
|
9063
|
+
color:#c6720c;
|
|
9064
|
+
color:var(--iui-color-foreground-warning-overlay);
|
|
8806
9065
|
}
|
|
8807
9066
|
|
|
8808
9067
|
.iui-toggle-switch-wrapper{
|
|
@@ -9093,7 +9352,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9093
9352
|
display:inline-flex;
|
|
9094
9353
|
width:16px;
|
|
9095
9354
|
height:16px;
|
|
9096
|
-
|
|
9355
|
+
margin:0 6px;
|
|
9097
9356
|
flex-shrink:0;
|
|
9098
9357
|
}
|
|
9099
9358
|
.iui-tree-node-content-icon.iui-informational{
|
|
@@ -9113,7 +9372,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9113
9372
|
fill:var(--iui-icons-color-negative);
|
|
9114
9373
|
}
|
|
9115
9374
|
.iui-tree-node-content-icon:first-child{
|
|
9116
|
-
margin-left:
|
|
9375
|
+
margin-left:34px;
|
|
9117
9376
|
}
|
|
9118
9377
|
@media (prefers-reduced-motion: no-preference){
|
|
9119
9378
|
.iui-tree-node-content-expander-icon{
|
|
@@ -9618,6 +9877,8 @@ div.iui-tile-thumbnail-picture{
|
|
|
9618
9877
|
text-align:center;
|
|
9619
9878
|
left:50%;
|
|
9620
9879
|
top:22px;
|
|
9880
|
+
opacity:0;
|
|
9881
|
+
z-index:99;
|
|
9621
9882
|
transform:translateX(-50%) translateY(-170%);
|
|
9622
9883
|
transition:background-color 0.2s ease-in-out;
|
|
9623
9884
|
}
|
|
@@ -9640,7 +9901,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9640
9901
|
}
|
|
9641
9902
|
@media (prefers-reduced-motion: no-preference){
|
|
9642
9903
|
.iui-skip-to-content-link{
|
|
9643
|
-
transition:background-color 0.
|
|
9904
|
+
transition:opacity 0.8s ease-in-out, background-color 0.8s ease-in-out, transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
|
|
9644
9905
|
}
|
|
9645
9906
|
}
|
|
9646
9907
|
.iui-skip-to-content-link:hover{
|
|
@@ -9655,12 +9916,13 @@ div.iui-tile-thumbnail-picture{
|
|
|
9655
9916
|
}
|
|
9656
9917
|
}
|
|
9657
9918
|
.iui-skip-to-content-link:focus{
|
|
9919
|
+
opacity:1;
|
|
9658
9920
|
transform:translateX(-50%) translateY(0);
|
|
9659
9921
|
box-shadow:0 6px 30px rgba(0, 0, 0, 0.25);
|
|
9660
9922
|
}
|
|
9661
9923
|
@media (prefers-reduced-motion: no-preference){
|
|
9662
9924
|
.iui-skip-to-content-link:focus{
|
|
9663
|
-
transition:transform 0.2s ease-in-out;
|
|
9925
|
+
transition:opacity 0s ease-in-out, background-color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
9664
9926
|
}
|
|
9665
9927
|
}
|
|
9666
9928
|
|