@itwin/itwinui-css 0.54.1 → 0.57.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/all.css +872 -473
- package/css/anchor.css +21 -17
- package/css/breadcrumbs.css +308 -56
- package/css/button.css +9 -12
- package/css/footer.css +1 -17
- package/css/global.css +14 -17
- package/css/header.css +3 -2
- package/css/inputs.css +18 -168
- package/css/menu.css +21 -0
- package/css/popover.css +2 -2
- package/css/radio-tile.css +217 -0
- package/css/table.css +12 -11
- package/css/tabs.css +4 -0
- package/css/tag.css +55 -64
- package/css/text.css +9 -3
- package/css/tile.css +29 -17
- package/css/toast-notification.css +1 -1
- package/css/toggle-switch.css +65 -0
- package/package.json +5 -3
- package/scss/anchor/classes.scss +4 -0
- package/scss/breadcrumbs/breadcrumbs.scss +74 -18
- package/scss/breadcrumbs/classes.scss +9 -0
- package/scss/button/button.scss +17 -16
- package/scss/button/classes.scss +4 -0
- package/scss/button/cta.scss +3 -1
- package/scss/button/default.scss +0 -2
- package/scss/button/high-visibility.scss +3 -1
- package/scss/classes.scss +3 -2
- package/scss/header/header.scss +8 -1
- package/scss/index.scss +3 -2
- package/scss/inputs/checkbox.scss +11 -6
- package/scss/inputs/classes.scss +0 -4
- package/scss/inputs/index.scss +0 -1
- package/scss/inputs/labeled-inputs.scss +1 -1
- package/scss/menu/menu.scss +27 -0
- package/scss/popover/popover.scss +2 -2
- package/scss/radio-tile/classes.scss +31 -0
- package/scss/radio-tile/index.scss +3 -0
- package/scss/radio-tile/radio-tile.scss +209 -0
- package/scss/style/anchor.scss +19 -16
- package/scss/style/global.scss +4 -0
- package/scss/table/paginator.scss +4 -0
- package/scss/tabs/tabs.scss +6 -0
- package/scss/tag/classes.scss +14 -1
- package/scss/tag/tag.scss +45 -46
- package/scss/text/skeleton.scss +13 -7
- package/scss/tile/tile.scss +19 -13
- package/scss/toast-notification/classes.scss +1 -1
- package/scss/toggle-switch/toggle-switch.scss +50 -2
- package/scss/inputs/radio-tile.scss +0 -200
package/css/all.css
CHANGED
|
@@ -584,12 +584,12 @@ html.iui-theme-dark-hc{
|
|
|
584
584
|
}
|
|
585
585
|
|
|
586
586
|
.iui-anchor{
|
|
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>");
|
|
588
587
|
color:#008ae0;
|
|
589
588
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
590
589
|
color:var(--iui-color-foreground-primary);
|
|
591
590
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
592
591
|
border-radius:3px;
|
|
592
|
+
box-sizing:border-box;
|
|
593
593
|
cursor:pointer;
|
|
594
594
|
text-decoration:none;
|
|
595
595
|
}
|
|
@@ -607,22 +607,6 @@ html.iui-theme-dark-hc{
|
|
|
607
607
|
color:#006bad;
|
|
608
608
|
color:var(--iui-color-foreground-primary-overlay);
|
|
609
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
610
|
.iui-anchor:hover{
|
|
627
611
|
text-decoration:underline;
|
|
628
612
|
}
|
|
@@ -648,6 +632,19 @@ html.iui-theme-dark-hc{
|
|
|
648
632
|
text-decoration:none;
|
|
649
633
|
}
|
|
650
634
|
|
|
635
|
+
.iui-visually-hidden{
|
|
636
|
+
-webkit-clip-path:inset(50%);
|
|
637
|
+
clip-path:inset(50%);
|
|
638
|
+
overflow:hidden;
|
|
639
|
+
position:absolute;
|
|
640
|
+
white-space:nowrap;
|
|
641
|
+
height:1px;
|
|
642
|
+
width:1px;
|
|
643
|
+
padding:0;
|
|
644
|
+
margin:-1px;
|
|
645
|
+
border-width:0;
|
|
646
|
+
}
|
|
647
|
+
|
|
651
648
|
[class*=iui-],
|
|
652
649
|
[class*=iui-] *{
|
|
653
650
|
scrollbar-color:rgba(0, 0, 0, 0.4) transparent;
|
|
@@ -954,12 +951,12 @@ html.iui-theme-dark-hc{
|
|
|
954
951
|
}
|
|
955
952
|
|
|
956
953
|
.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
954
|
color:#008ae0;
|
|
959
955
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
960
956
|
color:var(--iui-color-foreground-primary);
|
|
961
957
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
962
958
|
border-radius:3px;
|
|
959
|
+
box-sizing:border-box;
|
|
963
960
|
cursor:pointer;
|
|
964
961
|
text-decoration:none;
|
|
965
962
|
}
|
|
@@ -977,22 +974,6 @@ html.iui-theme-dark-hc{
|
|
|
977
974
|
color:#006bad;
|
|
978
975
|
color:var(--iui-color-foreground-primary-overlay);
|
|
979
976
|
}
|
|
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
977
|
.iui-anchor:hover{
|
|
997
978
|
text-decoration:underline;
|
|
998
979
|
}
|
|
@@ -1018,6 +999,26 @@ html.iui-theme-dark-hc{
|
|
|
1018
999
|
text-decoration:none;
|
|
1019
1000
|
}
|
|
1020
1001
|
|
|
1002
|
+
.iui-anchor-external{
|
|
1003
|
+
--_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>");
|
|
1004
|
+
}
|
|
1005
|
+
.iui-anchor-external::after{
|
|
1006
|
+
content:"";
|
|
1007
|
+
display:inline-block;
|
|
1008
|
+
width:1.5ch;
|
|
1009
|
+
height:1.5ch;
|
|
1010
|
+
margin-left:0.5ch;
|
|
1011
|
+
vertical-align:-0.1ch;
|
|
1012
|
+
background-color:currentColor;
|
|
1013
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
1014
|
+
mask:var(--_iui-anchor-external-svg);
|
|
1015
|
+
}
|
|
1016
|
+
@media (forced-colors: active){
|
|
1017
|
+
.iui-anchor-external::after{
|
|
1018
|
+
background-color:LinkText;
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1021
1022
|
.iui-badge{
|
|
1022
1023
|
--iui-badge-background-color:#c7ccd1;
|
|
1023
1024
|
--_iui-badge-text-color:rgba(0, 0, 0, 0.6);
|
|
@@ -1095,102 +1096,195 @@ html.iui-theme-dark-hc{
|
|
|
1095
1096
|
|
|
1096
1097
|
.iui-breadcrumbs-item{
|
|
1097
1098
|
display:flex;
|
|
1099
|
+
align-items:center;
|
|
1098
1100
|
line-height:38px;
|
|
1099
1101
|
height:38px;
|
|
1100
|
-
max-width:192px;
|
|
1101
|
-
margin:0 12px;
|
|
1102
1102
|
}
|
|
1103
|
-
.iui-breadcrumbs-item
|
|
1104
|
-
|
|
1103
|
+
.iui-breadcrumbs-item > *{
|
|
1104
|
+
max-width:26ch;
|
|
1105
|
+
}
|
|
1106
|
+
.iui-breadcrumbs-item > *{
|
|
1107
|
+
padding:0 8px;
|
|
1108
|
+
overflow:hidden;
|
|
1109
|
+
white-space:nowrap;
|
|
1110
|
+
text-overflow:ellipsis;
|
|
1111
|
+
color:rgba(0, 0, 0, 0.8);
|
|
1112
|
+
color:var(--iui-text-color);
|
|
1113
|
+
}
|
|
1114
|
+
.iui-breadcrumbs-item > :-webkit-any-link{
|
|
1115
|
+
color:#008ae0;
|
|
1116
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1117
|
+
color:var(--iui-color-foreground-primary);
|
|
1118
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1119
|
+
border-radius:3px;
|
|
1120
|
+
box-sizing:border-box;
|
|
1121
|
+
cursor:pointer;
|
|
1122
|
+
text-decoration:none;
|
|
1123
|
+
}
|
|
1124
|
+
.iui-breadcrumbs-item > :-moz-any-link{
|
|
1125
|
+
color:#008ae0;
|
|
1126
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1127
|
+
color:var(--iui-color-foreground-primary);
|
|
1128
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1129
|
+
border-radius:3px;
|
|
1130
|
+
box-sizing:border-box;
|
|
1131
|
+
cursor:pointer;
|
|
1132
|
+
text-decoration:none;
|
|
1133
|
+
}
|
|
1134
|
+
.iui-breadcrumbs-item > :any-link{
|
|
1105
1135
|
color:#008ae0;
|
|
1106
1136
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1107
1137
|
color:var(--iui-color-foreground-primary);
|
|
1108
1138
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1109
1139
|
border-radius:3px;
|
|
1140
|
+
box-sizing:border-box;
|
|
1110
1141
|
cursor:pointer;
|
|
1111
1142
|
text-decoration:none;
|
|
1112
1143
|
}
|
|
1113
|
-
.iui-breadcrumbs-item
|
|
1144
|
+
.iui-breadcrumbs-item > :-webkit-any-link:focus-visible{
|
|
1145
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1146
|
+
outline-offset:1px;
|
|
1147
|
+
}
|
|
1148
|
+
.iui-breadcrumbs-item > :-moz-any-link:focus-visible{
|
|
1149
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1150
|
+
outline-offset:1px;
|
|
1151
|
+
}
|
|
1152
|
+
.iui-breadcrumbs-item > :any-link:focus-visible{
|
|
1114
1153
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
1115
1154
|
outline-offset:1px;
|
|
1116
1155
|
}
|
|
1117
1156
|
@supports not selector(*:focus-visible){
|
|
1118
|
-
.iui-breadcrumbs-item
|
|
1157
|
+
.iui-breadcrumbs-item > :-webkit-any-link:focus{
|
|
1158
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1159
|
+
outline-offset:1px;
|
|
1160
|
+
}
|
|
1161
|
+
.iui-breadcrumbs-item > :-moz-any-link:focus{
|
|
1162
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1163
|
+
outline-offset:1px;
|
|
1164
|
+
}
|
|
1165
|
+
.iui-breadcrumbs-item > :any-link:focus{
|
|
1119
1166
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
1120
1167
|
outline-offset:1px;
|
|
1121
1168
|
}
|
|
1122
1169
|
}
|
|
1123
|
-
.iui-breadcrumbs-item
|
|
1170
|
+
.iui-breadcrumbs-item > :-webkit-any-link:hover{
|
|
1124
1171
|
color:#006bad;
|
|
1125
1172
|
color:var(--iui-color-foreground-primary-overlay);
|
|
1126
1173
|
}
|
|
1127
|
-
.iui-breadcrumbs-item
|
|
1128
|
-
|
|
1129
|
-
|
|
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);
|
|
1174
|
+
.iui-breadcrumbs-item > :-moz-any-link:hover{
|
|
1175
|
+
color:#006bad;
|
|
1176
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
1137
1177
|
}
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1178
|
+
.iui-breadcrumbs-item > :any-link:hover{
|
|
1179
|
+
color:#006bad;
|
|
1180
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
1181
|
+
}
|
|
1182
|
+
.iui-breadcrumbs-item > :-webkit-any-link:hover{
|
|
1183
|
+
text-decoration:underline;
|
|
1184
|
+
}
|
|
1185
|
+
.iui-breadcrumbs-item > :-moz-any-link:hover{
|
|
1186
|
+
text-decoration:underline;
|
|
1142
1187
|
}
|
|
1143
|
-
.iui-breadcrumbs-item
|
|
1188
|
+
.iui-breadcrumbs-item > :any-link:hover{
|
|
1144
1189
|
text-decoration:underline;
|
|
1145
1190
|
}
|
|
1146
1191
|
@media (prefers-contrast: more){
|
|
1147
|
-
.iui-breadcrumbs-item
|
|
1192
|
+
.iui-breadcrumbs-item > :-webkit-any-link{
|
|
1193
|
+
text-decoration:underline;
|
|
1194
|
+
}
|
|
1195
|
+
.iui-breadcrumbs-item > :-moz-any-link{
|
|
1196
|
+
text-decoration:underline;
|
|
1197
|
+
}
|
|
1198
|
+
.iui-breadcrumbs-item > :any-link{
|
|
1148
1199
|
text-decoration:underline;
|
|
1149
1200
|
}
|
|
1150
|
-
.iui-breadcrumbs-item
|
|
1201
|
+
.iui-breadcrumbs-item > :-webkit-any-link:hover{
|
|
1202
|
+
text-decoration:none;
|
|
1203
|
+
}
|
|
1204
|
+
.iui-breadcrumbs-item > :-moz-any-link:hover{
|
|
1205
|
+
text-decoration:none;
|
|
1206
|
+
}
|
|
1207
|
+
.iui-breadcrumbs-item > :any-link:hover{
|
|
1151
1208
|
text-decoration:none;
|
|
1152
1209
|
}
|
|
1153
1210
|
}
|
|
1154
|
-
.iui-theme-light .iui-breadcrumbs-item
|
|
1211
|
+
.iui-theme-light .iui-breadcrumbs-item > :-webkit-any-link, .iui-theme-dark .iui-breadcrumbs-item > :-webkit-any-link{
|
|
1212
|
+
text-decoration:none;
|
|
1213
|
+
}
|
|
1214
|
+
.iui-theme-light .iui-breadcrumbs-item > :-moz-any-link, .iui-theme-dark .iui-breadcrumbs-item > :-moz-any-link{
|
|
1215
|
+
text-decoration:none;
|
|
1216
|
+
}
|
|
1217
|
+
.iui-theme-light .iui-breadcrumbs-item > :any-link, .iui-theme-dark .iui-breadcrumbs-item > :any-link{
|
|
1155
1218
|
text-decoration:none;
|
|
1156
1219
|
}
|
|
1157
|
-
.iui-theme-light .iui-breadcrumbs-item
|
|
1220
|
+
.iui-theme-light .iui-breadcrumbs-item > :-webkit-any-link:hover, .iui-theme-dark .iui-breadcrumbs-item > :-webkit-any-link:hover{
|
|
1221
|
+
text-decoration:underline;
|
|
1222
|
+
}
|
|
1223
|
+
.iui-theme-light .iui-breadcrumbs-item > :-moz-any-link:hover, .iui-theme-dark .iui-breadcrumbs-item > :-moz-any-link:hover{
|
|
1224
|
+
text-decoration:underline;
|
|
1225
|
+
}
|
|
1226
|
+
.iui-theme-light .iui-breadcrumbs-item > :any-link:hover, .iui-theme-dark .iui-breadcrumbs-item > :any-link:hover{
|
|
1227
|
+
text-decoration:underline;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
.iui-theme-light-hc .iui-breadcrumbs-item > :-webkit-any-link, .iui-theme-dark-hc .iui-breadcrumbs-item > :-webkit-any-link{
|
|
1231
|
+
text-decoration:underline;
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
.iui-theme-light-hc .iui-breadcrumbs-item > :-moz-any-link, .iui-theme-dark-hc .iui-breadcrumbs-item > :-moz-any-link{
|
|
1158
1235
|
text-decoration:underline;
|
|
1159
1236
|
}
|
|
1160
1237
|
|
|
1161
|
-
.iui-theme-light-hc .iui-breadcrumbs-item
|
|
1238
|
+
.iui-theme-light-hc .iui-breadcrumbs-item > :any-link, .iui-theme-dark-hc .iui-breadcrumbs-item > :any-link{
|
|
1162
1239
|
text-decoration:underline;
|
|
1163
1240
|
}
|
|
1164
|
-
.iui-theme-light-hc .iui-breadcrumbs-item
|
|
1241
|
+
.iui-theme-light-hc .iui-breadcrumbs-item > :-webkit-any-link:hover, .iui-theme-dark-hc .iui-breadcrumbs-item > :-webkit-any-link:hover{
|
|
1242
|
+
text-decoration:none;
|
|
1243
|
+
}
|
|
1244
|
+
.iui-theme-light-hc .iui-breadcrumbs-item > :-moz-any-link:hover, .iui-theme-dark-hc .iui-breadcrumbs-item > :-moz-any-link:hover{
|
|
1245
|
+
text-decoration:none;
|
|
1246
|
+
}
|
|
1247
|
+
.iui-theme-light-hc .iui-breadcrumbs-item > :any-link:hover, .iui-theme-dark-hc .iui-breadcrumbs-item > :any-link:hover{
|
|
1165
1248
|
text-decoration:none;
|
|
1166
1249
|
}
|
|
1167
1250
|
|
|
1168
|
-
.iui-breadcrumbs-item
|
|
1251
|
+
.iui-breadcrumbs-item > :-webkit-any-link:focus{
|
|
1252
|
+
outline-offset:-1px;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
.iui-breadcrumbs-item > :-moz-any-link:focus{
|
|
1256
|
+
outline-offset:-1px;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
.iui-breadcrumbs-item > :any-link:focus{
|
|
1260
|
+
outline-offset:-1px;
|
|
1261
|
+
}
|
|
1262
|
+
.iui-breadcrumbs-item .iui-button.iui-button{
|
|
1169
1263
|
border-color:transparent;
|
|
1170
1264
|
background-color:transparent;
|
|
1171
1265
|
padding:0 8px;
|
|
1172
1266
|
height:38px;
|
|
1173
1267
|
gap:8px;
|
|
1174
|
-
|
|
1268
|
+
border:none;
|
|
1175
1269
|
}
|
|
1176
|
-
.iui-breadcrumbs-item .iui-button > .iui-button-icon:only-child{
|
|
1270
|
+
.iui-breadcrumbs-item .iui-button.iui-button > .iui-button-icon:only-child{
|
|
1177
1271
|
margin-left:3px;
|
|
1178
1272
|
margin-right:3px;
|
|
1179
1273
|
}
|
|
1180
|
-
.iui-breadcrumbs-item .iui-button:hover{
|
|
1274
|
+
.iui-breadcrumbs-item .iui-button.iui-button:hover{
|
|
1181
1275
|
background-color:rgba(0, 0, 0, 0.1);
|
|
1182
1276
|
border-color:transparent;
|
|
1183
1277
|
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
|
|
1184
1278
|
border-color:transparent;
|
|
1185
1279
|
}
|
|
1186
|
-
.iui-breadcrumbs-item .iui-button.iui-active{
|
|
1280
|
+
.iui-breadcrumbs-item .iui-button.iui-button.iui-active{
|
|
1187
1281
|
background-color:rgba(0, 138, 224, 0.1);
|
|
1188
1282
|
color:#008ae0;
|
|
1189
1283
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
1190
1284
|
color:var(--iui-color-foreground-primary);
|
|
1191
1285
|
border-color:transparent;
|
|
1192
1286
|
}
|
|
1193
|
-
.iui-breadcrumbs-item .iui-button[disabled], .iui-breadcrumbs-item .iui-button:disabled{
|
|
1287
|
+
.iui-breadcrumbs-item .iui-button.iui-button[disabled], .iui-breadcrumbs-item .iui-button.iui-button:disabled{
|
|
1194
1288
|
cursor:not-allowed;
|
|
1195
1289
|
background:#edeff2;
|
|
1196
1290
|
border-color:#edeff2;
|
|
@@ -1203,55 +1297,215 @@ html.iui-theme-dark-hc{
|
|
|
1203
1297
|
background-color:transparent;
|
|
1204
1298
|
border-color:transparent;
|
|
1205
1299
|
}
|
|
1206
|
-
.iui-breadcrumbs-item .iui-button[disabled].iui-active, .iui-breadcrumbs-item .iui-button:disabled.iui-active{
|
|
1300
|
+
.iui-breadcrumbs-item .iui-button.iui-button[disabled].iui-active, .iui-breadcrumbs-item .iui-button.iui-button:disabled.iui-active{
|
|
1207
1301
|
background-color:rgba(0, 0, 0, 0.05);
|
|
1208
1302
|
background-color:rgba(var(--iui-color-foreground-body-rgb), 0.05);
|
|
1209
1303
|
}
|
|
1210
|
-
.iui-breadcrumbs-item
|
|
1304
|
+
.iui-breadcrumbs-item .iui-button.iui-button:focus-visible{
|
|
1305
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1306
|
+
outline-offset:-1px;
|
|
1307
|
+
}
|
|
1308
|
+
@supports not selector(*:focus-visible){
|
|
1309
|
+
.iui-breadcrumbs-item .iui-button.iui-button:focus{
|
|
1310
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1311
|
+
outline-offset:-1px;
|
|
1312
|
+
}
|
|
1313
|
+
}
|
|
1211
1314
|
.iui-breadcrumbs-item .iui-button-label{
|
|
1212
1315
|
overflow:hidden;
|
|
1213
1316
|
white-space:nowrap;
|
|
1214
1317
|
text-overflow:ellipsis;
|
|
1215
1318
|
}
|
|
1216
|
-
.iui-breadcrumbs-item:not(.iui-current)
|
|
1319
|
+
.iui-breadcrumbs-item .iui-button:not([aria-current]), .iui-breadcrumbs-item .iui-button:not([aria-current]):hover, .iui-breadcrumbs-item .iui-button:not([aria-current]):active{
|
|
1320
|
+
--_iui-button-text-color:var(--iui-color-foreground-primary);
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
.iui-breadcrumbs-text{
|
|
1324
|
+
padding:0 8px;
|
|
1325
|
+
overflow:hidden;
|
|
1326
|
+
white-space:nowrap;
|
|
1327
|
+
text-overflow:ellipsis;
|
|
1328
|
+
}
|
|
1329
|
+
a.iui-breadcrumbs-text{
|
|
1217
1330
|
color:#008ae0;
|
|
1331
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1218
1332
|
color:var(--iui-color-foreground-primary);
|
|
1333
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1334
|
+
border-radius:3px;
|
|
1335
|
+
box-sizing:border-box;
|
|
1336
|
+
cursor:pointer;
|
|
1337
|
+
text-decoration:none;
|
|
1338
|
+
}
|
|
1339
|
+
a.iui-breadcrumbs-text:focus-visible{
|
|
1340
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1341
|
+
outline-offset:1px;
|
|
1219
1342
|
}
|
|
1220
|
-
|
|
1343
|
+
@supports not selector(*:focus-visible){
|
|
1344
|
+
a.iui-breadcrumbs-text:focus{
|
|
1345
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1346
|
+
outline-offset:1px;
|
|
1347
|
+
}
|
|
1348
|
+
}
|
|
1349
|
+
a.iui-breadcrumbs-text:hover{
|
|
1221
1350
|
color:#006bad;
|
|
1222
1351
|
color:var(--iui-color-foreground-primary-overlay);
|
|
1223
1352
|
}
|
|
1353
|
+
a.iui-breadcrumbs-text:hover{
|
|
1354
|
+
text-decoration:underline;
|
|
1355
|
+
}
|
|
1356
|
+
@media (prefers-contrast: more){
|
|
1357
|
+
a.iui-breadcrumbs-text{
|
|
1358
|
+
text-decoration:underline;
|
|
1359
|
+
}
|
|
1360
|
+
a.iui-breadcrumbs-text:hover{
|
|
1361
|
+
text-decoration:none;
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
.iui-theme-light a.iui-breadcrumbs-text, .iui-theme-dark a.iui-breadcrumbs-text{
|
|
1365
|
+
text-decoration:none;
|
|
1366
|
+
}
|
|
1367
|
+
.iui-theme-light a.iui-breadcrumbs-text:hover, .iui-theme-dark a.iui-breadcrumbs-text:hover{
|
|
1368
|
+
text-decoration:underline;
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
.iui-theme-light-hc a.iui-breadcrumbs-text, .iui-theme-dark-hc a.iui-breadcrumbs-text{
|
|
1372
|
+
text-decoration:underline;
|
|
1373
|
+
}
|
|
1374
|
+
.iui-theme-light-hc a.iui-breadcrumbs-text:hover, .iui-theme-dark-hc a.iui-breadcrumbs-text:hover{
|
|
1375
|
+
text-decoration:none;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
a.iui-breadcrumbs-text:focus{
|
|
1379
|
+
outline-offset:-1px;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.iui-breadcrumbs-button{
|
|
1383
|
+
--_iui-button-active-stripe-inset:initial;
|
|
1384
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
1385
|
+
margin:0;
|
|
1386
|
+
padding:0;
|
|
1387
|
+
border:none;
|
|
1388
|
+
vertical-align:baseline;
|
|
1389
|
+
font-family:inherit;
|
|
1390
|
+
display:inline-flex;
|
|
1391
|
+
align-items:center;
|
|
1392
|
+
vertical-align:middle;
|
|
1393
|
+
justify-content:center;
|
|
1394
|
+
position:relative;
|
|
1395
|
+
box-sizing:border-box;
|
|
1396
|
+
border-radius:3px;
|
|
1397
|
+
line-height:22px;
|
|
1398
|
+
box-shadow:none;
|
|
1399
|
+
font-size:14px;
|
|
1400
|
+
font-weight:400;
|
|
1401
|
+
text-decoration:none;
|
|
1402
|
+
-webkit-user-select:none;
|
|
1403
|
+
-moz-user-select:none;
|
|
1404
|
+
-ms-user-select:none;
|
|
1405
|
+
user-select:none;
|
|
1406
|
+
cursor:pointer;
|
|
1407
|
+
white-space:nowrap;
|
|
1408
|
+
border:1px solid transparent;
|
|
1409
|
+
color:rgba(0, 0, 0, 0.8);
|
|
1410
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
1411
|
+
color:var(--_iui-button-text-color);
|
|
1412
|
+
border-color:transparent;
|
|
1413
|
+
background-color:transparent;
|
|
1414
|
+
padding:0 8px;
|
|
1415
|
+
height:38px;
|
|
1416
|
+
gap:8px;
|
|
1417
|
+
padding:0;
|
|
1418
|
+
border:none;
|
|
1419
|
+
color:#008ae0;
|
|
1420
|
+
color:var(--iui-color-foreground-primary);
|
|
1421
|
+
}
|
|
1422
|
+
@media (prefers-reduced-motion: no-preference){
|
|
1423
|
+
.iui-breadcrumbs-button{
|
|
1424
|
+
transition:color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
|
|
1425
|
+
}
|
|
1426
|
+
}
|
|
1427
|
+
.iui-breadcrumbs-button:hover{
|
|
1428
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
1429
|
+
text-decoration:none;
|
|
1430
|
+
}
|
|
1431
|
+
.iui-breadcrumbs-button:focus-visible{
|
|
1432
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1433
|
+
outline-offset:-1px;
|
|
1434
|
+
}
|
|
1435
|
+
@supports not selector(*:focus-visible){
|
|
1436
|
+
.iui-breadcrumbs-button:focus{
|
|
1437
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1438
|
+
outline-offset:-1px;
|
|
1439
|
+
}
|
|
1440
|
+
}
|
|
1441
|
+
.iui-breadcrumbs-button[disabled], .iui-breadcrumbs-button:disabled{
|
|
1442
|
+
cursor:not-allowed;
|
|
1443
|
+
background:#edeff2;
|
|
1444
|
+
border-color:#edeff2;
|
|
1445
|
+
color:rgba(0, 0, 0, 0.2);
|
|
1446
|
+
background:var(--iui-color-background-disabled);
|
|
1447
|
+
border-color:var(--iui-color-background-disabled);
|
|
1448
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
1449
|
+
}
|
|
1450
|
+
.iui-breadcrumbs-button > .iui-button-icon:only-child{
|
|
1451
|
+
margin-left:3px;
|
|
1452
|
+
margin-right:3px;
|
|
1453
|
+
}
|
|
1454
|
+
.iui-breadcrumbs-button:hover{
|
|
1455
|
+
background-color:rgba(0, 0, 0, 0.1);
|
|
1456
|
+
border-color:transparent;
|
|
1457
|
+
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
|
|
1458
|
+
border-color:transparent;
|
|
1459
|
+
}
|
|
1460
|
+
.iui-breadcrumbs-button.iui-active{
|
|
1461
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
1462
|
+
color:#008ae0;
|
|
1463
|
+
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
1464
|
+
color:var(--iui-color-foreground-primary);
|
|
1465
|
+
border-color:transparent;
|
|
1466
|
+
}
|
|
1467
|
+
.iui-breadcrumbs-button[disabled], .iui-breadcrumbs-button:disabled{
|
|
1468
|
+
cursor:not-allowed;
|
|
1469
|
+
background:#edeff2;
|
|
1470
|
+
border-color:#edeff2;
|
|
1471
|
+
color:rgba(0, 0, 0, 0.2);
|
|
1472
|
+
background:var(--iui-color-background-disabled);
|
|
1473
|
+
border-color:var(--iui-color-background-disabled);
|
|
1474
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
1475
|
+
background-color:transparent;
|
|
1476
|
+
border-color:transparent;
|
|
1477
|
+
background-color:transparent;
|
|
1478
|
+
border-color:transparent;
|
|
1479
|
+
}
|
|
1480
|
+
.iui-breadcrumbs-button[disabled].iui-active, .iui-breadcrumbs-button:disabled.iui-active{
|
|
1481
|
+
background-color:rgba(0, 0, 0, 0.05);
|
|
1482
|
+
background-color:rgba(var(--iui-color-foreground-body-rgb), 0.05);
|
|
1483
|
+
}
|
|
1484
|
+
.iui-breadcrumbs-button[aria-current]{
|
|
1485
|
+
color:rgba(0, 0, 0, 0.8);
|
|
1486
|
+
color:var(--iui-text-color);
|
|
1487
|
+
}
|
|
1224
1488
|
|
|
1225
1489
|
.iui-breadcrumbs-separator{
|
|
1226
1490
|
display:flex;
|
|
1491
|
+
margin:0 2px;
|
|
1227
1492
|
}
|
|
1228
1493
|
.iui-breadcrumbs-separator svg{
|
|
1229
|
-
fill:rgba(0, 0, 0, 0.4);
|
|
1230
|
-
fill:var(--iui-icons-color);
|
|
1231
|
-
display:inline-flex;
|
|
1232
1494
|
width:12px;
|
|
1233
1495
|
height:12px;
|
|
1234
1496
|
display:flex;
|
|
1497
|
+
fill:rgba(0, 0, 0, 0.4);
|
|
1498
|
+
fill:var(--iui-icons-color);
|
|
1235
1499
|
}
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
}
|
|
1240
|
-
.iui-breadcrumbs-separator svg.iui-positive{
|
|
1241
|
-
fill:#53a21a;
|
|
1242
|
-
fill:var(--iui-icons-color-positive);
|
|
1243
|
-
}
|
|
1244
|
-
.iui-breadcrumbs-separator svg.iui-warning{
|
|
1245
|
-
fill:#f18d13;
|
|
1246
|
-
fill:var(--iui-icons-color-warning);
|
|
1247
|
-
}
|
|
1248
|
-
.iui-breadcrumbs-separator svg.iui-negative{
|
|
1249
|
-
fill:#d10a0a;
|
|
1250
|
-
fill:var(--iui-icons-color-negative);
|
|
1500
|
+
@media (forced-colors: active){
|
|
1501
|
+
.iui-breadcrumbs-separator svg{
|
|
1502
|
+
fill:CanvasText;
|
|
1503
|
+
}
|
|
1251
1504
|
}
|
|
1252
1505
|
|
|
1253
1506
|
.iui-button{
|
|
1254
1507
|
--_iui-button-active-stripe-inset:initial;
|
|
1508
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
1255
1509
|
margin:0;
|
|
1256
1510
|
padding:0;
|
|
1257
1511
|
border:none;
|
|
@@ -1278,6 +1532,7 @@ html.iui-theme-dark-hc{
|
|
|
1278
1532
|
border:1px solid transparent;
|
|
1279
1533
|
color:rgba(0, 0, 0, 0.8);
|
|
1280
1534
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
1535
|
+
color:var(--_iui-button-text-color);
|
|
1281
1536
|
padding:0 16px;
|
|
1282
1537
|
height:38px;
|
|
1283
1538
|
gap:8px;
|
|
@@ -1291,9 +1546,8 @@ html.iui-theme-dark-hc{
|
|
|
1291
1546
|
}
|
|
1292
1547
|
}
|
|
1293
1548
|
.iui-button:hover{
|
|
1549
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
1294
1550
|
text-decoration:none;
|
|
1295
|
-
color:black;
|
|
1296
|
-
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
1297
1551
|
}
|
|
1298
1552
|
.iui-button:focus-visible{
|
|
1299
1553
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -1326,10 +1580,8 @@ html.iui-theme-dark-hc{
|
|
|
1326
1580
|
.iui-button.iui-default{
|
|
1327
1581
|
background-color:white;
|
|
1328
1582
|
border-color:rgba(0, 0, 0, 0.4);
|
|
1329
|
-
color:rgba(0, 0, 0, 0.8);
|
|
1330
1583
|
background-color:var(--iui-color-background-1);
|
|
1331
1584
|
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
1332
|
-
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
1333
1585
|
}
|
|
1334
1586
|
.iui-button.iui-default:focus-visible{
|
|
1335
1587
|
outline:2px solid var(--iui-color-foreground-primary);
|
|
@@ -1344,10 +1596,8 @@ html.iui-theme-dark-hc{
|
|
|
1344
1596
|
.iui-button.iui-default:hover, .iui-button.iui-default:active{
|
|
1345
1597
|
background-color:#f2f2f2;
|
|
1346
1598
|
border-color:black;
|
|
1347
|
-
color:black;
|
|
1348
1599
|
background-color:var(--iui-color-background-1-overlay);
|
|
1349
1600
|
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
1350
|
-
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
1351
1601
|
}
|
|
1352
1602
|
.iui-button.iui-default:hover .iui-notification-primary::before,
|
|
1353
1603
|
.iui-button.iui-default:hover .iui-notification-positive::before,
|
|
@@ -1390,12 +1640,14 @@ html.iui-theme-dark-hc{
|
|
|
1390
1640
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
1391
1641
|
}
|
|
1392
1642
|
.iui-button.iui-high-visibility{
|
|
1643
|
+
--_iui-button-text-color:var(--iui-color-foreground-accessory);
|
|
1393
1644
|
background-color:#008ae0;
|
|
1394
1645
|
border-color:#008ae0;
|
|
1395
1646
|
color:white;
|
|
1396
1647
|
background-color:var(--iui-color-background-primary);
|
|
1397
1648
|
border-color:var(--iui-color-background-primary);
|
|
1398
1649
|
color:var(--iui-color-foreground-accessory);
|
|
1650
|
+
color:var(--_iui-button-text-color);
|
|
1399
1651
|
}
|
|
1400
1652
|
.iui-button.iui-high-visibility:focus-visible{
|
|
1401
1653
|
outline:1px solid var(--iui-color-foreground-accessory);
|
|
@@ -1410,10 +1662,8 @@ html.iui-theme-dark-hc{
|
|
|
1410
1662
|
.iui-button.iui-high-visibility:hover, .iui-button.iui-high-visibility:active{
|
|
1411
1663
|
background-color:#006bad;
|
|
1412
1664
|
border-color:#006bad;
|
|
1413
|
-
color:white;
|
|
1414
1665
|
background-color:var(--iui-color-background-primary-overlay);
|
|
1415
1666
|
border-color:var(--iui-color-background-primary-overlay);
|
|
1416
|
-
color:var(--iui-color-foreground-accessory);
|
|
1417
1667
|
}
|
|
1418
1668
|
.iui-button.iui-high-visibility[disabled], .iui-button.iui-high-visibility:disabled{
|
|
1419
1669
|
cursor:not-allowed;
|
|
@@ -1425,12 +1675,14 @@ html.iui-theme-dark-hc{
|
|
|
1425
1675
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
1426
1676
|
}
|
|
1427
1677
|
.iui-button.iui-cta{
|
|
1678
|
+
--_iui-button-text-color:var(--iui-color-foreground-accessory);
|
|
1428
1679
|
background-color:#53a21a;
|
|
1429
1680
|
border-color:#53a21a;
|
|
1430
1681
|
color:white;
|
|
1431
1682
|
background-color:var(--iui-color-background-positive);
|
|
1432
1683
|
border-color:var(--iui-color-background-positive);
|
|
1433
1684
|
color:var(--iui-color-foreground-accessory);
|
|
1685
|
+
color:var(--_iui-button-text-color);
|
|
1434
1686
|
}
|
|
1435
1687
|
.iui-button.iui-cta:focus-visible{
|
|
1436
1688
|
outline:1px solid var(--iui-color-foreground-accessory);
|
|
@@ -1445,10 +1697,8 @@ html.iui-theme-dark-hc{
|
|
|
1445
1697
|
.iui-button.iui-cta:hover, .iui-button.iui-cta:active{
|
|
1446
1698
|
background-color:#3d7613;
|
|
1447
1699
|
border-color:#3d7613;
|
|
1448
|
-
color:white;
|
|
1449
1700
|
background-color:var(--iui-color-background-positive-overlay);
|
|
1450
1701
|
border-color:var(--iui-color-background-positive-overlay);
|
|
1451
|
-
color:var(--iui-color-foreground-accessory);
|
|
1452
1702
|
}
|
|
1453
1703
|
.iui-button.iui-cta[disabled], .iui-button.iui-cta:disabled{
|
|
1454
1704
|
cursor:not-allowed;
|
|
@@ -1460,12 +1710,14 @@ html.iui-theme-dark-hc{
|
|
|
1460
1710
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
1461
1711
|
}
|
|
1462
1712
|
.iui-button.iui-idea{
|
|
1713
|
+
--_iui-button-text-color:var(--iui-color-foreground-accessory);
|
|
1463
1714
|
background-color:#008ae0;
|
|
1464
1715
|
border-color:#008ae0;
|
|
1465
1716
|
color:white;
|
|
1466
1717
|
background-color:var(--iui-color-background-primary);
|
|
1467
1718
|
border-color:var(--iui-color-background-primary);
|
|
1468
1719
|
color:var(--iui-color-foreground-accessory);
|
|
1720
|
+
color:var(--_iui-button-text-color);
|
|
1469
1721
|
border-radius:22px;
|
|
1470
1722
|
box-shadow:0 9px 46px rgba(0, 0, 0, 0.25);
|
|
1471
1723
|
position:fixed;
|
|
@@ -1485,10 +1737,8 @@ html.iui-theme-dark-hc{
|
|
|
1485
1737
|
.iui-button.iui-idea:hover, .iui-button.iui-idea:active{
|
|
1486
1738
|
background-color:#006bad;
|
|
1487
1739
|
border-color:#006bad;
|
|
1488
|
-
color:white;
|
|
1489
1740
|
background-color:var(--iui-color-background-primary-overlay);
|
|
1490
1741
|
border-color:var(--iui-color-background-primary-overlay);
|
|
1491
|
-
color:var(--iui-color-foreground-accessory);
|
|
1492
1742
|
}
|
|
1493
1743
|
.iui-button.iui-idea[disabled], .iui-button.iui-idea:disabled{
|
|
1494
1744
|
cursor:not-allowed;
|
|
@@ -3094,12 +3344,12 @@ html.iui-theme-dark-hc{
|
|
|
3094
3344
|
background-color:var(--iui-text-color-muted);
|
|
3095
3345
|
}
|
|
3096
3346
|
.iui-legal-footer > ul > li > a{
|
|
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>");
|
|
3098
3347
|
color:#008ae0;
|
|
3099
3348
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
3100
3349
|
color:var(--iui-color-foreground-primary);
|
|
3101
3350
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
3102
3351
|
border-radius:3px;
|
|
3352
|
+
box-sizing:border-box;
|
|
3103
3353
|
cursor:pointer;
|
|
3104
3354
|
text-decoration:none;
|
|
3105
3355
|
}
|
|
@@ -3117,22 +3367,6 @@ html.iui-theme-dark-hc{
|
|
|
3117
3367
|
color:#006bad;
|
|
3118
3368
|
color:var(--iui-color-foreground-primary-overlay);
|
|
3119
3369
|
}
|
|
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
3370
|
.iui-legal-footer > ul > li > a:hover{
|
|
3137
3371
|
text-decoration:underline;
|
|
3138
3372
|
}
|
|
@@ -3225,7 +3459,6 @@ html.iui-theme-dark-hc{
|
|
|
3225
3459
|
height:100%;
|
|
3226
3460
|
border-radius:0;
|
|
3227
3461
|
overflow:hidden;
|
|
3228
|
-
padding-right:8px;
|
|
3229
3462
|
}
|
|
3230
3463
|
.iui-page-header .iui-header-button.iui-header-button:focus{
|
|
3231
3464
|
box-shadow:none;
|
|
@@ -3336,6 +3569,9 @@ html.iui-theme-dark-hc{
|
|
|
3336
3569
|
padding:0;
|
|
3337
3570
|
}
|
|
3338
3571
|
|
|
3572
|
+
.iui-page-header .iui-header-dropdown-button.iui-header-dropdown-button{
|
|
3573
|
+
padding-right:8px;
|
|
3574
|
+
}
|
|
3339
3575
|
.iui-page-header .iui-header-split-button{
|
|
3340
3576
|
max-width:25vw;
|
|
3341
3577
|
}
|
|
@@ -3355,7 +3591,6 @@ html.iui-theme-dark-hc{
|
|
|
3355
3591
|
height:100%;
|
|
3356
3592
|
border-radius:0;
|
|
3357
3593
|
overflow:hidden;
|
|
3358
|
-
padding-right:8px;
|
|
3359
3594
|
padding:0 4px;
|
|
3360
3595
|
}
|
|
3361
3596
|
.iui-page-header .iui-header-split-button .iui-button:focus{
|
|
@@ -4225,8 +4460,8 @@ div.iui-input-container.iui-inline-label{
|
|
|
4225
4460
|
transition:background 0s;
|
|
4226
4461
|
}
|
|
4227
4462
|
.iui-input-container.iui-inline-icon > .iui-input-icon.iui-actionable svg{
|
|
4228
|
-
fill:rgba(0, 0, 0, 0.
|
|
4229
|
-
fill:var(--iui-icons-color);
|
|
4463
|
+
fill:rgba(0, 0, 0, 0.8);
|
|
4464
|
+
fill:var(--iui-icons-color-actionable);
|
|
4230
4465
|
transition:transform 0.2s ease-out;
|
|
4231
4466
|
}
|
|
4232
4467
|
.iui-input-container.iui-inline-icon > .iui-input-icon.iui-actionable.iui-open svg{
|
|
@@ -4826,8 +5061,8 @@ label.iui-input-label.iui-disabled{
|
|
|
4826
5061
|
transition:background 0s;
|
|
4827
5062
|
}
|
|
4828
5063
|
.iui-end-icon.iui-actionable svg{
|
|
4829
|
-
fill:rgba(0, 0, 0, 0.
|
|
4830
|
-
fill:var(--iui-icons-color);
|
|
5064
|
+
fill:rgba(0, 0, 0, 0.8);
|
|
5065
|
+
fill:var(--iui-icons-color-actionable);
|
|
4831
5066
|
transition:transform 0.2s ease-out;
|
|
4832
5067
|
}
|
|
4833
5068
|
.iui-end-icon.iui-actionable.iui-open svg{
|
|
@@ -4967,6 +5202,12 @@ label.iui-input-label.iui-disabled{
|
|
|
4967
5202
|
outline-offset:-1px;
|
|
4968
5203
|
}
|
|
4969
5204
|
}
|
|
5205
|
+
.iui-checkbox:disabled{
|
|
5206
|
+
--_iui-checkbox-svg-color:var(--iui-icons-color-actionable-disabled);
|
|
5207
|
+
--_iui-checkbox-border-color:var(--iui-color-background-border);
|
|
5208
|
+
--_iui-checkbox-background-color:var(--iui-color-background-disabled);
|
|
5209
|
+
cursor:not-allowed;
|
|
5210
|
+
}
|
|
4970
5211
|
.iui-checkbox.iui-checkbox-visibility{
|
|
4971
5212
|
--_iui-checkbox-checkmark-svg:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8 2.99051a8.81883 8.81883 0 0 0 -8 4.95062 8.74664 8.74664 0 0 0 8 5.06836 8.63266 8.63266 0 0 0 8-5.06836 8.83631 8.83631 0 0 0 -8-4.95062zm-1.31445 1.86981a1.47663 1.47663 0 1 1 -1.47663 1.47668 1.47665 1.47665 0 0 1 1.47663-1.47668zm1.31445 6.64917a7.17486 7.17486 0 0 1 -6.30475-3.55237 7.4952 7.4952 0 0 1 2.81475-2.6336 3.83956 3.83956 0 1 0 6.98126.00244 7.522 7.522 0 0 1 2.81774 2.63916 7.09785 7.09785 0 0 1 -6.309 3.54437z" /></svg>');
|
|
4972
5213
|
--_iui-checkbox-indeterminate-svg:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8 3v7.9a4.01179 4.01179 0 0 0 4-4 6.7509 6.7509 0 0 0 -.2-1.4l.1.1a6.89429 6.89429 0 0 1 2.4 2.4 8.39088 8.39088 0 0 1 -2.3 2.3 6.89412 6.89412 0 0 1 -3.9 1.2c-.03345 0-.06653-.00677-.1-.0072v1.5072a8.90686 8.90686 0 0 0 8-5 8.90686 8.90686 0 0 0 -8-5z" opacity=".33" /><path d="m8 0a1 1 0 0 0 -1 1v2.07135a8.91637 8.91637 0 0 0 -7 4.92865 8.91637 8.91637 0 0 0 7 4.92865v2.07135a1 1 0 0 0 2 0v-14a1 1 0 0 0 -1-1zm-1.5 4.9a1.55426 1.55426 0 0 1 .5.087v2.81451a1.40746 1.40746 0 0 1 -.5.09849 1.538 1.538 0 0 1 -1.5-1.5 1.53794 1.53794 0 0 1 1.5-1.5zm-2.3 5.4a6.97279 6.97279 0 0 1 -2.5-2.3 6.89429 6.89429 0 0 1 2.4-2.4c.1 0 .1-.1.2-.1a3.194 3.194 0 0 0 -.3 1.4 4.0047 4.0047 0 0 0 3 3.857v.65289a6.37491 6.37491 0 0 1 -2.8-1.10989z" /></svg>');
|
|
@@ -4981,11 +5222,9 @@ label.iui-input-label.iui-disabled{
|
|
|
4981
5222
|
--_iui-checkbox-border-color:transparent;
|
|
4982
5223
|
--_iui-checkbox-background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
|
|
4983
5224
|
}
|
|
4984
|
-
.iui-checkbox:disabled{
|
|
5225
|
+
.iui-checkbox.iui-checkbox-visibility:where(:disabled){
|
|
4985
5226
|
--_iui-checkbox-svg-color:var(--iui-icons-color-actionable-disabled);
|
|
4986
|
-
--_iui-checkbox-border-color:var(--iui-color-background-disabled);
|
|
4987
5227
|
--_iui-checkbox-background-color:var(--iui-color-background-disabled);
|
|
4988
|
-
cursor:not-allowed;
|
|
4989
5228
|
}
|
|
4990
5229
|
.iui-checkbox.iui-loading{
|
|
4991
5230
|
--_iui-checkbox-border-color:transparent;
|
|
@@ -5122,6 +5361,12 @@ label.iui-input-label.iui-disabled{
|
|
|
5122
5361
|
outline-offset:-1px;
|
|
5123
5362
|
}
|
|
5124
5363
|
}
|
|
5364
|
+
.iui-radio:disabled{
|
|
5365
|
+
--_iui-checkbox-svg-color:var(--iui-icons-color-actionable-disabled);
|
|
5366
|
+
--_iui-checkbox-border-color:var(--iui-color-background-border);
|
|
5367
|
+
--_iui-checkbox-background-color:var(--iui-color-background-disabled);
|
|
5368
|
+
cursor:not-allowed;
|
|
5369
|
+
}
|
|
5125
5370
|
.iui-radio.iui-checkbox-visibility{
|
|
5126
5371
|
--_iui-checkbox-checkmark-svg:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8 2.99051a8.81883 8.81883 0 0 0 -8 4.95062 8.74664 8.74664 0 0 0 8 5.06836 8.63266 8.63266 0 0 0 8-5.06836 8.83631 8.83631 0 0 0 -8-4.95062zm-1.31445 1.86981a1.47663 1.47663 0 1 1 -1.47663 1.47668 1.47665 1.47665 0 0 1 1.47663-1.47668zm1.31445 6.64917a7.17486 7.17486 0 0 1 -6.30475-3.55237 7.4952 7.4952 0 0 1 2.81475-2.6336 3.83956 3.83956 0 1 0 6.98126.00244 7.522 7.522 0 0 1 2.81774 2.63916 7.09785 7.09785 0 0 1 -6.309 3.54437z" /></svg>');
|
|
5127
5372
|
--_iui-checkbox-indeterminate-svg:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8 3v7.9a4.01179 4.01179 0 0 0 4-4 6.7509 6.7509 0 0 0 -.2-1.4l.1.1a6.89429 6.89429 0 0 1 2.4 2.4 8.39088 8.39088 0 0 1 -2.3 2.3 6.89412 6.89412 0 0 1 -3.9 1.2c-.03345 0-.06653-.00677-.1-.0072v1.5072a8.90686 8.90686 0 0 0 8-5 8.90686 8.90686 0 0 0 -8-5z" opacity=".33" /><path d="m8 0a1 1 0 0 0 -1 1v2.07135a8.91637 8.91637 0 0 0 -7 4.92865 8.91637 8.91637 0 0 0 7 4.92865v2.07135a1 1 0 0 0 2 0v-14a1 1 0 0 0 -1-1zm-1.5 4.9a1.55426 1.55426 0 0 1 .5.087v2.81451a1.40746 1.40746 0 0 1 -.5.09849 1.538 1.538 0 0 1 -1.5-1.5 1.53794 1.53794 0 0 1 1.5-1.5zm-2.3 5.4a6.97279 6.97279 0 0 1 -2.5-2.3 6.89429 6.89429 0 0 1 2.4-2.4c.1 0 .1-.1.2-.1a3.194 3.194 0 0 0 -.3 1.4 4.0047 4.0047 0 0 0 3 3.857v.65289a6.37491 6.37491 0 0 1 -2.8-1.10989z" /></svg>');
|
|
@@ -5136,11 +5381,9 @@ label.iui-input-label.iui-disabled{
|
|
|
5136
5381
|
--_iui-checkbox-border-color:transparent;
|
|
5137
5382
|
--_iui-checkbox-background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
|
|
5138
5383
|
}
|
|
5139
|
-
.iui-radio:disabled{
|
|
5384
|
+
.iui-radio.iui-checkbox-visibility:where(:disabled){
|
|
5140
5385
|
--_iui-checkbox-svg-color:var(--iui-icons-color-actionable-disabled);
|
|
5141
|
-
--_iui-checkbox-border-color:var(--iui-color-background-disabled);
|
|
5142
5386
|
--_iui-checkbox-background-color:var(--iui-color-background-disabled);
|
|
5143
|
-
cursor:not-allowed;
|
|
5144
5387
|
}
|
|
5145
5388
|
.iui-radio.iui-loading{
|
|
5146
5389
|
--_iui-checkbox-border-color:transparent;
|
|
@@ -5149,169 +5392,11 @@ label.iui-input-label.iui-disabled{
|
|
|
5149
5392
|
position:absolute;
|
|
5150
5393
|
cursor:wait;
|
|
5151
5394
|
}
|
|
5152
|
-
.iui-radio:checked{
|
|
5153
|
-
--_iui-checkbox-mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" ><circle cx="8" cy="8" r="4" /></svg>');
|
|
5154
|
-
}
|
|
5155
|
-
.iui-radio:not(:checked), .iui-radio:indeterminate{
|
|
5156
|
-
--_iui-checkbox-mask-image:var(--_iui-checkbox-unchecked-svg);
|
|
5157
|
-
}
|
|
5158
|
-
|
|
5159
|
-
.iui-radio-tile-container{
|
|
5160
|
-
display:inline-flex;
|
|
5161
|
-
flex-wrap:wrap;
|
|
5162
|
-
width:-webkit-fit-content;
|
|
5163
|
-
width:-moz-fit-content;
|
|
5164
|
-
width:fit-content;
|
|
5165
|
-
-webkit-user-select:none;
|
|
5166
|
-
-moz-user-select:none;
|
|
5167
|
-
-ms-user-select:none;
|
|
5168
|
-
user-select:none;
|
|
5169
|
-
position:relative;
|
|
5170
|
-
z-index:0;
|
|
5171
|
-
}
|
|
5172
|
-
.iui-radio-tile-container > label{
|
|
5173
|
-
cursor:pointer;
|
|
5174
|
-
}
|
|
5175
|
-
.iui-radio-tile-container > label > input{
|
|
5176
|
-
width:0;
|
|
5177
|
-
height:0;
|
|
5178
|
-
-webkit-appearance:none;
|
|
5179
|
-
-moz-appearance:none;
|
|
5180
|
-
appearance:none;
|
|
5181
|
-
opacity:0;
|
|
5182
|
-
position:absolute;
|
|
5183
|
-
}
|
|
5184
|
-
.iui-radio-tile-container > label > .iui-radio-tile{
|
|
5185
|
-
width:160px;
|
|
5186
|
-
height:100%;
|
|
5187
|
-
box-sizing:border-box;
|
|
5188
|
-
padding:8px;
|
|
5189
|
-
position:relative;
|
|
5190
|
-
z-index:1;
|
|
5191
|
-
border:1px solid rgba(0, 0, 0, 0.4);
|
|
5192
|
-
background-color:white;
|
|
5193
|
-
border:1px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
5194
|
-
background-color:var(--iui-color-background-1);
|
|
5195
|
-
}
|
|
5196
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5197
|
-
.iui-radio-tile-container > label > .iui-radio-tile{
|
|
5198
|
-
transition:border-color 0.2s ease-out;
|
|
5199
|
-
}
|
|
5200
|
-
}
|
|
5201
|
-
.iui-radio-tile-container > label > .iui-radio-tile > .iui-icon{
|
|
5202
|
-
width:32px;
|
|
5203
|
-
height:32px;
|
|
5204
|
-
display:block;
|
|
5205
|
-
margin:0 auto;
|
|
5206
|
-
margin-top:6px;
|
|
5207
|
-
margin-bottom:11px;
|
|
5208
|
-
fill:rgba(0, 0, 0, 0.4);
|
|
5209
|
-
fill:var(--iui-icons-color);
|
|
5210
|
-
}
|
|
5211
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5212
|
-
.iui-radio-tile-container > label > .iui-radio-tile > .iui-icon{
|
|
5213
|
-
transition:fill 0.2s ease-out;
|
|
5214
|
-
}
|
|
5215
|
-
}
|
|
5216
|
-
.iui-radio-tile-container > label > .iui-radio-tile > .iui-checkmark{
|
|
5217
|
-
display:none;
|
|
5218
|
-
width:16px;
|
|
5219
|
-
height:16px;
|
|
5220
|
-
position:absolute;
|
|
5221
|
-
right:8px;
|
|
5222
|
-
fill:#008ae0;
|
|
5223
|
-
fill:var(--iui-icons-color-primary);
|
|
5224
|
-
}
|
|
5225
|
-
.iui-radio-tile-container > label > .iui-radio-tile > .iui-label{
|
|
5226
|
-
font-size:14px;
|
|
5227
|
-
font-weight:600;
|
|
5228
|
-
line-height:22px;
|
|
5229
|
-
text-align:center;
|
|
5230
|
-
color:rgba(0, 0, 0, 0.8);
|
|
5231
|
-
color:var(--iui-text-color);
|
|
5232
|
-
}
|
|
5233
|
-
.iui-radio-tile-container > label > .iui-radio-tile > .iui-description{
|
|
5234
|
-
font-size:12px;
|
|
5235
|
-
line-height:15px;
|
|
5236
|
-
text-align:center;
|
|
5237
|
-
color:rgba(0, 0, 0, 0.4);
|
|
5238
|
-
color:var(--iui-text-color-muted);
|
|
5239
|
-
}
|
|
5240
|
-
.iui-radio-tile-container > label:first-child > .iui-radio-tile{
|
|
5241
|
-
border-radius:3px 0 0 3px;
|
|
5242
|
-
}
|
|
5243
|
-
.iui-radio-tile-container > label:last-child > .iui-radio-tile{
|
|
5244
|
-
border-radius:0 3px 3px 0;
|
|
5245
|
-
}
|
|
5246
|
-
.iui-radio-tile-container > label:not(:first-child) > .iui-radio-tile{
|
|
5247
|
-
margin-left:-1px;
|
|
5248
|
-
}
|
|
5249
|
-
.iui-radio-tile-container > label input:enabled:focus ~ .iui-radio-tile{
|
|
5250
|
-
outline:2px solid #008ae0;
|
|
5251
|
-
outline-offset:-4px;
|
|
5252
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
5253
|
-
outline-offset:-4px;
|
|
5254
|
-
}
|
|
5255
|
-
.iui-radio-tile-container > label input:enabled:focus:not(:focus-visible) ~ .iui-radio-tile{
|
|
5256
|
-
outline:none;
|
|
5257
|
-
}
|
|
5258
|
-
.iui-radio-tile-container > label:hover > input:enabled:not(:checked) ~ .iui-radio-tile{
|
|
5259
|
-
z-index:2;
|
|
5260
|
-
border-color:rgba(0, 0, 0, 0.8);
|
|
5261
|
-
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
5262
|
-
}
|
|
5263
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5264
|
-
.iui-radio-tile-container > label:hover > input:enabled:not(:checked) ~ .iui-radio-tile{
|
|
5265
|
-
transition:border-color 0.2s ease-out;
|
|
5266
|
-
}
|
|
5267
|
-
}
|
|
5268
|
-
.iui-radio-tile-container > label:hover > input:enabled:not(:checked) ~ .iui-radio-tile > .iui-icon{
|
|
5269
|
-
fill:rgba(0, 0, 0, 0.8);
|
|
5270
|
-
fill:var(--iui-icons-color-actionable);
|
|
5271
|
-
}
|
|
5272
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5273
|
-
.iui-radio-tile-container > label:hover > input:enabled:not(:checked) ~ .iui-radio-tile > .iui-icon{
|
|
5274
|
-
transition:fill 0.2s ease-out;
|
|
5275
|
-
}
|
|
5276
|
-
}
|
|
5277
|
-
.iui-radio-tile-container > label input:checked ~ .iui-radio-tile{
|
|
5278
|
-
padding:7px;
|
|
5279
|
-
z-index:3;
|
|
5280
|
-
border:2px solid #008ae0;
|
|
5281
|
-
border:2px solid var(--iui-color-foreground-primary);
|
|
5282
|
-
}
|
|
5283
|
-
.iui-radio-tile-container > label input:checked ~ .iui-radio-tile > .iui-icon{
|
|
5284
|
-
fill:#008ae0;
|
|
5285
|
-
fill:var(--iui-icons-color-primary);
|
|
5286
|
-
}
|
|
5287
|
-
.iui-radio-tile-container > label input:checked ~ .iui-radio-tile > .iui-checkmark{
|
|
5288
|
-
display:inline-block;
|
|
5289
|
-
}
|
|
5290
|
-
.iui-radio-tile-container > label input:disabled ~ .iui-radio-tile{
|
|
5291
|
-
cursor:not-allowed;
|
|
5292
|
-
z-index:0;
|
|
5293
|
-
border-color:#edeff2;
|
|
5294
|
-
background-color:#edeff2;
|
|
5295
|
-
border-color:var(--iui-color-background-disabled);
|
|
5296
|
-
background-color:var(--iui-color-background-disabled);
|
|
5297
|
-
}
|
|
5298
|
-
.iui-radio-tile-container > label input:disabled ~ .iui-radio-tile > .iui-checkmark{
|
|
5299
|
-
fill:rgba(0, 0, 0, 0.2);
|
|
5300
|
-
fill:var(--iui-icons-color-actionable-disabled);
|
|
5301
|
-
}
|
|
5302
|
-
.iui-radio-tile-container > label input:disabled ~ .iui-radio-tile > .iui-icon{
|
|
5303
|
-
fill:rgba(0, 0, 0, 0.2);
|
|
5304
|
-
fill:var(--iui-icons-color-actionable-disabled);
|
|
5305
|
-
filter:grayscale(100%);
|
|
5306
|
-
}
|
|
5307
|
-
.iui-radio-tile-container > label input:disabled ~ .iui-radio-tile > .iui-label{
|
|
5308
|
-
color:rgba(0, 0, 0, 0.4);
|
|
5309
|
-
color:var(--iui-text-color-muted);
|
|
5310
|
-
}
|
|
5311
|
-
.iui-radio-tile-container > label input:disabled:checked ~ .iui-radio-tile{
|
|
5312
|
-
z-index:3;
|
|
5313
|
-
border:2px solid rgba(0, 0, 0, 0.4);
|
|
5314
|
-
border:2px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
5395
|
+
.iui-radio:checked{
|
|
5396
|
+
--_iui-checkbox-mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" ><circle cx="8" cy="8" r="4" /></svg>');
|
|
5397
|
+
}
|
|
5398
|
+
.iui-radio:not(:checked), .iui-radio:indeterminate{
|
|
5399
|
+
--_iui-checkbox-mask-image:var(--_iui-checkbox-unchecked-svg);
|
|
5315
5400
|
}
|
|
5316
5401
|
|
|
5317
5402
|
.iui-keyboard{
|
|
@@ -5602,6 +5687,27 @@ label.iui-input-label.iui-disabled{
|
|
|
5602
5687
|
fill:rgba(0, 0, 0, 0.2);
|
|
5603
5688
|
fill:var(--iui-icons-color-actionable-disabled);
|
|
5604
5689
|
}
|
|
5690
|
+
.iui-menu-item-skeleton{
|
|
5691
|
+
--iui-menu-item-content-skeleton-max-width:30%;
|
|
5692
|
+
cursor:auto;
|
|
5693
|
+
}
|
|
5694
|
+
.iui-menu-item-skeleton .iui-content{
|
|
5695
|
+
max-width:var(--iui-menu-item-content-skeleton-max-width);
|
|
5696
|
+
}
|
|
5697
|
+
.iui-menu-item-skeleton .iui-menu-label{
|
|
5698
|
+
width:100%;
|
|
5699
|
+
height:14px;
|
|
5700
|
+
vertical-align:middle;
|
|
5701
|
+
}
|
|
5702
|
+
.iui-menu-item-skeleton .iui-menu-description{
|
|
5703
|
+
width:70%;
|
|
5704
|
+
height:12px;
|
|
5705
|
+
vertical-align:middle;
|
|
5706
|
+
margin-top:4px;
|
|
5707
|
+
}
|
|
5708
|
+
.iui-menu-item-skeleton:hover{
|
|
5709
|
+
background-color:unset;
|
|
5710
|
+
}
|
|
5605
5711
|
|
|
5606
5712
|
.iui-menu-content{
|
|
5607
5713
|
padding:11px 13px;
|
|
@@ -6099,8 +6205,8 @@ label.iui-input-label.iui-disabled{
|
|
|
6099
6205
|
all:revert;
|
|
6100
6206
|
}
|
|
6101
6207
|
.iui-popover.tippy-box[data-reference-hidden]{
|
|
6102
|
-
visibility:
|
|
6103
|
-
pointer-events:
|
|
6208
|
+
visibility:hidden;
|
|
6209
|
+
pointer-events:none;
|
|
6104
6210
|
}
|
|
6105
6211
|
.iui-popover .tippy-content{
|
|
6106
6212
|
all:revert;
|
|
@@ -6496,6 +6602,220 @@ label.iui-input-label.iui-disabled{
|
|
|
6496
6602
|
animation:closeAnimation 0.2s linear;
|
|
6497
6603
|
}
|
|
6498
6604
|
|
|
6605
|
+
.iui-radio-tile{
|
|
6606
|
+
cursor:pointer;
|
|
6607
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.1);
|
|
6608
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
6609
|
+
}
|
|
6610
|
+
.iui-radio-tile:first-of-type > .iui-radio-tile-content{
|
|
6611
|
+
border-radius:3px 0 0 3px;
|
|
6612
|
+
}
|
|
6613
|
+
.iui-radio-tile:last-of-type > .iui-radio-tile-content{
|
|
6614
|
+
border-radius:0 3px 3px 0;
|
|
6615
|
+
}
|
|
6616
|
+
.iui-radio-tile:not(:first-of-type) > .iui-radio-tile-content{
|
|
6617
|
+
margin-left:-1px;
|
|
6618
|
+
}
|
|
6619
|
+
|
|
6620
|
+
.iui-radio-tile-content{
|
|
6621
|
+
width:160px;
|
|
6622
|
+
height:100%;
|
|
6623
|
+
box-sizing:border-box;
|
|
6624
|
+
padding:8px;
|
|
6625
|
+
position:relative;
|
|
6626
|
+
z-index:1;
|
|
6627
|
+
border:1px solid rgba(0, 0, 0, 0.4);
|
|
6628
|
+
background-color:white;
|
|
6629
|
+
border:1px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
6630
|
+
background-color:var(--iui-color-background-1);
|
|
6631
|
+
}
|
|
6632
|
+
@media (prefers-reduced-motion: no-preference){
|
|
6633
|
+
.iui-radio-tile-content{
|
|
6634
|
+
transition:border-color 0.2s ease-out;
|
|
6635
|
+
}
|
|
6636
|
+
}
|
|
6637
|
+
.iui-radio-tile-content:hover{
|
|
6638
|
+
z-index:2;
|
|
6639
|
+
border-color:rgba(0, 0, 0, 0.8);
|
|
6640
|
+
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
6641
|
+
}
|
|
6642
|
+
.iui-radio-tile-content:hover .iui-radio-tile-icon{
|
|
6643
|
+
fill:rgba(0, 0, 0, 0.8);
|
|
6644
|
+
fill:var(--iui-icons-color-actionable);
|
|
6645
|
+
}
|
|
6646
|
+
@media (forced-colors: active){
|
|
6647
|
+
.iui-radio-tile-content:hover .iui-radio-tile-icon{
|
|
6648
|
+
fill:CanvasText;
|
|
6649
|
+
}
|
|
6650
|
+
}
|
|
6651
|
+
|
|
6652
|
+
.iui-radio-tile-container{
|
|
6653
|
+
display:inline-flex;
|
|
6654
|
+
flex-wrap:wrap;
|
|
6655
|
+
-webkit-user-select:none;
|
|
6656
|
+
-moz-user-select:none;
|
|
6657
|
+
-ms-user-select:none;
|
|
6658
|
+
user-select:none;
|
|
6659
|
+
position:relative;
|
|
6660
|
+
z-index:0;
|
|
6661
|
+
}
|
|
6662
|
+
|
|
6663
|
+
.iui-radio-tile-input{
|
|
6664
|
+
width:0;
|
|
6665
|
+
height:0;
|
|
6666
|
+
-webkit-appearance:none;
|
|
6667
|
+
-moz-appearance:none;
|
|
6668
|
+
appearance:none;
|
|
6669
|
+
opacity:0;
|
|
6670
|
+
position:absolute;
|
|
6671
|
+
}
|
|
6672
|
+
.iui-radio-tile-input:focus-visible + *{
|
|
6673
|
+
outline-offset:-4px;
|
|
6674
|
+
outline:2px solid #008ae0;
|
|
6675
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
6676
|
+
}
|
|
6677
|
+
@media (forced-colors: active){
|
|
6678
|
+
.iui-radio-tile-input:focus-visible + *{
|
|
6679
|
+
outline-color:Highlight;
|
|
6680
|
+
}
|
|
6681
|
+
}
|
|
6682
|
+
@supports not selector(*:focus-visible){
|
|
6683
|
+
.iui-radio-tile-input:focus + *{
|
|
6684
|
+
outline-offset:-4px;
|
|
6685
|
+
outline:2px solid #008ae0;
|
|
6686
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
6687
|
+
}
|
|
6688
|
+
@media (forced-colors: active){
|
|
6689
|
+
.iui-radio-tile-input:focus + *{
|
|
6690
|
+
outline-color:Highlight;
|
|
6691
|
+
}
|
|
6692
|
+
}
|
|
6693
|
+
}
|
|
6694
|
+
.iui-radio-tile-input:checked + *{
|
|
6695
|
+
padding:7px;
|
|
6696
|
+
z-index:3;
|
|
6697
|
+
border:2px solid #008ae0;
|
|
6698
|
+
border:2px solid var(--iui-color-foreground-primary);
|
|
6699
|
+
}
|
|
6700
|
+
@media (forced-colors: active){
|
|
6701
|
+
.iui-radio-tile-input:checked + *{
|
|
6702
|
+
border-color:Highlight;
|
|
6703
|
+
}
|
|
6704
|
+
}
|
|
6705
|
+
.iui-radio-tile-input:checked + * .iui-radio-tile-icon{
|
|
6706
|
+
fill:#008ae0;
|
|
6707
|
+
fill:var(--iui-icons-color-primary);
|
|
6708
|
+
}
|
|
6709
|
+
@media (forced-colors: active){
|
|
6710
|
+
.iui-radio-tile-input:checked + * .iui-radio-tile-icon{
|
|
6711
|
+
fill:Highlight;
|
|
6712
|
+
}
|
|
6713
|
+
}
|
|
6714
|
+
.iui-radio-tile-input:checked + *::after{
|
|
6715
|
+
content:"";
|
|
6716
|
+
width:16px;
|
|
6717
|
+
height:16px;
|
|
6718
|
+
position:absolute;
|
|
6719
|
+
top:8px;
|
|
6720
|
+
right:8px;
|
|
6721
|
+
-webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6,14L0,8l2-2l4,4l8-8l2,2L6,14z" /></svg>');
|
|
6722
|
+
mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6,14L0,8l2-2l4,4l8-8l2,2L6,14z" /></svg>');
|
|
6723
|
+
background-color:#008ae0;
|
|
6724
|
+
background-color:var(--iui-color-foreground-primary);
|
|
6725
|
+
}
|
|
6726
|
+
@media (forced-colors: active){
|
|
6727
|
+
.iui-radio-tile-input:checked + *::after{
|
|
6728
|
+
background-color:Highlight;
|
|
6729
|
+
}
|
|
6730
|
+
}
|
|
6731
|
+
.iui-radio-tile-input:disabled + *{
|
|
6732
|
+
cursor:not-allowed;
|
|
6733
|
+
z-index:0;
|
|
6734
|
+
border-color:#edeff2;
|
|
6735
|
+
background-color:#edeff2;
|
|
6736
|
+
border-color:var(--iui-color-background-disabled);
|
|
6737
|
+
background-color:var(--iui-color-background-disabled);
|
|
6738
|
+
}
|
|
6739
|
+
.iui-radio-tile-input:disabled + *::after{
|
|
6740
|
+
background-color:rgba(0, 0, 0, 0.2);
|
|
6741
|
+
background-color:var(--iui-icons-color-actionable-disabled);
|
|
6742
|
+
}
|
|
6743
|
+
@media (forced-colors: active){
|
|
6744
|
+
.iui-radio-tile-input:disabled + *::after{
|
|
6745
|
+
background-color:GrayText;
|
|
6746
|
+
}
|
|
6747
|
+
}
|
|
6748
|
+
.iui-radio-tile-input:disabled + * .iui-radio-tile-icon{
|
|
6749
|
+
filter:grayscale(100%);
|
|
6750
|
+
fill:rgba(0, 0, 0, 0.2);
|
|
6751
|
+
fill:var(--iui-icons-color-actionable-disabled);
|
|
6752
|
+
}
|
|
6753
|
+
@media (forced-colors: active){
|
|
6754
|
+
.iui-radio-tile-input:disabled + * .iui-radio-tile-icon{
|
|
6755
|
+
fill:GrayText;
|
|
6756
|
+
}
|
|
6757
|
+
}
|
|
6758
|
+
@media (forced-colors: active){
|
|
6759
|
+
.iui-radio-tile-input:disabled + * .iui-radio-tile-label,
|
|
6760
|
+
.iui-radio-tile-input:disabled + * .iui-radio-tile-sublabel{
|
|
6761
|
+
color:GrayText;
|
|
6762
|
+
}
|
|
6763
|
+
}
|
|
6764
|
+
.iui-radio-tile-input:disabled + * .iui-radio-tile-label{
|
|
6765
|
+
color:rgba(0, 0, 0, 0.4);
|
|
6766
|
+
color:var(--iui-text-color-muted);
|
|
6767
|
+
}
|
|
6768
|
+
.iui-radio-tile-input:disabled:checked + *{
|
|
6769
|
+
z-index:3;
|
|
6770
|
+
border:2px solid rgba(0, 0, 0, 0.4);
|
|
6771
|
+
border:2px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
6772
|
+
}
|
|
6773
|
+
@media (forced-colors: active){
|
|
6774
|
+
.iui-radio-tile-input:disabled:checked + *{
|
|
6775
|
+
border-color:GrayText;
|
|
6776
|
+
}
|
|
6777
|
+
}
|
|
6778
|
+
|
|
6779
|
+
.iui-radio-tile-icon{
|
|
6780
|
+
width:32px;
|
|
6781
|
+
height:32px;
|
|
6782
|
+
display:block;
|
|
6783
|
+
margin:0 auto;
|
|
6784
|
+
padding-top:6px;
|
|
6785
|
+
padding-bottom:11px;
|
|
6786
|
+
fill:rgba(0, 0, 0, 0.4);
|
|
6787
|
+
fill:var(--iui-icons-color);
|
|
6788
|
+
}
|
|
6789
|
+
@media (prefers-reduced-motion: no-preference){
|
|
6790
|
+
.iui-radio-tile-icon{
|
|
6791
|
+
transition:fill 0.2s ease-out;
|
|
6792
|
+
}
|
|
6793
|
+
}
|
|
6794
|
+
@media (forced-colors: active){
|
|
6795
|
+
.iui-radio-tile-icon{
|
|
6796
|
+
fill:CanvasText;
|
|
6797
|
+
}
|
|
6798
|
+
}
|
|
6799
|
+
|
|
6800
|
+
.iui-radio-tile-label{
|
|
6801
|
+
font-size:14px;
|
|
6802
|
+
font-weight:600;
|
|
6803
|
+
line-height:22px;
|
|
6804
|
+
text-align:center;
|
|
6805
|
+
word-break:break-word;
|
|
6806
|
+
color:rgba(0, 0, 0, 0.8);
|
|
6807
|
+
color:var(--iui-text-color);
|
|
6808
|
+
}
|
|
6809
|
+
|
|
6810
|
+
.iui-radio-tile-sublabel{
|
|
6811
|
+
font-size:12px;
|
|
6812
|
+
line-height:15px;
|
|
6813
|
+
text-align:center;
|
|
6814
|
+
word-break:break-word;
|
|
6815
|
+
color:rgba(0, 0, 0, 0.4);
|
|
6816
|
+
color:var(--iui-text-color-muted);
|
|
6817
|
+
}
|
|
6818
|
+
|
|
6499
6819
|
.iui-side-navigation{
|
|
6500
6820
|
display:inline-flex;
|
|
6501
6821
|
flex:0 0 auto;
|
|
@@ -6714,6 +7034,71 @@ label.iui-input-label.iui-disabled{
|
|
|
6714
7034
|
height:100%;
|
|
6715
7035
|
}
|
|
6716
7036
|
|
|
7037
|
+
.iui-skip-to-content-link{
|
|
7038
|
+
background-color:rgba(0, 0, 0, 0.8);
|
|
7039
|
+
background-color:rgba(0, 0, 0, var(--iui-opacity-2));
|
|
7040
|
+
color:white;
|
|
7041
|
+
color:var(--iui-color-foreground-accessory);
|
|
7042
|
+
border-radius:9999px;
|
|
7043
|
+
text-decoration:none;
|
|
7044
|
+
-webkit-user-select:none;
|
|
7045
|
+
-moz-user-select:none;
|
|
7046
|
+
-ms-user-select:none;
|
|
7047
|
+
user-select:none;
|
|
7048
|
+
padding:8.25px 16px;
|
|
7049
|
+
position:fixed;
|
|
7050
|
+
text-align:center;
|
|
7051
|
+
left:50%;
|
|
7052
|
+
top:22px;
|
|
7053
|
+
opacity:0;
|
|
7054
|
+
z-index:99;
|
|
7055
|
+
transform:translateX(-50%) translateY(-170%);
|
|
7056
|
+
transition:background-color 0.2s ease-in-out;
|
|
7057
|
+
}
|
|
7058
|
+
@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))){
|
|
7059
|
+
.iui-skip-to-content-link{
|
|
7060
|
+
background-color:rgba(0, 0, 0, var(--iui-opacity-3));
|
|
7061
|
+
-webkit-backdrop-filter:blur(5px);
|
|
7062
|
+
backdrop-filter:blur(5px);
|
|
7063
|
+
}
|
|
7064
|
+
}
|
|
7065
|
+
.iui-skip-to-content-link:focus-visible{
|
|
7066
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
7067
|
+
outline-offset:2px;
|
|
7068
|
+
}
|
|
7069
|
+
@supports not selector(*:focus-visible){
|
|
7070
|
+
.iui-skip-to-content-link:focus{
|
|
7071
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
7072
|
+
outline-offset:2px;
|
|
7073
|
+
}
|
|
7074
|
+
}
|
|
7075
|
+
@media (prefers-reduced-motion: no-preference){
|
|
7076
|
+
.iui-skip-to-content-link{
|
|
7077
|
+
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;
|
|
7078
|
+
}
|
|
7079
|
+
}
|
|
7080
|
+
.iui-skip-to-content-link:hover{
|
|
7081
|
+
background-color:black;
|
|
7082
|
+
background-color:rgba(0, 0, 0, var(--iui-opacity-1));
|
|
7083
|
+
}
|
|
7084
|
+
@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))){
|
|
7085
|
+
.iui-skip-to-content-link:hover{
|
|
7086
|
+
background-color:rgba(0, 0, 0, var(--iui-opacity-2));
|
|
7087
|
+
-webkit-backdrop-filter:blur(5px);
|
|
7088
|
+
backdrop-filter:blur(5px);
|
|
7089
|
+
}
|
|
7090
|
+
}
|
|
7091
|
+
.iui-skip-to-content-link:focus{
|
|
7092
|
+
opacity:1;
|
|
7093
|
+
transform:translateX(-50%) translateY(0);
|
|
7094
|
+
box-shadow:0 6px 30px rgba(0, 0, 0, 0.25);
|
|
7095
|
+
}
|
|
7096
|
+
@media (prefers-reduced-motion: no-preference){
|
|
7097
|
+
.iui-skip-to-content-link:focus{
|
|
7098
|
+
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;
|
|
7099
|
+
}
|
|
7100
|
+
}
|
|
7101
|
+
|
|
6717
7102
|
.iui-slider-component-container{
|
|
6718
7103
|
display:flex;
|
|
6719
7104
|
min-height:22px;
|
|
@@ -6874,6 +7259,22 @@ label.iui-input-label.iui-disabled{
|
|
|
6874
7259
|
background-color:var(--iui-color-foreground-primary);
|
|
6875
7260
|
}
|
|
6876
7261
|
|
|
7262
|
+
.iui-surface{
|
|
7263
|
+
--iui-surface-background-color:var(--iui-color-background-1);
|
|
7264
|
+
--iui-surface-border-radius:0;
|
|
7265
|
+
--iui-surface-elevation:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
7266
|
+
background-color:var(--iui-surface-background-color);
|
|
7267
|
+
border-radius:var(--iui-surface-border-radius);
|
|
7268
|
+
box-shadow:var(--iui-surface-elevation);
|
|
7269
|
+
box-sizing:border-box;
|
|
7270
|
+
color:var(--iui-text-color);
|
|
7271
|
+
}
|
|
7272
|
+
@media (forced-colors: active){
|
|
7273
|
+
.iui-surface{
|
|
7274
|
+
border:1px solid transparent;
|
|
7275
|
+
}
|
|
7276
|
+
}
|
|
7277
|
+
|
|
6877
7278
|
.iui-table{
|
|
6878
7279
|
margin:0;
|
|
6879
7280
|
padding:0;
|
|
@@ -7404,6 +7805,7 @@ label.iui-input-label.iui-disabled{
|
|
|
7404
7805
|
|
|
7405
7806
|
.iui-paginator-page-button{
|
|
7406
7807
|
--_iui-button-active-stripe-inset:initial;
|
|
7808
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
7407
7809
|
margin:0;
|
|
7408
7810
|
padding:0;
|
|
7409
7811
|
border:none;
|
|
@@ -7430,6 +7832,7 @@ label.iui-input-label.iui-disabled{
|
|
|
7430
7832
|
border:1px solid transparent;
|
|
7431
7833
|
color:rgba(0, 0, 0, 0.8);
|
|
7432
7834
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
7835
|
+
color:var(--_iui-button-text-color);
|
|
7433
7836
|
border-color:transparent;
|
|
7434
7837
|
background-color:transparent;
|
|
7435
7838
|
padding:0 8px;
|
|
@@ -7444,9 +7847,8 @@ label.iui-input-label.iui-disabled{
|
|
|
7444
7847
|
}
|
|
7445
7848
|
}
|
|
7446
7849
|
.iui-paginator-page-button:hover{
|
|
7850
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
7447
7851
|
text-decoration:none;
|
|
7448
|
-
color:black;
|
|
7449
|
-
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
7450
7852
|
}
|
|
7451
7853
|
.iui-paginator-page-button:focus-visible{
|
|
7452
7854
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -7467,15 +7869,6 @@ label.iui-input-label.iui-disabled{
|
|
|
7467
7869
|
border-color:var(--iui-color-background-disabled);
|
|
7468
7870
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
7469
7871
|
}
|
|
7470
|
-
.iui-paginator-page-button.iui-active::after{
|
|
7471
|
-
content:"";
|
|
7472
|
-
position:absolute;
|
|
7473
|
-
inset:var(--_iui-button-active-stripe-inset);
|
|
7474
|
-
background-color:var(--iui-color-foreground-primary);
|
|
7475
|
-
}
|
|
7476
|
-
.iui-paginator-page-button.iui-active[disabled]::after, .iui-paginator-page-button.iui-active:disabled::after{
|
|
7477
|
-
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
7478
|
-
}
|
|
7479
7872
|
.iui-paginator-page-button > .iui-button-icon:only-child{
|
|
7480
7873
|
margin-left:3px;
|
|
7481
7874
|
margin-right:3px;
|
|
@@ -7510,6 +7903,15 @@ label.iui-input-label.iui-disabled{
|
|
|
7510
7903
|
background-color:rgba(0, 0, 0, 0.05);
|
|
7511
7904
|
background-color:rgba(var(--iui-color-foreground-body-rgb), 0.05);
|
|
7512
7905
|
}
|
|
7906
|
+
.iui-paginator-page-button.iui-active::after{
|
|
7907
|
+
content:"";
|
|
7908
|
+
position:absolute;
|
|
7909
|
+
inset:var(--_iui-button-active-stripe-inset);
|
|
7910
|
+
background-color:var(--iui-color-foreground-primary);
|
|
7911
|
+
}
|
|
7912
|
+
.iui-paginator-page-button.iui-active[disabled]::after, .iui-paginator-page-button.iui-active:disabled::after{
|
|
7913
|
+
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
7914
|
+
}
|
|
7513
7915
|
.iui-paginator-page-button-small{
|
|
7514
7916
|
padding:0 8px;
|
|
7515
7917
|
height:27px;
|
|
@@ -7631,6 +8033,10 @@ label.iui-input-label.iui-disabled{
|
|
|
7631
8033
|
fill:#008ae0;
|
|
7632
8034
|
fill:var(--iui-icons-color-primary);
|
|
7633
8035
|
}
|
|
8036
|
+
.iui-tabs .iui-tab.iui-active .iui-tab-description{
|
|
8037
|
+
opacity:1;
|
|
8038
|
+
opacity:var(--iui-opacity-1);
|
|
8039
|
+
}
|
|
7634
8040
|
.iui-tabs .iui-tab[disabled]{
|
|
7635
8041
|
cursor:not-allowed;
|
|
7636
8042
|
color:rgba(0, 0, 0, 0.4);
|
|
@@ -7908,31 +8314,17 @@ label.iui-input-label.iui-disabled{
|
|
|
7908
8314
|
user-select:all;
|
|
7909
8315
|
text-transform:lowercase;
|
|
7910
8316
|
display:inline-flex;
|
|
7911
|
-
}
|
|
7912
|
-
.iui-tag:focus-visible{
|
|
7913
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
7914
|
-
outline-offset:-2px;
|
|
7915
|
-
}
|
|
7916
|
-
@supports not selector(*:focus-visible){
|
|
7917
|
-
.iui-tag:focus{
|
|
7918
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
7919
|
-
outline-offset:-2px;
|
|
7920
|
-
}
|
|
7921
|
-
}
|
|
7922
|
-
.iui-tag:not(a){
|
|
7923
|
-
color:rgba(0, 0, 0, 0.4);
|
|
7924
|
-
color:var(--iui-text-color-muted);
|
|
7925
|
-
}
|
|
7926
|
-
.iui-tag:not(.iui-basic){
|
|
7927
8317
|
height:33px;
|
|
7928
8318
|
margin:3px 0;
|
|
7929
|
-
border-radius:
|
|
8319
|
+
border-radius:9999px;
|
|
7930
8320
|
box-sizing:border-box;
|
|
7931
8321
|
padding:0 2px;
|
|
7932
8322
|
align-items:center;
|
|
8323
|
+
transition:border-color 0.2s ease-out;
|
|
7933
8324
|
font-size:14px;
|
|
7934
8325
|
text-transform:none;
|
|
7935
8326
|
cursor:default;
|
|
8327
|
+
-webkit-tap-highlight-color:transparent;
|
|
7936
8328
|
border:1px solid rgba(0, 0, 0, 0.4);
|
|
7937
8329
|
background-color:white;
|
|
7938
8330
|
color:rgba(0, 0, 0, 0.8);
|
|
@@ -7940,12 +8332,28 @@ label.iui-input-label.iui-disabled{
|
|
|
7940
8332
|
background-color:var(--iui-color-background-1);
|
|
7941
8333
|
color:var(--iui-text-color);
|
|
7942
8334
|
}
|
|
7943
|
-
|
|
7944
|
-
|
|
7945
|
-
|
|
7946
|
-
|
|
8335
|
+
.iui-tag:hover{
|
|
8336
|
+
border-color:black;
|
|
8337
|
+
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
8338
|
+
}
|
|
8339
|
+
|
|
8340
|
+
.iui-tag-basic{
|
|
8341
|
+
margin:0;
|
|
8342
|
+
padding:0;
|
|
8343
|
+
border:none;
|
|
8344
|
+
vertical-align:baseline;
|
|
8345
|
+
-webkit-user-select:all;
|
|
8346
|
+
-moz-user-select:all;
|
|
8347
|
+
user-select:all;
|
|
8348
|
+
text-transform:lowercase;
|
|
8349
|
+
display:inline-flex;
|
|
7947
8350
|
}
|
|
7948
|
-
.iui-tag:not(
|
|
8351
|
+
.iui-tag-basic:not(a){
|
|
8352
|
+
color:rgba(0, 0, 0, 0.4);
|
|
8353
|
+
color:var(--iui-text-color-muted);
|
|
8354
|
+
}
|
|
8355
|
+
|
|
8356
|
+
.iui-tag-label{
|
|
7949
8357
|
margin:0;
|
|
7950
8358
|
padding:0;
|
|
7951
8359
|
border:none;
|
|
@@ -7958,96 +8366,85 @@ label.iui-input-label.iui-disabled{
|
|
|
7958
8366
|
overflow:hidden;
|
|
7959
8367
|
margin:0 4px 0 8px;
|
|
7960
8368
|
}
|
|
7961
|
-
.iui-tag
|
|
8369
|
+
.iui-tag-label:only-child{
|
|
7962
8370
|
margin:0 8px;
|
|
7963
8371
|
}
|
|
7964
|
-
|
|
8372
|
+
|
|
8373
|
+
.iui-tag-button{
|
|
7965
8374
|
border-radius:50%;
|
|
7966
8375
|
}
|
|
7967
|
-
.iui-tag:not(.iui-basic):hover{
|
|
7968
|
-
border-color:black;
|
|
7969
|
-
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
7970
|
-
}
|
|
7971
|
-
.iui-tag.iui-basic{
|
|
7972
|
-
outline-offset:1px;
|
|
7973
|
-
}
|
|
7974
8376
|
|
|
7975
|
-
a.iui-tag{
|
|
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>");
|
|
8377
|
+
a.iui-tag-basic{
|
|
7977
8378
|
color:#008ae0;
|
|
7978
8379
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
7979
8380
|
color:var(--iui-color-foreground-primary);
|
|
7980
8381
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
7981
8382
|
border-radius:3px;
|
|
8383
|
+
box-sizing:border-box;
|
|
7982
8384
|
cursor:pointer;
|
|
7983
8385
|
text-decoration:none;
|
|
7984
8386
|
}
|
|
7985
|
-
a.iui-tag:focus-visible{
|
|
8387
|
+
a.iui-tag-basic:focus-visible{
|
|
7986
8388
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
7987
8389
|
outline-offset:1px;
|
|
7988
8390
|
}
|
|
7989
8391
|
@supports not selector(*:focus-visible){
|
|
7990
|
-
a.iui-tag:focus{
|
|
8392
|
+
a.iui-tag-basic:focus{
|
|
7991
8393
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
7992
8394
|
outline-offset:1px;
|
|
7993
8395
|
}
|
|
7994
8396
|
}
|
|
7995
|
-
a.iui-tag:hover{
|
|
8397
|
+
a.iui-tag-basic:hover{
|
|
7996
8398
|
color:#006bad;
|
|
7997
8399
|
color:var(--iui-color-foreground-primary-overlay);
|
|
7998
8400
|
}
|
|
7999
|
-
a.iui-tag-
|
|
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{
|
|
8401
|
+
a.iui-tag-basic:hover{
|
|
8016
8402
|
text-decoration:underline;
|
|
8017
8403
|
}
|
|
8018
8404
|
@media (prefers-contrast: more){
|
|
8019
|
-
a.iui-tag{
|
|
8405
|
+
a.iui-tag-basic{
|
|
8020
8406
|
text-decoration:underline;
|
|
8021
8407
|
}
|
|
8022
|
-
a.iui-tag:hover{
|
|
8408
|
+
a.iui-tag-basic:hover{
|
|
8023
8409
|
text-decoration:none;
|
|
8024
8410
|
}
|
|
8025
8411
|
}
|
|
8026
|
-
.iui-theme-light a.iui-tag, .iui-theme-dark a.iui-tag{
|
|
8412
|
+
.iui-theme-light a.iui-tag-basic, .iui-theme-dark a.iui-tag-basic{
|
|
8027
8413
|
text-decoration:none;
|
|
8028
8414
|
}
|
|
8029
|
-
.iui-theme-light a.iui-tag:hover, .iui-theme-dark a.iui-tag:hover{
|
|
8415
|
+
.iui-theme-light a.iui-tag-basic:hover, .iui-theme-dark a.iui-tag-basic:hover{
|
|
8030
8416
|
text-decoration:underline;
|
|
8031
8417
|
}
|
|
8032
8418
|
|
|
8033
|
-
.iui-theme-light-hc a.iui-tag, .iui-theme-dark-hc a.iui-tag{
|
|
8419
|
+
.iui-theme-light-hc a.iui-tag-basic, .iui-theme-dark-hc a.iui-tag-basic{
|
|
8034
8420
|
text-decoration:underline;
|
|
8035
8421
|
}
|
|
8036
|
-
.iui-theme-light-hc a.iui-tag:hover, .iui-theme-dark-hc a.iui-tag:hover{
|
|
8422
|
+
.iui-theme-light-hc a.iui-tag-basic:hover, .iui-theme-dark-hc a.iui-tag-basic:hover{
|
|
8037
8423
|
text-decoration:none;
|
|
8038
8424
|
}
|
|
8039
8425
|
|
|
8426
|
+
a.iui-tag-basic:focus-visible{
|
|
8427
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
8428
|
+
outline-offset:1px;
|
|
8429
|
+
}
|
|
8430
|
+
@supports not selector(*:focus-visible){
|
|
8431
|
+
a.iui-tag-basic:focus{
|
|
8432
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
8433
|
+
outline-offset:1px;
|
|
8434
|
+
}
|
|
8435
|
+
}
|
|
8436
|
+
|
|
8040
8437
|
.iui-tag-container{
|
|
8041
8438
|
color:rgba(0, 0, 0, 0.4);
|
|
8042
8439
|
color:var(--iui-text-color-muted);
|
|
8043
8440
|
}
|
|
8044
|
-
.iui-tag-container > a.iui-basic{
|
|
8441
|
+
.iui-tag-container > a.iui-tag-basic{
|
|
8045
8442
|
margin:2px;
|
|
8046
8443
|
}
|
|
8047
|
-
.iui-tag-container >
|
|
8444
|
+
.iui-tag-container > *:not(last-child){
|
|
8048
8445
|
margin-right:4px;
|
|
8049
8446
|
}
|
|
8050
|
-
.iui-tag-container > .iui-basic:not(:last-child)::after{
|
|
8447
|
+
.iui-tag-container > .iui-tag-basic:not(:last-child)::after{
|
|
8051
8448
|
content:",";
|
|
8052
8449
|
}
|
|
8053
8450
|
.iui-tag-container.iui-truncate{
|
|
@@ -8070,8 +8467,8 @@ a.iui-tag:hover{
|
|
|
8070
8467
|
.iui-tag-container.iui-visible{
|
|
8071
8468
|
border-radius:3px;
|
|
8072
8469
|
padding:3px 12px;
|
|
8073
|
-
background-color:#
|
|
8074
|
-
background-color:var(--iui-color-background-
|
|
8470
|
+
background-color:#edeff2;
|
|
8471
|
+
background-color:var(--iui-color-background-3);
|
|
8075
8472
|
}
|
|
8076
8473
|
|
|
8077
8474
|
.iui-text-headline{
|
|
@@ -8147,11 +8544,17 @@ a.iui-tag:hover{
|
|
|
8147
8544
|
user-select:none;
|
|
8148
8545
|
color:transparent;
|
|
8149
8546
|
border-radius:3px;
|
|
8150
|
-
|
|
8151
|
-
background-
|
|
8152
|
-
background:linear-gradient(
|
|
8547
|
+
cursor:progress;
|
|
8548
|
+
background:linear-gradient(292deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
|
|
8549
|
+
background:linear-gradient(292deg, var(--iui-text-color-muted), var(--iui-text-color-muted), var(--iui-text-color-placeholder), var(--iui-text-color-muted), var(--iui-text-color-muted));
|
|
8153
8550
|
background-size:200% 100%;
|
|
8154
8551
|
}
|
|
8552
|
+
@media (forced-colors: active){
|
|
8553
|
+
.iui-skeleton{
|
|
8554
|
+
forced-color-adjust:none;
|
|
8555
|
+
background:linear-gradient(292deg, CanvasText, CanvasText, Canvas, CanvasText, CanvasText);
|
|
8556
|
+
}
|
|
8557
|
+
}
|
|
8155
8558
|
@media (prefers-reduced-motion: no-preference){
|
|
8156
8559
|
.iui-skeleton{
|
|
8157
8560
|
-webkit-animation:skeleton-shimmer 0.8s linear infinite;
|
|
@@ -8191,25 +8594,23 @@ a.iui-tag:hover{
|
|
|
8191
8594
|
padding:0;
|
|
8192
8595
|
border:none;
|
|
8193
8596
|
vertical-align:baseline;
|
|
8597
|
+
--iui-surface-background-color:var(--iui-color-background-1);
|
|
8598
|
+
--iui-surface-border-radius:0;
|
|
8599
|
+
--iui-surface-elevation:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
8600
|
+
background-color:var(--iui-surface-background-color);
|
|
8601
|
+
border-radius:var(--iui-surface-border-radius);
|
|
8602
|
+
box-shadow:var(--iui-surface-elevation);
|
|
8603
|
+
box-sizing:border-box;
|
|
8604
|
+
color:var(--iui-text-color);
|
|
8194
8605
|
display:inline-flex;
|
|
8195
8606
|
flex-direction:column;
|
|
8196
8607
|
width:288px;
|
|
8197
|
-
box-shadow:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
8198
8608
|
-webkit-backface-visibility:hidden;
|
|
8199
8609
|
backface-visibility:hidden;
|
|
8200
|
-
background-color:white;
|
|
8201
|
-
color:rgba(0, 0, 0, 0.8);
|
|
8202
|
-
background-color:var(--iui-color-background-1);
|
|
8203
|
-
color:var(--iui-text-color);
|
|
8204
|
-
}
|
|
8205
|
-
.iui-tile:focus-visible{
|
|
8206
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
8207
|
-
outline-offset:2px;
|
|
8208
8610
|
}
|
|
8209
|
-
@
|
|
8210
|
-
.iui-tile
|
|
8211
|
-
|
|
8212
|
-
outline-offset:2px;
|
|
8611
|
+
@media (forced-colors: active){
|
|
8612
|
+
.iui-tile{
|
|
8613
|
+
border:1px solid transparent;
|
|
8213
8614
|
}
|
|
8214
8615
|
}
|
|
8215
8616
|
.iui-tile:hover .iui-tile-more-options, .iui-tile:focus-within .iui-tile-more-options{
|
|
@@ -8227,9 +8628,6 @@ a.iui-tag:hover{
|
|
|
8227
8628
|
.iui-tile:hover .iui-tile-metadata:not(:last-child), .iui-tile:focus-within .iui-tile-metadata:not(:last-child){
|
|
8228
8629
|
width:calc(100% - 32px);
|
|
8229
8630
|
}
|
|
8230
|
-
.iui-tile:hover .iui-tile-thumbnail-picture, .iui-tile:focus-within .iui-tile-thumbnail-picture{
|
|
8231
|
-
transform:translateZ(0) scale(1.1);
|
|
8232
|
-
}
|
|
8233
8631
|
.iui-tile.iui-new .iui-tile-name,
|
|
8234
8632
|
.iui-tile.iui-new .iui-tile-description{
|
|
8235
8633
|
font-weight:600;
|
|
@@ -8250,7 +8648,24 @@ a.iui-tag:hover{
|
|
|
8250
8648
|
outline-offset:0;
|
|
8251
8649
|
}
|
|
8252
8650
|
}
|
|
8253
|
-
.iui-tile.iui-
|
|
8651
|
+
.iui-tile.iui-actionable{
|
|
8652
|
+
cursor:pointer;
|
|
8653
|
+
transition:box-shadow 0.2s ease-in-out;
|
|
8654
|
+
}
|
|
8655
|
+
.iui-tile.iui-actionable:focus-visible{
|
|
8656
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
8657
|
+
outline-offset:2px;
|
|
8658
|
+
}
|
|
8659
|
+
@supports not selector(*:focus-visible){
|
|
8660
|
+
.iui-tile.iui-actionable:focus{
|
|
8661
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
8662
|
+
outline-offset:2px;
|
|
8663
|
+
}
|
|
8664
|
+
}
|
|
8665
|
+
.iui-tile.iui-actionable:hover{
|
|
8666
|
+
box-shadow:0 3px 14px rgba(0, 0, 0, 0.25);
|
|
8667
|
+
}
|
|
8668
|
+
.iui-tile.iui-actionable:hover .iui-tile-thumbnail-picture, .iui-tile.iui-actionable:focus-within .iui-tile-thumbnail-picture, .iui-tile.iui-actionable.iui-selected .iui-tile-thumbnail-picture{
|
|
8254
8669
|
transform:translateZ(0) scale(1.1);
|
|
8255
8670
|
}
|
|
8256
8671
|
.iui-tile.iui-folder{
|
|
@@ -8811,7 +9226,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
8811
9226
|
align-items:center;
|
|
8812
9227
|
flex-direction:column;
|
|
8813
9228
|
justify-content:center;
|
|
8814
|
-
z-index:
|
|
9229
|
+
z-index:99999;
|
|
8815
9230
|
}
|
|
8816
9231
|
@media screen and (max-width: 400px){
|
|
8817
9232
|
.iui-toast-wrapper{
|
|
@@ -9165,6 +9580,11 @@ div.iui-tile-thumbnail-picture{
|
|
|
9165
9580
|
color:rgba(0, 0, 0, 0.4);
|
|
9166
9581
|
color:var(--iui-text-color-muted);
|
|
9167
9582
|
}
|
|
9583
|
+
@media (forced-colors: active){
|
|
9584
|
+
.iui-toggle-switch-wrapper.iui-disabled{
|
|
9585
|
+
color:GrayText;
|
|
9586
|
+
}
|
|
9587
|
+
}
|
|
9168
9588
|
.iui-toggle-switch-wrapper.iui-label-on-left{
|
|
9169
9589
|
grid-template-areas:"label toggle";
|
|
9170
9590
|
}
|
|
@@ -9228,13 +9648,29 @@ div.iui-tile-thumbnail-picture{
|
|
|
9228
9648
|
transition:transform 0.2s ease-out, background-color 0.2s ease-out, opacity 0.2s ease-out;
|
|
9229
9649
|
}
|
|
9230
9650
|
}
|
|
9651
|
+
@media (forced-colors: active){
|
|
9652
|
+
.iui-toggle-switch{
|
|
9653
|
+
border-color:CanvasText;
|
|
9654
|
+
}
|
|
9655
|
+
}
|
|
9231
9656
|
.iui-toggle-switch::after{
|
|
9232
9657
|
background-color:var(--iui-color-foreground-body);
|
|
9233
9658
|
opacity:var(--iui-opacity-2);
|
|
9234
9659
|
}
|
|
9660
|
+
@media (forced-colors: active){
|
|
9661
|
+
.iui-toggle-switch::after{
|
|
9662
|
+
background-color:CanvasText;
|
|
9663
|
+
opacity:1;
|
|
9664
|
+
}
|
|
9665
|
+
}
|
|
9235
9666
|
.iui-toggle-switch:hover{
|
|
9236
9667
|
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
9237
9668
|
}
|
|
9669
|
+
@media (forced-colors: active){
|
|
9670
|
+
.iui-toggle-switch:hover{
|
|
9671
|
+
border-color:CanvasText;
|
|
9672
|
+
}
|
|
9673
|
+
}
|
|
9238
9674
|
.iui-toggle-switch:focus-visible{
|
|
9239
9675
|
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
9240
9676
|
}
|
|
@@ -9247,11 +9683,23 @@ div.iui-tile-thumbnail-picture{
|
|
|
9247
9683
|
background-color:var(--iui-color-background-primary);
|
|
9248
9684
|
border-color:var(--iui-color-background-primary);
|
|
9249
9685
|
}
|
|
9686
|
+
@media (forced-colors: active){
|
|
9687
|
+
.iui-toggle-switch:checked{
|
|
9688
|
+
background-color:Highlight;
|
|
9689
|
+
border-color:Highlight;
|
|
9690
|
+
}
|
|
9691
|
+
}
|
|
9250
9692
|
.iui-toggle-switch:checked::after{
|
|
9251
9693
|
transform:translateX(19px);
|
|
9252
9694
|
background-color:var(--iui-color-foreground-accessory);
|
|
9253
9695
|
opacity:var(--iui-opacity-2);
|
|
9254
9696
|
}
|
|
9697
|
+
@media (forced-colors: active){
|
|
9698
|
+
.iui-toggle-switch:checked::after{
|
|
9699
|
+
background-color:HighlightText;
|
|
9700
|
+
opacity:1;
|
|
9701
|
+
}
|
|
9702
|
+
}
|
|
9255
9703
|
.iui-toggle-switch:checked ~ .iui-toggle-switch-icon{
|
|
9256
9704
|
opacity:var(--iui-opacity-1);
|
|
9257
9705
|
}
|
|
@@ -9271,17 +9719,44 @@ div.iui-tile-thumbnail-picture{
|
|
|
9271
9719
|
background-color:var(--iui-color-background-disabled);
|
|
9272
9720
|
border-color:var(--iui-color-background-disabled);
|
|
9273
9721
|
}
|
|
9722
|
+
@media (forced-colors: active){
|
|
9723
|
+
.iui-toggle-switch:disabled{
|
|
9724
|
+
border-color:GrayText;
|
|
9725
|
+
}
|
|
9726
|
+
}
|
|
9274
9727
|
.iui-toggle-switch:disabled::after{
|
|
9275
9728
|
background-color:var(--iui-color-foreground-body);
|
|
9276
9729
|
opacity:var(--iui-opacity-5);
|
|
9277
9730
|
}
|
|
9731
|
+
@media (forced-colors: active){
|
|
9732
|
+
.iui-toggle-switch:disabled::after{
|
|
9733
|
+
background-color:GrayText;
|
|
9734
|
+
opacity:0.75;
|
|
9735
|
+
}
|
|
9736
|
+
}
|
|
9278
9737
|
.iui-toggle-switch:disabled ~ .iui-toggle-switch-icon{
|
|
9279
9738
|
opacity:0;
|
|
9280
9739
|
fill:var(--iui-icons-color-actionable);
|
|
9281
9740
|
}
|
|
9741
|
+
@media (forced-colors: active){
|
|
9742
|
+
.iui-toggle-switch:disabled:checked{
|
|
9743
|
+
background-color:GrayText;
|
|
9744
|
+
}
|
|
9745
|
+
}
|
|
9746
|
+
@media (forced-colors: active){
|
|
9747
|
+
.iui-toggle-switch:disabled:checked::after{
|
|
9748
|
+
background-color:Canvas;
|
|
9749
|
+
}
|
|
9750
|
+
}
|
|
9282
9751
|
.iui-toggle-switch:disabled:checked ~ .iui-toggle-switch-icon{
|
|
9283
9752
|
opacity:var(--iui-opacity-5);
|
|
9284
9753
|
}
|
|
9754
|
+
@media (forced-colors: active){
|
|
9755
|
+
.iui-toggle-switch:disabled:checked ~ .iui-toggle-switch-icon{
|
|
9756
|
+
fill:Canvas;
|
|
9757
|
+
opacity:0.75;
|
|
9758
|
+
}
|
|
9759
|
+
}
|
|
9285
9760
|
.iui-toggle-switch-icon{
|
|
9286
9761
|
opacity:0;
|
|
9287
9762
|
grid-area:toggle;
|
|
@@ -9295,6 +9770,11 @@ div.iui-tile-thumbnail-picture{
|
|
|
9295
9770
|
pointer-events:none;
|
|
9296
9771
|
fill:var(--iui-color-foreground-accessory);
|
|
9297
9772
|
}
|
|
9773
|
+
@media (forced-colors: active){
|
|
9774
|
+
.iui-toggle-switch-icon{
|
|
9775
|
+
fill:HighlightText;
|
|
9776
|
+
}
|
|
9777
|
+
}
|
|
9298
9778
|
|
|
9299
9779
|
.iui-tooltip-container{
|
|
9300
9780
|
width:-webkit-fit-content;
|
|
@@ -9924,85 +10404,4 @@ div.iui-tile-thumbnail-picture{
|
|
|
9924
10404
|
user-select:all;
|
|
9925
10405
|
color:#53a21a;
|
|
9926
10406
|
color:var(--iui-color-foreground-positive);
|
|
9927
|
-
}
|
|
9928
|
-
|
|
9929
|
-
.iui-skip-to-content-link{
|
|
9930
|
-
background-color:rgba(0, 0, 0, 0.8);
|
|
9931
|
-
background-color:rgba(0, 0, 0, var(--iui-opacity-2));
|
|
9932
|
-
color:white;
|
|
9933
|
-
color:var(--iui-color-foreground-accessory);
|
|
9934
|
-
border-radius:9999px;
|
|
9935
|
-
text-decoration:none;
|
|
9936
|
-
-webkit-user-select:none;
|
|
9937
|
-
-moz-user-select:none;
|
|
9938
|
-
-ms-user-select:none;
|
|
9939
|
-
user-select:none;
|
|
9940
|
-
padding:8.25px 16px;
|
|
9941
|
-
position:fixed;
|
|
9942
|
-
text-align:center;
|
|
9943
|
-
left:50%;
|
|
9944
|
-
top:22px;
|
|
9945
|
-
opacity:0;
|
|
9946
|
-
z-index:99;
|
|
9947
|
-
transform:translateX(-50%) translateY(-170%);
|
|
9948
|
-
transition:background-color 0.2s ease-in-out;
|
|
9949
|
-
}
|
|
9950
|
-
@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))){
|
|
9951
|
-
.iui-skip-to-content-link{
|
|
9952
|
-
background-color:rgba(0, 0, 0, var(--iui-opacity-3));
|
|
9953
|
-
-webkit-backdrop-filter:blur(5px);
|
|
9954
|
-
backdrop-filter:blur(5px);
|
|
9955
|
-
}
|
|
9956
|
-
}
|
|
9957
|
-
.iui-skip-to-content-link:focus-visible{
|
|
9958
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
9959
|
-
outline-offset:2px;
|
|
9960
|
-
}
|
|
9961
|
-
@supports not selector(*:focus-visible){
|
|
9962
|
-
.iui-skip-to-content-link:focus{
|
|
9963
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
9964
|
-
outline-offset:2px;
|
|
9965
|
-
}
|
|
9966
|
-
}
|
|
9967
|
-
@media (prefers-reduced-motion: no-preference){
|
|
9968
|
-
.iui-skip-to-content-link{
|
|
9969
|
-
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;
|
|
9970
|
-
}
|
|
9971
|
-
}
|
|
9972
|
-
.iui-skip-to-content-link:hover{
|
|
9973
|
-
background-color:black;
|
|
9974
|
-
background-color:rgba(0, 0, 0, var(--iui-opacity-1));
|
|
9975
|
-
}
|
|
9976
|
-
@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))){
|
|
9977
|
-
.iui-skip-to-content-link:hover{
|
|
9978
|
-
background-color:rgba(0, 0, 0, var(--iui-opacity-2));
|
|
9979
|
-
-webkit-backdrop-filter:blur(5px);
|
|
9980
|
-
backdrop-filter:blur(5px);
|
|
9981
|
-
}
|
|
9982
|
-
}
|
|
9983
|
-
.iui-skip-to-content-link:focus{
|
|
9984
|
-
opacity:1;
|
|
9985
|
-
transform:translateX(-50%) translateY(0);
|
|
9986
|
-
box-shadow:0 6px 30px rgba(0, 0, 0, 0.25);
|
|
9987
|
-
}
|
|
9988
|
-
@media (prefers-reduced-motion: no-preference){
|
|
9989
|
-
.iui-skip-to-content-link:focus{
|
|
9990
|
-
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;
|
|
9991
|
-
}
|
|
9992
|
-
}
|
|
9993
|
-
|
|
9994
|
-
.iui-surface{
|
|
9995
|
-
--iui-surface-background-color:var(--iui-color-background-1);
|
|
9996
|
-
--iui-surface-border-radius:0;
|
|
9997
|
-
--iui-surface-elevation:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
9998
|
-
background-color:var(--iui-surface-background-color);
|
|
9999
|
-
border-radius:var(--iui-surface-border-radius);
|
|
10000
|
-
box-shadow:var(--iui-surface-elevation);
|
|
10001
|
-
box-sizing:border-box;
|
|
10002
|
-
color:var(--iui-text-color);
|
|
10003
|
-
}
|
|
10004
|
-
@media (forced-colors: active){
|
|
10005
|
-
.iui-surface{
|
|
10006
|
-
border:1px solid transparent;
|
|
10007
|
-
}
|
|
10008
10407
|
}
|