@itwin/itwinui-css 0.56.0 → 0.59.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 +706 -346
- package/css/anchor.css +21 -17
- package/css/breadcrumbs.css +312 -57
- package/css/button.css +9 -12
- package/css/dialog.css +201 -0
- package/css/footer.css +1 -17
- package/css/global.css +1 -17
- package/css/information-panel.css +2 -2
- package/css/radio-tile.css +9 -13
- package/css/side-navigation.css +1 -1
- package/css/table.css +148 -61
- package/css/tag.css +1 -17
- package/package.json +1 -1
- package/scss/anchor/classes.scss +4 -0
- package/scss/breadcrumbs/breadcrumbs.scss +77 -18
- package/scss/breadcrumbs/classes.scss +12 -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 +1 -1
- package/scss/dialog/classes.scss +47 -0
- package/scss/dialog/dialog.scss +213 -0
- package/scss/{modal → dialog}/index.scss +1 -1
- package/scss/index.scss +1 -1
- package/scss/information-panel/information-panel.scss +2 -2
- package/scss/radio-tile/radio-tile.scss +12 -17
- package/scss/side-navigation/side-navigation.scss +2 -2
- package/scss/style/anchor.scss +19 -16
- package/scss/style/elevation.scss +6 -5
- package/scss/table/classes.scss +16 -0
- package/scss/table/condensed.scss +4 -1
- package/scss/table/extra-condensed.scss +8 -1
- package/scss/table/paginator.scss +4 -0
- package/scss/table/table.scss +137 -37
- package/css/modal.css +0 -132
- package/scss/modal/classes.scss +0 -15
- package/scss/modal/modal.scss +0 -155
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
|
}
|
|
@@ -967,12 +951,12 @@ html.iui-theme-dark-hc{
|
|
|
967
951
|
}
|
|
968
952
|
|
|
969
953
|
.iui-anchor{
|
|
970
|
-
--_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>");
|
|
971
954
|
color:#008ae0;
|
|
972
955
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
973
956
|
color:var(--iui-color-foreground-primary);
|
|
974
957
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
975
958
|
border-radius:3px;
|
|
959
|
+
box-sizing:border-box;
|
|
976
960
|
cursor:pointer;
|
|
977
961
|
text-decoration:none;
|
|
978
962
|
}
|
|
@@ -990,22 +974,6 @@ html.iui-theme-dark-hc{
|
|
|
990
974
|
color:#006bad;
|
|
991
975
|
color:var(--iui-color-foreground-primary-overlay);
|
|
992
976
|
}
|
|
993
|
-
.iui-anchor-external::after{
|
|
994
|
-
content:"";
|
|
995
|
-
display:inline-block;
|
|
996
|
-
width:1.5ch;
|
|
997
|
-
height:1.5ch;
|
|
998
|
-
margin-left:0.5ch;
|
|
999
|
-
vertical-align:-0.1ch;
|
|
1000
|
-
background-color:currentColor;
|
|
1001
|
-
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
1002
|
-
mask:var(--_iui-anchor-external-svg);
|
|
1003
|
-
}
|
|
1004
|
-
@media (forced-colors: active){
|
|
1005
|
-
.iui-anchor-external::after{
|
|
1006
|
-
background-color:LinkText;
|
|
1007
|
-
}
|
|
1008
|
-
}
|
|
1009
977
|
.iui-anchor:hover{
|
|
1010
978
|
text-decoration:underline;
|
|
1011
979
|
}
|
|
@@ -1031,6 +999,26 @@ html.iui-theme-dark-hc{
|
|
|
1031
999
|
text-decoration:none;
|
|
1032
1000
|
}
|
|
1033
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
|
+
|
|
1034
1022
|
.iui-badge{
|
|
1035
1023
|
--iui-badge-background-color:#c7ccd1;
|
|
1036
1024
|
--_iui-badge-text-color:rgba(0, 0, 0, 0.6);
|
|
@@ -1108,102 +1096,198 @@ html.iui-theme-dark-hc{
|
|
|
1108
1096
|
|
|
1109
1097
|
.iui-breadcrumbs-item{
|
|
1110
1098
|
display:flex;
|
|
1099
|
+
align-items:center;
|
|
1111
1100
|
line-height:38px;
|
|
1112
1101
|
height:38px;
|
|
1113
|
-
max-width:192px;
|
|
1114
|
-
margin:0 12px;
|
|
1115
1102
|
}
|
|
1116
|
-
.iui-breadcrumbs-item
|
|
1117
|
-
|
|
1103
|
+
.iui-breadcrumbs-item > *{
|
|
1104
|
+
max-width:26ch;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
.iui-breadcrumbs-item-overrides > *{
|
|
1108
|
+
padding:0 8px;
|
|
1109
|
+
overflow:hidden;
|
|
1110
|
+
white-space:nowrap;
|
|
1111
|
+
text-overflow:ellipsis;
|
|
1112
|
+
}
|
|
1113
|
+
.iui-breadcrumbs-item-overrides > *:not(.iui-button){
|
|
1114
|
+
color:rgba(0, 0, 0, 0.8);
|
|
1115
|
+
color:var(--iui-text-color);
|
|
1116
|
+
}
|
|
1117
|
+
.iui-breadcrumbs-item-overrides > :-webkit-any-link{
|
|
1118
|
+
color:#008ae0;
|
|
1119
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1120
|
+
color:var(--iui-color-foreground-primary);
|
|
1121
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1122
|
+
border-radius:3px;
|
|
1123
|
+
box-sizing:border-box;
|
|
1124
|
+
cursor:pointer;
|
|
1125
|
+
text-decoration:none;
|
|
1126
|
+
}
|
|
1127
|
+
.iui-breadcrumbs-item-overrides > :-moz-any-link{
|
|
1118
1128
|
color:#008ae0;
|
|
1119
1129
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1120
1130
|
color:var(--iui-color-foreground-primary);
|
|
1121
1131
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1122
1132
|
border-radius:3px;
|
|
1133
|
+
box-sizing:border-box;
|
|
1123
1134
|
cursor:pointer;
|
|
1124
1135
|
text-decoration:none;
|
|
1125
1136
|
}
|
|
1126
|
-
.iui-breadcrumbs-item
|
|
1137
|
+
.iui-breadcrumbs-item-overrides > :any-link{
|
|
1138
|
+
color:#008ae0;
|
|
1139
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1140
|
+
color:var(--iui-color-foreground-primary);
|
|
1141
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1142
|
+
border-radius:3px;
|
|
1143
|
+
box-sizing:border-box;
|
|
1144
|
+
cursor:pointer;
|
|
1145
|
+
text-decoration:none;
|
|
1146
|
+
}
|
|
1147
|
+
.iui-breadcrumbs-item-overrides > :-webkit-any-link:focus-visible{
|
|
1148
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1149
|
+
outline-offset:1px;
|
|
1150
|
+
}
|
|
1151
|
+
.iui-breadcrumbs-item-overrides > :-moz-any-link:focus-visible{
|
|
1152
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1153
|
+
outline-offset:1px;
|
|
1154
|
+
}
|
|
1155
|
+
.iui-breadcrumbs-item-overrides > :any-link:focus-visible{
|
|
1127
1156
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
1128
1157
|
outline-offset:1px;
|
|
1129
1158
|
}
|
|
1130
1159
|
@supports not selector(*:focus-visible){
|
|
1131
|
-
.iui-breadcrumbs-item
|
|
1160
|
+
.iui-breadcrumbs-item-overrides > :-webkit-any-link:focus{
|
|
1161
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1162
|
+
outline-offset:1px;
|
|
1163
|
+
}
|
|
1164
|
+
.iui-breadcrumbs-item-overrides > :-moz-any-link:focus{
|
|
1165
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1166
|
+
outline-offset:1px;
|
|
1167
|
+
}
|
|
1168
|
+
.iui-breadcrumbs-item-overrides > :any-link:focus{
|
|
1132
1169
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
1133
1170
|
outline-offset:1px;
|
|
1134
1171
|
}
|
|
1135
1172
|
}
|
|
1136
|
-
.iui-breadcrumbs-item
|
|
1173
|
+
.iui-breadcrumbs-item-overrides > :-webkit-any-link:hover{
|
|
1137
1174
|
color:#006bad;
|
|
1138
1175
|
color:var(--iui-color-foreground-primary-overlay);
|
|
1139
1176
|
}
|
|
1140
|
-
.iui-breadcrumbs-item
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
width:1.5ch;
|
|
1144
|
-
height:1.5ch;
|
|
1145
|
-
margin-left:0.5ch;
|
|
1146
|
-
vertical-align:-0.1ch;
|
|
1147
|
-
background-color:currentColor;
|
|
1148
|
-
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
1149
|
-
mask:var(--_iui-anchor-external-svg);
|
|
1177
|
+
.iui-breadcrumbs-item-overrides > :-moz-any-link:hover{
|
|
1178
|
+
color:#006bad;
|
|
1179
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
1150
1180
|
}
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
}
|
|
1181
|
+
.iui-breadcrumbs-item-overrides > :any-link:hover{
|
|
1182
|
+
color:#006bad;
|
|
1183
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
1155
1184
|
}
|
|
1156
|
-
.iui-breadcrumbs-item
|
|
1185
|
+
.iui-breadcrumbs-item-overrides > :-webkit-any-link:hover{
|
|
1186
|
+
text-decoration:underline;
|
|
1187
|
+
}
|
|
1188
|
+
.iui-breadcrumbs-item-overrides > :-moz-any-link:hover{
|
|
1189
|
+
text-decoration:underline;
|
|
1190
|
+
}
|
|
1191
|
+
.iui-breadcrumbs-item-overrides > :any-link:hover{
|
|
1157
1192
|
text-decoration:underline;
|
|
1158
1193
|
}
|
|
1159
1194
|
@media (prefers-contrast: more){
|
|
1160
|
-
.iui-breadcrumbs-item
|
|
1195
|
+
.iui-breadcrumbs-item-overrides > :-webkit-any-link{
|
|
1161
1196
|
text-decoration:underline;
|
|
1162
1197
|
}
|
|
1163
|
-
.iui-breadcrumbs-item
|
|
1198
|
+
.iui-breadcrumbs-item-overrides > :-moz-any-link{
|
|
1199
|
+
text-decoration:underline;
|
|
1200
|
+
}
|
|
1201
|
+
.iui-breadcrumbs-item-overrides > :any-link{
|
|
1202
|
+
text-decoration:underline;
|
|
1203
|
+
}
|
|
1204
|
+
.iui-breadcrumbs-item-overrides > :-webkit-any-link:hover{
|
|
1205
|
+
text-decoration:none;
|
|
1206
|
+
}
|
|
1207
|
+
.iui-breadcrumbs-item-overrides > :-moz-any-link:hover{
|
|
1208
|
+
text-decoration:none;
|
|
1209
|
+
}
|
|
1210
|
+
.iui-breadcrumbs-item-overrides > :any-link:hover{
|
|
1164
1211
|
text-decoration:none;
|
|
1165
1212
|
}
|
|
1166
1213
|
}
|
|
1167
|
-
.iui-theme-light .iui-breadcrumbs-item
|
|
1214
|
+
.iui-theme-light .iui-breadcrumbs-item-overrides > :-webkit-any-link, .iui-theme-dark .iui-breadcrumbs-item-overrides > :-webkit-any-link{
|
|
1215
|
+
text-decoration:none;
|
|
1216
|
+
}
|
|
1217
|
+
.iui-theme-light .iui-breadcrumbs-item-overrides > :-moz-any-link, .iui-theme-dark .iui-breadcrumbs-item-overrides > :-moz-any-link{
|
|
1168
1218
|
text-decoration:none;
|
|
1169
1219
|
}
|
|
1170
|
-
.iui-theme-light .iui-breadcrumbs-item
|
|
1220
|
+
.iui-theme-light .iui-breadcrumbs-item-overrides > :any-link, .iui-theme-dark .iui-breadcrumbs-item-overrides > :any-link{
|
|
1221
|
+
text-decoration:none;
|
|
1222
|
+
}
|
|
1223
|
+
.iui-theme-light .iui-breadcrumbs-item-overrides > :-webkit-any-link:hover, .iui-theme-dark .iui-breadcrumbs-item-overrides > :-webkit-any-link:hover{
|
|
1224
|
+
text-decoration:underline;
|
|
1225
|
+
}
|
|
1226
|
+
.iui-theme-light .iui-breadcrumbs-item-overrides > :-moz-any-link:hover, .iui-theme-dark .iui-breadcrumbs-item-overrides > :-moz-any-link:hover{
|
|
1227
|
+
text-decoration:underline;
|
|
1228
|
+
}
|
|
1229
|
+
.iui-theme-light .iui-breadcrumbs-item-overrides > :any-link:hover, .iui-theme-dark .iui-breadcrumbs-item-overrides > :any-link:hover{
|
|
1230
|
+
text-decoration:underline;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
.iui-theme-light-hc .iui-breadcrumbs-item-overrides > :-webkit-any-link, .iui-theme-dark-hc .iui-breadcrumbs-item-overrides > :-webkit-any-link{
|
|
1234
|
+
text-decoration:underline;
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
.iui-theme-light-hc .iui-breadcrumbs-item-overrides > :-moz-any-link, .iui-theme-dark-hc .iui-breadcrumbs-item-overrides > :-moz-any-link{
|
|
1171
1238
|
text-decoration:underline;
|
|
1172
1239
|
}
|
|
1173
1240
|
|
|
1174
|
-
.iui-theme-light-hc .iui-breadcrumbs-item
|
|
1241
|
+
.iui-theme-light-hc .iui-breadcrumbs-item-overrides > :any-link, .iui-theme-dark-hc .iui-breadcrumbs-item-overrides > :any-link{
|
|
1175
1242
|
text-decoration:underline;
|
|
1176
1243
|
}
|
|
1177
|
-
.iui-theme-light-hc .iui-breadcrumbs-item
|
|
1244
|
+
.iui-theme-light-hc .iui-breadcrumbs-item-overrides > :-webkit-any-link:hover, .iui-theme-dark-hc .iui-breadcrumbs-item-overrides > :-webkit-any-link:hover{
|
|
1245
|
+
text-decoration:none;
|
|
1246
|
+
}
|
|
1247
|
+
.iui-theme-light-hc .iui-breadcrumbs-item-overrides > :-moz-any-link:hover, .iui-theme-dark-hc .iui-breadcrumbs-item-overrides > :-moz-any-link:hover{
|
|
1248
|
+
text-decoration:none;
|
|
1249
|
+
}
|
|
1250
|
+
.iui-theme-light-hc .iui-breadcrumbs-item-overrides > :any-link:hover, .iui-theme-dark-hc .iui-breadcrumbs-item-overrides > :any-link:hover{
|
|
1178
1251
|
text-decoration:none;
|
|
1179
1252
|
}
|
|
1180
1253
|
|
|
1181
|
-
.iui-breadcrumbs-item
|
|
1254
|
+
.iui-breadcrumbs-item-overrides > :-webkit-any-link:focus{
|
|
1255
|
+
outline-offset:-1px;
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
.iui-breadcrumbs-item-overrides > :-moz-any-link:focus{
|
|
1259
|
+
outline-offset:-1px;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
.iui-breadcrumbs-item-overrides > :any-link:focus{
|
|
1263
|
+
outline-offset:-1px;
|
|
1264
|
+
}
|
|
1265
|
+
.iui-breadcrumbs-item-overrides .iui-button.iui-button{
|
|
1182
1266
|
border-color:transparent;
|
|
1183
1267
|
background-color:transparent;
|
|
1184
1268
|
padding:0 8px;
|
|
1185
1269
|
height:38px;
|
|
1186
1270
|
gap:8px;
|
|
1187
|
-
|
|
1271
|
+
border:none;
|
|
1188
1272
|
}
|
|
1189
|
-
.iui-breadcrumbs-item .iui-button > .iui-button-icon:only-child{
|
|
1273
|
+
.iui-breadcrumbs-item-overrides .iui-button.iui-button > .iui-button-icon:only-child{
|
|
1190
1274
|
margin-left:3px;
|
|
1191
1275
|
margin-right:3px;
|
|
1192
1276
|
}
|
|
1193
|
-
.iui-breadcrumbs-item .iui-button:hover{
|
|
1277
|
+
.iui-breadcrumbs-item-overrides .iui-button.iui-button:hover{
|
|
1194
1278
|
background-color:rgba(0, 0, 0, 0.1);
|
|
1195
1279
|
border-color:transparent;
|
|
1196
1280
|
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
|
|
1197
1281
|
border-color:transparent;
|
|
1198
1282
|
}
|
|
1199
|
-
.iui-breadcrumbs-item .iui-button.iui-active{
|
|
1283
|
+
.iui-breadcrumbs-item-overrides .iui-button.iui-button.iui-active{
|
|
1200
1284
|
background-color:rgba(0, 138, 224, 0.1);
|
|
1201
1285
|
color:#008ae0;
|
|
1202
1286
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
1203
1287
|
color:var(--iui-color-foreground-primary);
|
|
1204
1288
|
border-color:transparent;
|
|
1205
1289
|
}
|
|
1206
|
-
.iui-breadcrumbs-item .iui-button[disabled], .iui-breadcrumbs-item .iui-button:disabled{
|
|
1290
|
+
.iui-breadcrumbs-item-overrides .iui-button.iui-button[disabled], .iui-breadcrumbs-item-overrides .iui-button.iui-button:disabled{
|
|
1207
1291
|
cursor:not-allowed;
|
|
1208
1292
|
background:#edeff2;
|
|
1209
1293
|
border-color:#edeff2;
|
|
@@ -1216,55 +1300,215 @@ html.iui-theme-dark-hc{
|
|
|
1216
1300
|
background-color:transparent;
|
|
1217
1301
|
border-color:transparent;
|
|
1218
1302
|
}
|
|
1219
|
-
.iui-breadcrumbs-item .iui-button[disabled].iui-active, .iui-breadcrumbs-item .iui-button:disabled.iui-active{
|
|
1303
|
+
.iui-breadcrumbs-item-overrides .iui-button.iui-button[disabled].iui-active, .iui-breadcrumbs-item-overrides .iui-button.iui-button:disabled.iui-active{
|
|
1220
1304
|
background-color:rgba(0, 0, 0, 0.05);
|
|
1221
1305
|
background-color:rgba(var(--iui-color-foreground-body-rgb), 0.05);
|
|
1222
1306
|
}
|
|
1223
|
-
.iui-breadcrumbs-item
|
|
1224
|
-
|
|
1307
|
+
.iui-breadcrumbs-item-overrides .iui-button.iui-button:focus-visible{
|
|
1308
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1309
|
+
outline-offset:-1px;
|
|
1310
|
+
}
|
|
1311
|
+
@supports not selector(*:focus-visible){
|
|
1312
|
+
.iui-breadcrumbs-item-overrides .iui-button.iui-button:focus{
|
|
1313
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1314
|
+
outline-offset:-1px;
|
|
1315
|
+
}
|
|
1316
|
+
}
|
|
1317
|
+
.iui-breadcrumbs-item-overrides .iui-button-label{
|
|
1318
|
+
overflow:hidden;
|
|
1319
|
+
white-space:nowrap;
|
|
1320
|
+
text-overflow:ellipsis;
|
|
1321
|
+
}
|
|
1322
|
+
.iui-breadcrumbs-item-overrides .iui-button:not([aria-current]), .iui-breadcrumbs-item-overrides .iui-button:not([aria-current]):hover, .iui-breadcrumbs-item-overrides .iui-button:not([aria-current]):active{
|
|
1323
|
+
--_iui-button-text-color:var(--iui-color-foreground-primary);
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
.iui-breadcrumbs-text{
|
|
1327
|
+
padding:0 8px;
|
|
1225
1328
|
overflow:hidden;
|
|
1226
1329
|
white-space:nowrap;
|
|
1227
1330
|
text-overflow:ellipsis;
|
|
1228
1331
|
}
|
|
1229
|
-
.iui-breadcrumbs-
|
|
1332
|
+
a.iui-breadcrumbs-text{
|
|
1230
1333
|
color:#008ae0;
|
|
1334
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1231
1335
|
color:var(--iui-color-foreground-primary);
|
|
1336
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1337
|
+
border-radius:3px;
|
|
1338
|
+
box-sizing:border-box;
|
|
1339
|
+
cursor:pointer;
|
|
1340
|
+
text-decoration:none;
|
|
1341
|
+
}
|
|
1342
|
+
a.iui-breadcrumbs-text:focus-visible{
|
|
1343
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1344
|
+
outline-offset:1px;
|
|
1345
|
+
}
|
|
1346
|
+
@supports not selector(*:focus-visible){
|
|
1347
|
+
a.iui-breadcrumbs-text:focus{
|
|
1348
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1349
|
+
outline-offset:1px;
|
|
1350
|
+
}
|
|
1232
1351
|
}
|
|
1233
|
-
.iui-breadcrumbs-
|
|
1352
|
+
a.iui-breadcrumbs-text:hover{
|
|
1234
1353
|
color:#006bad;
|
|
1235
1354
|
color:var(--iui-color-foreground-primary-overlay);
|
|
1236
1355
|
}
|
|
1356
|
+
a.iui-breadcrumbs-text:hover{
|
|
1357
|
+
text-decoration:underline;
|
|
1358
|
+
}
|
|
1359
|
+
@media (prefers-contrast: more){
|
|
1360
|
+
a.iui-breadcrumbs-text{
|
|
1361
|
+
text-decoration:underline;
|
|
1362
|
+
}
|
|
1363
|
+
a.iui-breadcrumbs-text:hover{
|
|
1364
|
+
text-decoration:none;
|
|
1365
|
+
}
|
|
1366
|
+
}
|
|
1367
|
+
.iui-theme-light a.iui-breadcrumbs-text, .iui-theme-dark a.iui-breadcrumbs-text{
|
|
1368
|
+
text-decoration:none;
|
|
1369
|
+
}
|
|
1370
|
+
.iui-theme-light a.iui-breadcrumbs-text:hover, .iui-theme-dark a.iui-breadcrumbs-text:hover{
|
|
1371
|
+
text-decoration:underline;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
.iui-theme-light-hc a.iui-breadcrumbs-text, .iui-theme-dark-hc a.iui-breadcrumbs-text{
|
|
1375
|
+
text-decoration:underline;
|
|
1376
|
+
}
|
|
1377
|
+
.iui-theme-light-hc a.iui-breadcrumbs-text:hover, .iui-theme-dark-hc a.iui-breadcrumbs-text:hover{
|
|
1378
|
+
text-decoration:none;
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
a.iui-breadcrumbs-text:focus{
|
|
1382
|
+
outline-offset:-1px;
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
.iui-breadcrumbs-button{
|
|
1386
|
+
--_iui-button-active-stripe-inset:initial;
|
|
1387
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
1388
|
+
margin:0;
|
|
1389
|
+
padding:0;
|
|
1390
|
+
border:none;
|
|
1391
|
+
vertical-align:baseline;
|
|
1392
|
+
font-family:inherit;
|
|
1393
|
+
display:inline-flex;
|
|
1394
|
+
align-items:center;
|
|
1395
|
+
vertical-align:middle;
|
|
1396
|
+
justify-content:center;
|
|
1397
|
+
position:relative;
|
|
1398
|
+
box-sizing:border-box;
|
|
1399
|
+
border-radius:3px;
|
|
1400
|
+
line-height:22px;
|
|
1401
|
+
box-shadow:none;
|
|
1402
|
+
font-size:14px;
|
|
1403
|
+
font-weight:400;
|
|
1404
|
+
text-decoration:none;
|
|
1405
|
+
-webkit-user-select:none;
|
|
1406
|
+
-moz-user-select:none;
|
|
1407
|
+
-ms-user-select:none;
|
|
1408
|
+
user-select:none;
|
|
1409
|
+
cursor:pointer;
|
|
1410
|
+
white-space:nowrap;
|
|
1411
|
+
border:1px solid transparent;
|
|
1412
|
+
color:rgba(0, 0, 0, 0.8);
|
|
1413
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
1414
|
+
color:var(--_iui-button-text-color);
|
|
1415
|
+
border-color:transparent;
|
|
1416
|
+
background-color:transparent;
|
|
1417
|
+
padding:0 8px;
|
|
1418
|
+
height:38px;
|
|
1419
|
+
gap:8px;
|
|
1420
|
+
padding:0;
|
|
1421
|
+
border:none;
|
|
1422
|
+
color:#008ae0;
|
|
1423
|
+
color:var(--iui-color-foreground-primary);
|
|
1424
|
+
}
|
|
1425
|
+
@media (prefers-reduced-motion: no-preference){
|
|
1426
|
+
.iui-breadcrumbs-button{
|
|
1427
|
+
transition:color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
.iui-breadcrumbs-button:hover{
|
|
1431
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
1432
|
+
text-decoration:none;
|
|
1433
|
+
}
|
|
1434
|
+
.iui-breadcrumbs-button:focus-visible{
|
|
1435
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1436
|
+
outline-offset:-1px;
|
|
1437
|
+
}
|
|
1438
|
+
@supports not selector(*:focus-visible){
|
|
1439
|
+
.iui-breadcrumbs-button:focus{
|
|
1440
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
1441
|
+
outline-offset:-1px;
|
|
1442
|
+
}
|
|
1443
|
+
}
|
|
1444
|
+
.iui-breadcrumbs-button[disabled], .iui-breadcrumbs-button:disabled{
|
|
1445
|
+
cursor:not-allowed;
|
|
1446
|
+
background:#edeff2;
|
|
1447
|
+
border-color:#edeff2;
|
|
1448
|
+
color:rgba(0, 0, 0, 0.2);
|
|
1449
|
+
background:var(--iui-color-background-disabled);
|
|
1450
|
+
border-color:var(--iui-color-background-disabled);
|
|
1451
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
1452
|
+
}
|
|
1453
|
+
.iui-breadcrumbs-button > .iui-button-icon:only-child{
|
|
1454
|
+
margin-left:3px;
|
|
1455
|
+
margin-right:3px;
|
|
1456
|
+
}
|
|
1457
|
+
.iui-breadcrumbs-button:hover{
|
|
1458
|
+
background-color:rgba(0, 0, 0, 0.1);
|
|
1459
|
+
border-color:transparent;
|
|
1460
|
+
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
|
|
1461
|
+
border-color:transparent;
|
|
1462
|
+
}
|
|
1463
|
+
.iui-breadcrumbs-button.iui-active{
|
|
1464
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
1465
|
+
color:#008ae0;
|
|
1466
|
+
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
1467
|
+
color:var(--iui-color-foreground-primary);
|
|
1468
|
+
border-color:transparent;
|
|
1469
|
+
}
|
|
1470
|
+
.iui-breadcrumbs-button[disabled], .iui-breadcrumbs-button:disabled{
|
|
1471
|
+
cursor:not-allowed;
|
|
1472
|
+
background:#edeff2;
|
|
1473
|
+
border-color:#edeff2;
|
|
1474
|
+
color:rgba(0, 0, 0, 0.2);
|
|
1475
|
+
background:var(--iui-color-background-disabled);
|
|
1476
|
+
border-color:var(--iui-color-background-disabled);
|
|
1477
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
1478
|
+
background-color:transparent;
|
|
1479
|
+
border-color:transparent;
|
|
1480
|
+
background-color:transparent;
|
|
1481
|
+
border-color:transparent;
|
|
1482
|
+
}
|
|
1483
|
+
.iui-breadcrumbs-button[disabled].iui-active, .iui-breadcrumbs-button:disabled.iui-active{
|
|
1484
|
+
background-color:rgba(0, 0, 0, 0.05);
|
|
1485
|
+
background-color:rgba(var(--iui-color-foreground-body-rgb), 0.05);
|
|
1486
|
+
}
|
|
1487
|
+
.iui-breadcrumbs-button[aria-current]{
|
|
1488
|
+
color:rgba(0, 0, 0, 0.8);
|
|
1489
|
+
color:var(--iui-text-color);
|
|
1490
|
+
}
|
|
1237
1491
|
|
|
1238
1492
|
.iui-breadcrumbs-separator{
|
|
1239
1493
|
display:flex;
|
|
1494
|
+
margin:0 2px;
|
|
1240
1495
|
}
|
|
1241
1496
|
.iui-breadcrumbs-separator svg{
|
|
1242
|
-
fill:rgba(0, 0, 0, 0.4);
|
|
1243
|
-
fill:var(--iui-icons-color);
|
|
1244
|
-
display:inline-flex;
|
|
1245
1497
|
width:12px;
|
|
1246
1498
|
height:12px;
|
|
1247
1499
|
display:flex;
|
|
1500
|
+
fill:rgba(0, 0, 0, 0.4);
|
|
1501
|
+
fill:var(--iui-icons-color);
|
|
1248
1502
|
}
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
}
|
|
1253
|
-
.iui-breadcrumbs-separator svg.iui-positive{
|
|
1254
|
-
fill:#53a21a;
|
|
1255
|
-
fill:var(--iui-icons-color-positive);
|
|
1256
|
-
}
|
|
1257
|
-
.iui-breadcrumbs-separator svg.iui-warning{
|
|
1258
|
-
fill:#f18d13;
|
|
1259
|
-
fill:var(--iui-icons-color-warning);
|
|
1260
|
-
}
|
|
1261
|
-
.iui-breadcrumbs-separator svg.iui-negative{
|
|
1262
|
-
fill:#d10a0a;
|
|
1263
|
-
fill:var(--iui-icons-color-negative);
|
|
1503
|
+
@media (forced-colors: active){
|
|
1504
|
+
.iui-breadcrumbs-separator svg{
|
|
1505
|
+
fill:CanvasText;
|
|
1506
|
+
}
|
|
1264
1507
|
}
|
|
1265
1508
|
|
|
1266
1509
|
.iui-button{
|
|
1267
1510
|
--_iui-button-active-stripe-inset:initial;
|
|
1511
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
1268
1512
|
margin:0;
|
|
1269
1513
|
padding:0;
|
|
1270
1514
|
border:none;
|
|
@@ -1291,6 +1535,7 @@ html.iui-theme-dark-hc{
|
|
|
1291
1535
|
border:1px solid transparent;
|
|
1292
1536
|
color:rgba(0, 0, 0, 0.8);
|
|
1293
1537
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
1538
|
+
color:var(--_iui-button-text-color);
|
|
1294
1539
|
padding:0 16px;
|
|
1295
1540
|
height:38px;
|
|
1296
1541
|
gap:8px;
|
|
@@ -1304,9 +1549,8 @@ html.iui-theme-dark-hc{
|
|
|
1304
1549
|
}
|
|
1305
1550
|
}
|
|
1306
1551
|
.iui-button:hover{
|
|
1552
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
1307
1553
|
text-decoration:none;
|
|
1308
|
-
color:black;
|
|
1309
|
-
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
1310
1554
|
}
|
|
1311
1555
|
.iui-button:focus-visible{
|
|
1312
1556
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -1339,10 +1583,8 @@ html.iui-theme-dark-hc{
|
|
|
1339
1583
|
.iui-button.iui-default{
|
|
1340
1584
|
background-color:white;
|
|
1341
1585
|
border-color:rgba(0, 0, 0, 0.4);
|
|
1342
|
-
color:rgba(0, 0, 0, 0.8);
|
|
1343
1586
|
background-color:var(--iui-color-background-1);
|
|
1344
1587
|
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
1345
|
-
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
1346
1588
|
}
|
|
1347
1589
|
.iui-button.iui-default:focus-visible{
|
|
1348
1590
|
outline:2px solid var(--iui-color-foreground-primary);
|
|
@@ -1357,10 +1599,8 @@ html.iui-theme-dark-hc{
|
|
|
1357
1599
|
.iui-button.iui-default:hover, .iui-button.iui-default:active{
|
|
1358
1600
|
background-color:#f2f2f2;
|
|
1359
1601
|
border-color:black;
|
|
1360
|
-
color:black;
|
|
1361
1602
|
background-color:var(--iui-color-background-1-overlay);
|
|
1362
1603
|
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
1363
|
-
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
1364
1604
|
}
|
|
1365
1605
|
.iui-button.iui-default:hover .iui-notification-primary::before,
|
|
1366
1606
|
.iui-button.iui-default:hover .iui-notification-positive::before,
|
|
@@ -1403,12 +1643,14 @@ html.iui-theme-dark-hc{
|
|
|
1403
1643
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
1404
1644
|
}
|
|
1405
1645
|
.iui-button.iui-high-visibility{
|
|
1646
|
+
--_iui-button-text-color:var(--iui-color-foreground-accessory);
|
|
1406
1647
|
background-color:#008ae0;
|
|
1407
1648
|
border-color:#008ae0;
|
|
1408
1649
|
color:white;
|
|
1409
1650
|
background-color:var(--iui-color-background-primary);
|
|
1410
1651
|
border-color:var(--iui-color-background-primary);
|
|
1411
1652
|
color:var(--iui-color-foreground-accessory);
|
|
1653
|
+
color:var(--_iui-button-text-color);
|
|
1412
1654
|
}
|
|
1413
1655
|
.iui-button.iui-high-visibility:focus-visible{
|
|
1414
1656
|
outline:1px solid var(--iui-color-foreground-accessory);
|
|
@@ -1423,10 +1665,8 @@ html.iui-theme-dark-hc{
|
|
|
1423
1665
|
.iui-button.iui-high-visibility:hover, .iui-button.iui-high-visibility:active{
|
|
1424
1666
|
background-color:#006bad;
|
|
1425
1667
|
border-color:#006bad;
|
|
1426
|
-
color:white;
|
|
1427
1668
|
background-color:var(--iui-color-background-primary-overlay);
|
|
1428
1669
|
border-color:var(--iui-color-background-primary-overlay);
|
|
1429
|
-
color:var(--iui-color-foreground-accessory);
|
|
1430
1670
|
}
|
|
1431
1671
|
.iui-button.iui-high-visibility[disabled], .iui-button.iui-high-visibility:disabled{
|
|
1432
1672
|
cursor:not-allowed;
|
|
@@ -1438,12 +1678,14 @@ html.iui-theme-dark-hc{
|
|
|
1438
1678
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
1439
1679
|
}
|
|
1440
1680
|
.iui-button.iui-cta{
|
|
1681
|
+
--_iui-button-text-color:var(--iui-color-foreground-accessory);
|
|
1441
1682
|
background-color:#53a21a;
|
|
1442
1683
|
border-color:#53a21a;
|
|
1443
1684
|
color:white;
|
|
1444
1685
|
background-color:var(--iui-color-background-positive);
|
|
1445
1686
|
border-color:var(--iui-color-background-positive);
|
|
1446
1687
|
color:var(--iui-color-foreground-accessory);
|
|
1688
|
+
color:var(--_iui-button-text-color);
|
|
1447
1689
|
}
|
|
1448
1690
|
.iui-button.iui-cta:focus-visible{
|
|
1449
1691
|
outline:1px solid var(--iui-color-foreground-accessory);
|
|
@@ -1458,10 +1700,8 @@ html.iui-theme-dark-hc{
|
|
|
1458
1700
|
.iui-button.iui-cta:hover, .iui-button.iui-cta:active{
|
|
1459
1701
|
background-color:#3d7613;
|
|
1460
1702
|
border-color:#3d7613;
|
|
1461
|
-
color:white;
|
|
1462
1703
|
background-color:var(--iui-color-background-positive-overlay);
|
|
1463
1704
|
border-color:var(--iui-color-background-positive-overlay);
|
|
1464
|
-
color:var(--iui-color-foreground-accessory);
|
|
1465
1705
|
}
|
|
1466
1706
|
.iui-button.iui-cta[disabled], .iui-button.iui-cta:disabled{
|
|
1467
1707
|
cursor:not-allowed;
|
|
@@ -1473,12 +1713,14 @@ html.iui-theme-dark-hc{
|
|
|
1473
1713
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
1474
1714
|
}
|
|
1475
1715
|
.iui-button.iui-idea{
|
|
1716
|
+
--_iui-button-text-color:var(--iui-color-foreground-accessory);
|
|
1476
1717
|
background-color:#008ae0;
|
|
1477
1718
|
border-color:#008ae0;
|
|
1478
1719
|
color:white;
|
|
1479
1720
|
background-color:var(--iui-color-background-primary);
|
|
1480
1721
|
border-color:var(--iui-color-background-primary);
|
|
1481
1722
|
color:var(--iui-color-foreground-accessory);
|
|
1723
|
+
color:var(--_iui-button-text-color);
|
|
1482
1724
|
border-radius:22px;
|
|
1483
1725
|
box-shadow:0 9px 46px rgba(0, 0, 0, 0.25);
|
|
1484
1726
|
position:fixed;
|
|
@@ -1498,10 +1740,8 @@ html.iui-theme-dark-hc{
|
|
|
1498
1740
|
.iui-button.iui-idea:hover, .iui-button.iui-idea:active{
|
|
1499
1741
|
background-color:#006bad;
|
|
1500
1742
|
border-color:#006bad;
|
|
1501
|
-
color:white;
|
|
1502
1743
|
background-color:var(--iui-color-background-primary-overlay);
|
|
1503
1744
|
border-color:var(--iui-color-background-primary-overlay);
|
|
1504
|
-
color:var(--iui-color-foreground-accessory);
|
|
1505
1745
|
}
|
|
1506
1746
|
.iui-button.iui-idea[disabled], .iui-button.iui-idea:disabled{
|
|
1507
1747
|
cursor:not-allowed;
|
|
@@ -2704,9 +2944,207 @@ html.iui-theme-dark-hc{
|
|
|
2704
2944
|
background-color:rgba(0, 138, 224, 0.4);
|
|
2705
2945
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-4));
|
|
2706
2946
|
}
|
|
2707
|
-
.iui-calendar-day-range-today::before{
|
|
2708
|
-
border-color:rgba(0, 138, 224, 0.4);
|
|
2709
|
-
border-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-4));
|
|
2947
|
+
.iui-calendar-day-range-today::before{
|
|
2948
|
+
border-color:rgba(0, 138, 224, 0.4);
|
|
2949
|
+
border-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-4));
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2952
|
+
.iui-dialog-backdrop{
|
|
2953
|
+
margin:0;
|
|
2954
|
+
padding:0;
|
|
2955
|
+
border:none;
|
|
2956
|
+
vertical-align:baseline;
|
|
2957
|
+
z-index:999;
|
|
2958
|
+
isolation:isolate;
|
|
2959
|
+
position:fixed;
|
|
2960
|
+
top:0;
|
|
2961
|
+
left:0;
|
|
2962
|
+
width:100%;
|
|
2963
|
+
height:100%;
|
|
2964
|
+
background-color:rgba(0, 0, 0, 0.4);
|
|
2965
|
+
background-color:rgba(0, 0, 0, var(--iui-opacity-4));
|
|
2966
|
+
visibility:hidden;
|
|
2967
|
+
opacity:0;
|
|
2968
|
+
transition:visibility 0s linear 0.2s, opacity 0.2s ease-out;
|
|
2969
|
+
}
|
|
2970
|
+
.iui-dialog-backdrop.iui-dialog-visible{
|
|
2971
|
+
visibility:visible;
|
|
2972
|
+
opacity:1;
|
|
2973
|
+
transition-delay:0s;
|
|
2974
|
+
}
|
|
2975
|
+
.iui-dialog-backdrop.iui-dialog-backdrop-relative{
|
|
2976
|
+
position:relative;
|
|
2977
|
+
overflow:hidden;
|
|
2978
|
+
}
|
|
2979
|
+
|
|
2980
|
+
.iui-dialog{
|
|
2981
|
+
border-radius:3px;
|
|
2982
|
+
box-shadow:0 9px 46px rgba(0, 0, 0, 0.25);
|
|
2983
|
+
box-sizing:border-box;
|
|
2984
|
+
position:absolute;
|
|
2985
|
+
padding:11px 16px;
|
|
2986
|
+
box-sizing:border-box;
|
|
2987
|
+
padding:11px 16px;
|
|
2988
|
+
overflow:hidden;
|
|
2989
|
+
background-color:white;
|
|
2990
|
+
background-color:var(--iui-color-background-1);
|
|
2991
|
+
}
|
|
2992
|
+
@media (forced-colors: active){
|
|
2993
|
+
.iui-dialog{
|
|
2994
|
+
border:1px solid;
|
|
2995
|
+
}
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
.iui-dialog-default .iui-dialog{
|
|
2999
|
+
left:50%;
|
|
3000
|
+
top:33%;
|
|
3001
|
+
transform:translate(-50%, -33%);
|
|
3002
|
+
max-width:50%;
|
|
3003
|
+
min-width:380px;
|
|
3004
|
+
max-height:100vh;
|
|
3005
|
+
}
|
|
3006
|
+
@media screen and (max-width: 400px){
|
|
3007
|
+
.iui-dialog-default .iui-dialog{
|
|
3008
|
+
max-width:95%;
|
|
3009
|
+
width:95%;
|
|
3010
|
+
min-width:95%;
|
|
3011
|
+
}
|
|
3012
|
+
}
|
|
3013
|
+
|
|
3014
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3015
|
+
.iui-dialog-full-page{
|
|
3016
|
+
transition:visibility 0s linear 0.8s, opacity 0.4s ease-out 0.2s;
|
|
3017
|
+
}
|
|
3018
|
+
}
|
|
3019
|
+
.iui-dialog-full-page .iui-dialog{
|
|
3020
|
+
border-radius:0;
|
|
3021
|
+
height:100vh;
|
|
3022
|
+
width:100vw;
|
|
3023
|
+
top:0;
|
|
3024
|
+
left:0;
|
|
3025
|
+
max-width:initial;
|
|
3026
|
+
min-width:initial;
|
|
3027
|
+
display:flex;
|
|
3028
|
+
flex-direction:column;
|
|
3029
|
+
will-change:transform;
|
|
3030
|
+
}
|
|
3031
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3032
|
+
.iui-dialog-full-page .iui-dialog{
|
|
3033
|
+
transform:translateY(100%);
|
|
3034
|
+
transition:visibility 0s linear 0.4s, opacity 0s linear 0.4s, transform 0.2s ease-in;
|
|
3035
|
+
}
|
|
3036
|
+
}
|
|
3037
|
+
.iui-dialog-full-page.iui-dialog-visible .iui-dialog{
|
|
3038
|
+
transform:translateY(0);
|
|
3039
|
+
}
|
|
3040
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3041
|
+
.iui-dialog-full-page.iui-dialog-visible .iui-dialog{
|
|
3042
|
+
transition:transform 0.4s ease-out;
|
|
3043
|
+
}
|
|
3044
|
+
}
|
|
3045
|
+
|
|
3046
|
+
.iui-dialog-draggable{
|
|
3047
|
+
background-color:transparent;
|
|
3048
|
+
pointer-events:none;
|
|
3049
|
+
z-index:998;
|
|
3050
|
+
}
|
|
3051
|
+
.iui-dialog-draggable .iui-dialog{
|
|
3052
|
+
pointer-events:initial;
|
|
3053
|
+
max-width:100vw;
|
|
3054
|
+
max-height:100vh;
|
|
3055
|
+
min-width:380px;
|
|
3056
|
+
min-height:144px;
|
|
3057
|
+
display:flex;
|
|
3058
|
+
flex-direction:column;
|
|
3059
|
+
padding:0;
|
|
3060
|
+
border:1px solid #c7ccd1;
|
|
3061
|
+
border:1px solid var(--iui-color-background-border);
|
|
3062
|
+
}
|
|
3063
|
+
|
|
3064
|
+
.iui-dialog-title{
|
|
3065
|
+
font-size:inherit;
|
|
3066
|
+
white-space:nowrap;
|
|
3067
|
+
overflow:hidden;
|
|
3068
|
+
text-overflow:ellipsis;
|
|
3069
|
+
line-height:1.5;
|
|
3070
|
+
}
|
|
3071
|
+
|
|
3072
|
+
.iui-dialog-title-bar{
|
|
3073
|
+
display:flex;
|
|
3074
|
+
align-items:center;
|
|
3075
|
+
margin-bottom:11px;
|
|
3076
|
+
justify-content:space-between;
|
|
3077
|
+
box-sizing:border-box;
|
|
3078
|
+
font-size:18px;
|
|
3079
|
+
}
|
|
3080
|
+
.iui-dialog-draggable .iui-dialog-title-bar{
|
|
3081
|
+
-webkit-user-select:none;
|
|
3082
|
+
-moz-user-select:none;
|
|
3083
|
+
-ms-user-select:none;
|
|
3084
|
+
user-select:none;
|
|
3085
|
+
font-size:16px;
|
|
3086
|
+
padding:6px 16px;
|
|
3087
|
+
cursor:-webkit-grab;
|
|
3088
|
+
cursor:grab;
|
|
3089
|
+
background-color:#edeff2;
|
|
3090
|
+
border-bottom:1px solid #c7ccd1;
|
|
3091
|
+
background-color:var(--iui-color-background-3);
|
|
3092
|
+
border-bottom:1px solid var(--iui-color-background-border);
|
|
3093
|
+
}
|
|
3094
|
+
.iui-dialog-draggable .iui-dialog-title-bar:active{
|
|
3095
|
+
cursor:-webkit-grabbing;
|
|
3096
|
+
cursor:grabbing;
|
|
3097
|
+
}
|
|
3098
|
+
|
|
3099
|
+
.iui-dialog-content{
|
|
3100
|
+
flex-grow:2;
|
|
3101
|
+
margin:0 -16px;
|
|
3102
|
+
padding:0 16px;
|
|
3103
|
+
overflow-y:auto;
|
|
3104
|
+
overflow-y:overlay;
|
|
3105
|
+
}
|
|
3106
|
+
.iui-dialog-draggable .iui-dialog-content{
|
|
3107
|
+
margin:0;
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3110
|
+
.iui-dialog-button-bar{
|
|
3111
|
+
margin-top:11px;
|
|
3112
|
+
display:flex;
|
|
3113
|
+
align-items:center;
|
|
3114
|
+
justify-content:flex-end;
|
|
3115
|
+
}
|
|
3116
|
+
.iui-dialog-draggable .iui-dialog-button-bar{
|
|
3117
|
+
padding:0 16px 11px 16px;
|
|
3118
|
+
}
|
|
3119
|
+
|
|
3120
|
+
.iui-dialog-button-bar > .iui-button:not(:last-child){
|
|
3121
|
+
margin-right:8px;
|
|
3122
|
+
}
|
|
3123
|
+
@supports ((-moz-column-gap: 8px) or (column-gap: 8px)){
|
|
3124
|
+
.iui-dialog-button-bar{
|
|
3125
|
+
-moz-column-gap:8px;
|
|
3126
|
+
column-gap:8px;
|
|
3127
|
+
}
|
|
3128
|
+
.iui-dialog-button-bar > .iui-button:not(:last-child){
|
|
3129
|
+
margin-right:0;
|
|
3130
|
+
}
|
|
3131
|
+
}
|
|
3132
|
+
|
|
3133
|
+
.iui-dialog-animation-enter .iui-dialog-full-page .iui-dialog{
|
|
3134
|
+
transform:translateY(100%);
|
|
3135
|
+
opacity:0;
|
|
3136
|
+
}
|
|
3137
|
+
.iui-dialog-animation-enter-active .iui-dialog-full-page .iui-dialog{
|
|
3138
|
+
transform:translateY(0);
|
|
3139
|
+
opacity:1;
|
|
3140
|
+
}
|
|
3141
|
+
.iui-dialog-animation-enter .iui-dialog-backdrop{
|
|
3142
|
+
visibility:hidden;
|
|
3143
|
+
opacity:0;
|
|
3144
|
+
}
|
|
3145
|
+
.iui-dialog-animation-enter-active .iui-dialog-backdrop{
|
|
3146
|
+
visibility:visible;
|
|
3147
|
+
opacity:1;
|
|
2710
3148
|
}
|
|
2711
3149
|
|
|
2712
3150
|
.iui-expandable-block{
|
|
@@ -3107,12 +3545,12 @@ html.iui-theme-dark-hc{
|
|
|
3107
3545
|
background-color:var(--iui-text-color-muted);
|
|
3108
3546
|
}
|
|
3109
3547
|
.iui-legal-footer > ul > li > a{
|
|
3110
|
-
--_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>");
|
|
3111
3548
|
color:#008ae0;
|
|
3112
3549
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
3113
3550
|
color:var(--iui-color-foreground-primary);
|
|
3114
3551
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
3115
3552
|
border-radius:3px;
|
|
3553
|
+
box-sizing:border-box;
|
|
3116
3554
|
cursor:pointer;
|
|
3117
3555
|
text-decoration:none;
|
|
3118
3556
|
}
|
|
@@ -3130,22 +3568,6 @@ html.iui-theme-dark-hc{
|
|
|
3130
3568
|
color:#006bad;
|
|
3131
3569
|
color:var(--iui-color-foreground-primary-overlay);
|
|
3132
3570
|
}
|
|
3133
|
-
.iui-legal-footer > ul > li > a-external::after{
|
|
3134
|
-
content:"";
|
|
3135
|
-
display:inline-block;
|
|
3136
|
-
width:1.5ch;
|
|
3137
|
-
height:1.5ch;
|
|
3138
|
-
margin-left:0.5ch;
|
|
3139
|
-
vertical-align:-0.1ch;
|
|
3140
|
-
background-color:currentColor;
|
|
3141
|
-
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
3142
|
-
mask:var(--_iui-anchor-external-svg);
|
|
3143
|
-
}
|
|
3144
|
-
@media (forced-colors: active){
|
|
3145
|
-
.iui-legal-footer > ul > li > a-external::after{
|
|
3146
|
-
background-color:LinkText;
|
|
3147
|
-
}
|
|
3148
|
-
}
|
|
3149
3571
|
.iui-legal-footer > ul > li > a:hover{
|
|
3150
3572
|
text-decoration:underline;
|
|
3151
3573
|
}
|
|
@@ -3936,7 +4358,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
3936
4358
|
min-width:192px;
|
|
3937
4359
|
height:100%;
|
|
3938
4360
|
transform:translateX(100%);
|
|
3939
|
-
box-shadow:-1px 0
|
|
4361
|
+
box-shadow:-1px 0 10px rgba(0, 0, 0, 0.25);
|
|
3940
4362
|
-webkit-clip-path:inset(0 0 0 -15px);
|
|
3941
4363
|
clip-path:inset(0 0 0 -15px);
|
|
3942
4364
|
}
|
|
@@ -3969,7 +4391,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
3969
4391
|
min-height:192px;
|
|
3970
4392
|
width:100%;
|
|
3971
4393
|
transform:translateY(100%);
|
|
3972
|
-
box-shadow:0 -1px
|
|
4394
|
+
box-shadow:0 -1px 10px rgba(0, 0, 0, 0.25);
|
|
3973
4395
|
-webkit-clip-path:inset(-15px 0 0 0);
|
|
3974
4396
|
clip-path:inset(-15px 0 0 0);
|
|
3975
4397
|
}
|
|
@@ -5500,135 +5922,6 @@ label.iui-input-label.iui-disabled{
|
|
|
5500
5922
|
background-color:var(--iui-color-background-border);
|
|
5501
5923
|
}
|
|
5502
5924
|
|
|
5503
|
-
.iui-modal{
|
|
5504
|
-
margin:0;
|
|
5505
|
-
padding:0;
|
|
5506
|
-
border:none;
|
|
5507
|
-
vertical-align:baseline;
|
|
5508
|
-
z-index:999;
|
|
5509
|
-
position:fixed;
|
|
5510
|
-
top:0;
|
|
5511
|
-
left:0;
|
|
5512
|
-
width:100%;
|
|
5513
|
-
height:100%;
|
|
5514
|
-
background-color:rgba(0, 0, 0, 0.4);
|
|
5515
|
-
background-color:rgba(0, 0, 0, var(--iui-opacity-4));
|
|
5516
|
-
visibility:hidden;
|
|
5517
|
-
opacity:0;
|
|
5518
|
-
}
|
|
5519
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5520
|
-
.iui-modal{
|
|
5521
|
-
transition:visibility 0s linear 0.2s, opacity 0.2s ease-out;
|
|
5522
|
-
}
|
|
5523
|
-
}
|
|
5524
|
-
.iui-modal.iui-modal-visible{
|
|
5525
|
-
visibility:visible;
|
|
5526
|
-
opacity:1;
|
|
5527
|
-
transition-delay:0s;
|
|
5528
|
-
}
|
|
5529
|
-
.iui-modal > .iui-modal-dialog{
|
|
5530
|
-
position:absolute;
|
|
5531
|
-
left:50%;
|
|
5532
|
-
top:33%;
|
|
5533
|
-
transform:translate(-50%, -33%);
|
|
5534
|
-
z-index:1000;
|
|
5535
|
-
max-width:50%;
|
|
5536
|
-
min-width:380px;
|
|
5537
|
-
max-height:100vh;
|
|
5538
|
-
border-radius:3px;
|
|
5539
|
-
box-shadow:0 9px 46px rgba(0, 0, 0, 0.25);
|
|
5540
|
-
padding:11px 16px;
|
|
5541
|
-
box-sizing:border-box;
|
|
5542
|
-
background-color:white;
|
|
5543
|
-
background-color:var(--iui-color-background-1);
|
|
5544
|
-
}
|
|
5545
|
-
@media screen and (max-width: 400px){
|
|
5546
|
-
.iui-modal > .iui-modal-dialog{
|
|
5547
|
-
max-width:95%;
|
|
5548
|
-
width:95%;
|
|
5549
|
-
min-width:95%;
|
|
5550
|
-
}
|
|
5551
|
-
}
|
|
5552
|
-
.iui-modal > .iui-modal-dialog .iui-title-bar{
|
|
5553
|
-
display:flex;
|
|
5554
|
-
align-items:center;
|
|
5555
|
-
margin-bottom:11px;
|
|
5556
|
-
justify-content:space-between;
|
|
5557
|
-
}
|
|
5558
|
-
.iui-modal > .iui-modal-dialog .iui-title-bar > .iui-title{
|
|
5559
|
-
font-size:18px;
|
|
5560
|
-
white-space:nowrap;
|
|
5561
|
-
overflow:hidden;
|
|
5562
|
-
text-overflow:ellipsis;
|
|
5563
|
-
line-height:1.5;
|
|
5564
|
-
}
|
|
5565
|
-
.iui-modal > .iui-modal-dialog .iui-button-bar{
|
|
5566
|
-
margin-top:11px;
|
|
5567
|
-
display:flex;
|
|
5568
|
-
align-items:center;
|
|
5569
|
-
justify-content:flex-end;
|
|
5570
|
-
}
|
|
5571
|
-
.iui-modal > .iui-modal-dialog .iui-button-bar > .iui-button:not(:last-child){
|
|
5572
|
-
margin-right:8px;
|
|
5573
|
-
}
|
|
5574
|
-
.iui-modal > .iui-modal-dialog .iui-modal-content{
|
|
5575
|
-
flex-grow:2;
|
|
5576
|
-
margin:0 -16px;
|
|
5577
|
-
padding:0 16px;
|
|
5578
|
-
overflow-y:auto;
|
|
5579
|
-
overflow-y:overlay;
|
|
5580
|
-
}
|
|
5581
|
-
.iui-modal-full-page > .iui-modal-dialog{
|
|
5582
|
-
display:flex;
|
|
5583
|
-
flex-direction:column;
|
|
5584
|
-
height:100vh;
|
|
5585
|
-
width:100vw;
|
|
5586
|
-
left:0;
|
|
5587
|
-
top:0;
|
|
5588
|
-
transform:none;
|
|
5589
|
-
max-width:initial;
|
|
5590
|
-
min-width:initial;
|
|
5591
|
-
border-radius:0;
|
|
5592
|
-
will-change:transform;
|
|
5593
|
-
}
|
|
5594
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5595
|
-
.iui-modal-full-page{
|
|
5596
|
-
transition:visibility 0s linear 0.8s, opacity 0.4s ease-out 0.2s;
|
|
5597
|
-
}
|
|
5598
|
-
}
|
|
5599
|
-
.iui-modal-full-page > .iui-modal-dialog{
|
|
5600
|
-
transform:translateY(100%);
|
|
5601
|
-
}
|
|
5602
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5603
|
-
.iui-modal-full-page > .iui-modal-dialog{
|
|
5604
|
-
transition:visibility 0s linear 0.4s, opacity 0s linear 0.4s, transform 0.25s ease-in;
|
|
5605
|
-
}
|
|
5606
|
-
}
|
|
5607
|
-
.iui-modal-full-page.iui-modal-visible > .iui-modal-dialog{
|
|
5608
|
-
transform:translateY(0);
|
|
5609
|
-
}
|
|
5610
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5611
|
-
.iui-modal-full-page.iui-modal-visible > .iui-modal-dialog{
|
|
5612
|
-
transition:transform 0.3s ease-out;
|
|
5613
|
-
}
|
|
5614
|
-
}
|
|
5615
|
-
.iui-modal-animation-enter .iui-modal-full-page .iui-modal-dialog{
|
|
5616
|
-
transform:translateY(100%);
|
|
5617
|
-
opacity:0;
|
|
5618
|
-
}
|
|
5619
|
-
.iui-modal-animation-enter-active .iui-modal-full-page .iui-modal-dialog{
|
|
5620
|
-
transform:translateY(0);
|
|
5621
|
-
opacity:1;
|
|
5622
|
-
}
|
|
5623
|
-
.iui-modal-animation-enter .iui-modal{
|
|
5624
|
-
visibility:hidden;
|
|
5625
|
-
opacity:0;
|
|
5626
|
-
}
|
|
5627
|
-
.iui-modal-animation-enter-active .iui-modal{
|
|
5628
|
-
visibility:visible;
|
|
5629
|
-
opacity:1;
|
|
5630
|
-
}
|
|
5631
|
-
|
|
5632
5925
|
.iui-non-ideal-state{
|
|
5633
5926
|
margin:0;
|
|
5634
5927
|
padding:0;
|
|
@@ -6418,12 +6711,12 @@ label.iui-input-label.iui-disabled{
|
|
|
6418
6711
|
border-color:rgba(0, 0, 0, 0.8);
|
|
6419
6712
|
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
6420
6713
|
}
|
|
6421
|
-
.iui-radio-tile-content:hover
|
|
6714
|
+
.iui-radio-tile-content:hover .iui-radio-tile-icon{
|
|
6422
6715
|
fill:rgba(0, 0, 0, 0.8);
|
|
6423
6716
|
fill:var(--iui-icons-color-actionable);
|
|
6424
6717
|
}
|
|
6425
6718
|
@media (forced-colors: active){
|
|
6426
|
-
.iui-radio-tile-content:hover
|
|
6719
|
+
.iui-radio-tile-content:hover .iui-radio-tile-icon{
|
|
6427
6720
|
fill:CanvasText;
|
|
6428
6721
|
}
|
|
6429
6722
|
}
|
|
@@ -6481,12 +6774,12 @@ label.iui-input-label.iui-disabled{
|
|
|
6481
6774
|
border-color:Highlight;
|
|
6482
6775
|
}
|
|
6483
6776
|
}
|
|
6484
|
-
.iui-radio-tile-input:checked + *
|
|
6777
|
+
.iui-radio-tile-input:checked + * .iui-radio-tile-icon{
|
|
6485
6778
|
fill:#008ae0;
|
|
6486
6779
|
fill:var(--iui-icons-color-primary);
|
|
6487
6780
|
}
|
|
6488
6781
|
@media (forced-colors: active){
|
|
6489
|
-
.iui-radio-tile-input:checked + *
|
|
6782
|
+
.iui-radio-tile-input:checked + * .iui-radio-tile-icon{
|
|
6490
6783
|
fill:Highlight;
|
|
6491
6784
|
}
|
|
6492
6785
|
}
|
|
@@ -6524,18 +6817,16 @@ label.iui-input-label.iui-disabled{
|
|
|
6524
6817
|
background-color:GrayText;
|
|
6525
6818
|
}
|
|
6526
6819
|
}
|
|
6527
|
-
.iui-radio-tile-input:disabled + *
|
|
6820
|
+
.iui-radio-tile-input:disabled + * .iui-radio-tile-icon{
|
|
6821
|
+
filter:grayscale(100%);
|
|
6528
6822
|
fill:rgba(0, 0, 0, 0.2);
|
|
6529
6823
|
fill:var(--iui-icons-color-actionable-disabled);
|
|
6530
6824
|
}
|
|
6531
6825
|
@media (forced-colors: active){
|
|
6532
|
-
.iui-radio-tile-input:disabled + *
|
|
6826
|
+
.iui-radio-tile-input:disabled + * .iui-radio-tile-icon{
|
|
6533
6827
|
fill:GrayText;
|
|
6534
6828
|
}
|
|
6535
6829
|
}
|
|
6536
|
-
.iui-radio-tile-input:disabled + * .iui-radio-tile-icon{
|
|
6537
|
-
filter:grayscale(100%);
|
|
6538
|
-
}
|
|
6539
6830
|
@media (forced-colors: active){
|
|
6540
6831
|
.iui-radio-tile-input:disabled + * .iui-radio-tile-label,
|
|
6541
6832
|
.iui-radio-tile-input:disabled + * .iui-radio-tile-sublabel{
|
|
@@ -6564,18 +6855,16 @@ label.iui-input-label.iui-disabled{
|
|
|
6564
6855
|
margin:0 auto;
|
|
6565
6856
|
padding-top:6px;
|
|
6566
6857
|
padding-bottom:11px;
|
|
6567
|
-
}
|
|
6568
|
-
.iui-radio-tile-icon svg{
|
|
6569
6858
|
fill:rgba(0, 0, 0, 0.4);
|
|
6570
6859
|
fill:var(--iui-icons-color);
|
|
6571
6860
|
}
|
|
6572
6861
|
@media (prefers-reduced-motion: no-preference){
|
|
6573
|
-
.iui-radio-tile-icon
|
|
6862
|
+
.iui-radio-tile-icon{
|
|
6574
6863
|
transition:fill 0.2s ease-out;
|
|
6575
6864
|
}
|
|
6576
6865
|
}
|
|
6577
6866
|
@media (forced-colors: active){
|
|
6578
|
-
.iui-radio-tile-icon
|
|
6867
|
+
.iui-radio-tile-icon{
|
|
6579
6868
|
fill:CanvasText;
|
|
6580
6869
|
}
|
|
6581
6870
|
}
|
|
@@ -6668,7 +6957,7 @@ label.iui-input-label.iui-disabled{
|
|
|
6668
6957
|
border-right:none;
|
|
6669
6958
|
overflow:hidden;
|
|
6670
6959
|
justify-content:flex-start;
|
|
6671
|
-
--_iui-button-active-stripe-inset:0 calc(100% - 2px)
|
|
6960
|
+
--_iui-button-active-stripe-inset:0 0 0 calc(100% - 2px);
|
|
6672
6961
|
}
|
|
6673
6962
|
.iui-side-navigation .iui-sidenav-button:not(.iui-expand){
|
|
6674
6963
|
height:55px;
|
|
@@ -7065,6 +7354,7 @@ label.iui-input-label.iui-disabled{
|
|
|
7065
7354
|
vertical-align:baseline;
|
|
7066
7355
|
display:flex;
|
|
7067
7356
|
flex-direction:column;
|
|
7357
|
+
isolation:isolate;
|
|
7068
7358
|
}
|
|
7069
7359
|
.iui-table *{
|
|
7070
7360
|
box-sizing:border-box;
|
|
@@ -7092,36 +7382,57 @@ label.iui-input-label.iui-disabled{
|
|
|
7092
7382
|
margin-left:auto;
|
|
7093
7383
|
}
|
|
7094
7384
|
.iui-table.iui-condensed .iui-table-header .iui-cell,
|
|
7095
|
-
.iui-table.iui-condensed .iui-row .iui-cell,
|
|
7096
7385
|
.iui-table.iui-condensed .iui-paginator{
|
|
7097
7386
|
min-height:44px;
|
|
7098
7387
|
}
|
|
7388
|
+
.iui-table.iui-condensed .iui-row .iui-cell{
|
|
7389
|
+
min-height:46px;
|
|
7390
|
+
}
|
|
7099
7391
|
.iui-table.iui-extra-condensed .iui-table-header .iui-cell,
|
|
7100
|
-
.iui-table.iui-extra-condensed .iui-row .iui-cell,
|
|
7101
7392
|
.iui-table.iui-extra-condensed .iui-paginator{
|
|
7102
7393
|
min-height:33px;
|
|
7103
7394
|
}
|
|
7395
|
+
.iui-table.iui-extra-condensed .iui-row .iui-cell{
|
|
7396
|
+
min-height:35px;
|
|
7397
|
+
}
|
|
7398
|
+
.iui-table.iui-extra-condensed .iui-table-header .iui-cell{
|
|
7399
|
+
padding-block:2.75px;
|
|
7400
|
+
}
|
|
7104
7401
|
|
|
7105
|
-
.iui-table-header{
|
|
7106
|
-
-webkit-user-select:none;
|
|
7107
|
-
-moz-user-select:none;
|
|
7108
|
-
-ms-user-select:none;
|
|
7109
|
-
user-select:none;
|
|
7402
|
+
.iui-table-header-wrapper{
|
|
7110
7403
|
overflow:hidden;
|
|
7404
|
+
display:flex;
|
|
7111
7405
|
flex-shrink:0;
|
|
7112
|
-
background-color:#edeff2;
|
|
7113
|
-
background-color:var(--iui-color-background-3);
|
|
7114
7406
|
}
|
|
7115
7407
|
@supports not (overflow: overlay){
|
|
7116
|
-
.iui-table-header{
|
|
7408
|
+
.iui-table-header-wrapper{
|
|
7117
7409
|
overflow-y:scroll;
|
|
7118
7410
|
}
|
|
7119
7411
|
}
|
|
7412
|
+
|
|
7413
|
+
.iui-table-header{
|
|
7414
|
+
display:flex;
|
|
7415
|
+
-webkit-user-select:none;
|
|
7416
|
+
-moz-user-select:none;
|
|
7417
|
+
-ms-user-select:none;
|
|
7418
|
+
user-select:none;
|
|
7419
|
+
min-width:100%;
|
|
7420
|
+
flex-shrink:0;
|
|
7421
|
+
}
|
|
7120
7422
|
.iui-table-header .iui-row{
|
|
7121
7423
|
display:flex;
|
|
7122
7424
|
flex-grow:1;
|
|
7123
|
-
|
|
7124
|
-
|
|
7425
|
+
min-width:100%;
|
|
7426
|
+
}
|
|
7427
|
+
.iui-table-header .iui-cell{
|
|
7428
|
+
min-height:55px;
|
|
7429
|
+
background-color:#edeff2;
|
|
7430
|
+
background-color:var(--iui-color-background-3);
|
|
7431
|
+
}
|
|
7432
|
+
.iui-table-header .iui-cell:not(.iui-slot){
|
|
7433
|
+
-moz-column-gap:4px;
|
|
7434
|
+
column-gap:4px;
|
|
7435
|
+
padding-block:5.5px;
|
|
7125
7436
|
}
|
|
7126
7437
|
.iui-table-header .iui-cell:not(.iui-slot):focus-visible{
|
|
7127
7438
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -7140,11 +7451,7 @@ label.iui-input-label.iui-disabled{
|
|
|
7140
7451
|
cursor:-webkit-grabbing;
|
|
7141
7452
|
cursor:grabbing;
|
|
7142
7453
|
}
|
|
7143
|
-
.iui-table-header .iui-cell:not(.iui-slot)
|
|
7144
|
-
margin-left:4px;
|
|
7145
|
-
margin-right:8px;
|
|
7146
|
-
}
|
|
7147
|
-
.iui-table-header .iui-cell:not(.iui-slot) > .iui-filter-button:not(.iui-active){
|
|
7454
|
+
.iui-table-header .iui-cell:not(.iui-slot) .iui-filter-button:not(.iui-active){
|
|
7148
7455
|
visibility:hidden;
|
|
7149
7456
|
}
|
|
7150
7457
|
.iui-table-header .iui-cell:not(.iui-slot) > .iui-resizer{
|
|
@@ -7220,6 +7527,21 @@ label.iui-input-label.iui-disabled{
|
|
|
7220
7527
|
fill:var(--iui-icons-color-actionable);
|
|
7221
7528
|
}
|
|
7222
7529
|
|
|
7530
|
+
.iui-table-header-actions-container{
|
|
7531
|
+
display:flex;
|
|
7532
|
+
flex-grow:1;
|
|
7533
|
+
align-items:center;
|
|
7534
|
+
flex-wrap:wrap;
|
|
7535
|
+
justify-content:flex-end;
|
|
7536
|
+
margin-right:12px;
|
|
7537
|
+
}
|
|
7538
|
+
.iui-table-header-actions-container .iui-cell-end-icon{
|
|
7539
|
+
width:28px;
|
|
7540
|
+
height:28px;
|
|
7541
|
+
margin-right:initial;
|
|
7542
|
+
margin-left:auto;
|
|
7543
|
+
}
|
|
7544
|
+
|
|
7223
7545
|
.iui-table-body{
|
|
7224
7546
|
overflow-y:scroll;
|
|
7225
7547
|
overflow:overlay;
|
|
@@ -7244,21 +7566,26 @@ label.iui-input-label.iui-disabled{
|
|
|
7244
7566
|
.iui-table-body .iui-row{
|
|
7245
7567
|
min-width:100%;
|
|
7246
7568
|
display:flex;
|
|
7247
|
-
|
|
7569
|
+
}
|
|
7570
|
+
.iui-table-body .iui-row .iui-cell{
|
|
7571
|
+
border-top:solid 1px transparent;
|
|
7572
|
+
border-bottom:solid 1px transparent;
|
|
7248
7573
|
border-bottom-color:#c7ccd1;
|
|
7249
7574
|
border-bottom-color:var(--iui-color-background-border);
|
|
7575
|
+
background-color:white;
|
|
7576
|
+
background-color:var(--iui-color-background-1);
|
|
7250
7577
|
}
|
|
7251
7578
|
@media (prefers-reduced-motion: no-preference){
|
|
7252
|
-
.iui-table-body .iui-row{
|
|
7579
|
+
.iui-table-body .iui-row .iui-cell{
|
|
7253
7580
|
transition:border 0.2s ease-out;
|
|
7254
7581
|
}
|
|
7255
7582
|
}
|
|
7256
7583
|
.iui-table-body .iui-row > .iui-slot > .iui-more-options{
|
|
7257
7584
|
visibility:hidden;
|
|
7258
7585
|
}
|
|
7259
|
-
.iui-table-body .iui-row:hover:not(.iui-disabled)
|
|
7260
|
-
background-
|
|
7261
|
-
background-color
|
|
7586
|
+
.iui-table-body .iui-row:hover:not(.iui-disabled) .iui-cell{
|
|
7587
|
+
background:linear-gradient(rgba(0, 138, 224, 0.1), rgba(0, 138, 224, 0.1)), linear-gradient(white, white);
|
|
7588
|
+
background:linear-gradient(rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
|
|
7262
7589
|
}
|
|
7263
7590
|
.iui-table-body .iui-row:hover:not(.iui-disabled) > .iui-slot:not(.iui-disabled) > .iui-more-options{
|
|
7264
7591
|
visibility:visible;
|
|
@@ -7273,9 +7600,10 @@ label.iui-input-label.iui-disabled{
|
|
|
7273
7600
|
}
|
|
7274
7601
|
.iui-table-body .iui-row.iui-row-expanded{
|
|
7275
7602
|
overflow:hidden;
|
|
7603
|
+
}
|
|
7604
|
+
.iui-table-body .iui-row.iui-row-expanded .iui-cell{
|
|
7276
7605
|
border-left-color:#dde1e4;
|
|
7277
7606
|
border-right-color:#dde1e4;
|
|
7278
|
-
border-bottom-color:transparent;
|
|
7279
7607
|
border-left-color:var(--iui-color-background-4);
|
|
7280
7608
|
border-right-color:var(--iui-color-background-4);
|
|
7281
7609
|
border-bottom-color:transparent;
|
|
@@ -7291,6 +7619,10 @@ label.iui-input-label.iui-disabled{
|
|
|
7291
7619
|
}
|
|
7292
7620
|
.iui-table-body .iui-row.iui-expanded-content{
|
|
7293
7621
|
overflow:hidden;
|
|
7622
|
+
border-left:1px solid transparent;
|
|
7623
|
+
border-right:1px solid transparent;
|
|
7624
|
+
border-bottom:1px solid #c7ccd1;
|
|
7625
|
+
border-bottom:1px solid var(--iui-color-background-border);
|
|
7294
7626
|
}
|
|
7295
7627
|
.iui-table-body .iui-row.iui-expanded-content.iui-enter{
|
|
7296
7628
|
opacity:0;
|
|
@@ -7314,26 +7646,26 @@ label.iui-input-label.iui-disabled{
|
|
|
7314
7646
|
transition:opacity 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out;
|
|
7315
7647
|
}
|
|
7316
7648
|
}
|
|
7317
|
-
.iui-table-body .iui-row:not(.iui-selected) + .iui-selected, .iui-table-body .iui-row.iui-selected:first-child{
|
|
7649
|
+
.iui-table-body .iui-row:not(.iui-selected) + .iui-selected .iui-cell, .iui-table-body .iui-row.iui-selected:first-child .iui-cell{
|
|
7318
7650
|
border-bottom-color:transparent;
|
|
7319
7651
|
}
|
|
7320
|
-
.iui-table-body .iui-row.iui-selected{
|
|
7652
|
+
.iui-table-body .iui-row.iui-selected .iui-cell{
|
|
7321
7653
|
border-color:#008ae0;
|
|
7322
|
-
background:rgba(0, 138, 224, 0.1);
|
|
7654
|
+
background:linear-gradient(rgba(0, 138, 224, 0.1), rgba(0, 138, 224, 0.1)), linear-gradient(white, white);
|
|
7323
7655
|
border-color:var(--iui-color-foreground-primary);
|
|
7324
|
-
background:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
7656
|
+
background:linear-gradient(rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
|
|
7325
7657
|
}
|
|
7326
|
-
.iui-table-body .iui-row.iui-selected + .iui-selected{
|
|
7658
|
+
.iui-table-body .iui-row.iui-selected + .iui-selected .iui-cell{
|
|
7327
7659
|
border-bottom-color:transparent;
|
|
7328
7660
|
border-top-color:rgba(0, 138, 224, 0.4);
|
|
7329
7661
|
border-top-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-4));
|
|
7330
7662
|
}
|
|
7331
|
-
.iui-table-body .iui-row.iui-selected:last-child{
|
|
7663
|
+
.iui-table-body .iui-row.iui-selected:last-child .iui-cell{
|
|
7332
7664
|
border-bottom-color:#008ae0;
|
|
7333
7665
|
border-bottom-color:var(--iui-color-foreground-primary);
|
|
7334
7666
|
}
|
|
7335
|
-
.iui-table-body .iui-row.iui-selected + :not(.iui-selected),
|
|
7336
|
-
.iui-table-body .iui-row.iui-selected + .iui-expanded-content + :not(.iui-selected){
|
|
7667
|
+
.iui-table-body .iui-row.iui-selected + :not(.iui-selected) .iui-cell,
|
|
7668
|
+
.iui-table-body .iui-row.iui-selected + .iui-expanded-content + .iui-row:not(.iui-selected) .iui-cell{
|
|
7337
7669
|
border-top-color:#008ae0;
|
|
7338
7670
|
border-top-color:var(--iui-color-foreground-primary);
|
|
7339
7671
|
}
|
|
@@ -7374,17 +7706,17 @@ label.iui-input-label.iui-disabled{
|
|
|
7374
7706
|
.iui-table-body .iui-row.iui-expanded-content.iui-disabled .iui-user-icon{
|
|
7375
7707
|
filter:grayscale(100%);
|
|
7376
7708
|
}
|
|
7377
|
-
.iui-table-body .iui-row.iui-positive,
|
|
7709
|
+
.iui-table-body .iui-row.iui-positive .iui-cell:first-of-type,
|
|
7378
7710
|
.iui-table-body .iui-row.iui-positive + .iui-expanded-content{
|
|
7379
7711
|
box-shadow:inset 2px 0 0 0 #53a21a;
|
|
7380
7712
|
box-shadow:inset 2px 0 0 0 var(--iui-icons-color-positive);
|
|
7381
7713
|
}
|
|
7382
|
-
.iui-table-body .iui-row.iui-positive::-moz-selection, .iui-table-body .iui-row.iui-positive *::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content *::-moz-selection{
|
|
7714
|
+
.iui-table-body .iui-row.iui-positive .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-positive .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content *::-moz-selection{
|
|
7383
7715
|
background-color:rgba(83, 162, 26, 0.2);
|
|
7384
7716
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
7385
7717
|
}
|
|
7386
|
-
.iui-table-body .iui-row.iui-positive::selection,
|
|
7387
|
-
.iui-table-body .iui-row.iui-positive *::selection,
|
|
7718
|
+
.iui-table-body .iui-row.iui-positive .iui-cell:first-of-type::selection,
|
|
7719
|
+
.iui-table-body .iui-row.iui-positive .iui-cell:first-of-type *::selection,
|
|
7388
7720
|
.iui-table-body .iui-row.iui-positive + .iui-expanded-content::selection,
|
|
7389
7721
|
.iui-table-body .iui-row.iui-positive + .iui-expanded-content *::selection{
|
|
7390
7722
|
background-color:rgba(83, 162, 26, 0.2);
|
|
@@ -7394,17 +7726,17 @@ label.iui-input-label.iui-disabled{
|
|
|
7394
7726
|
fill:#53a21a;
|
|
7395
7727
|
fill:var(--iui-icons-color-positive);
|
|
7396
7728
|
}
|
|
7397
|
-
.iui-table-body .iui-row.iui-warning,
|
|
7729
|
+
.iui-table-body .iui-row.iui-warning .iui-cell:first-of-type,
|
|
7398
7730
|
.iui-table-body .iui-row.iui-warning + .iui-expanded-content{
|
|
7399
7731
|
box-shadow:inset 2px 0 0 0 #f18d13;
|
|
7400
7732
|
box-shadow:inset 2px 0 0 0 var(--iui-icons-color-warning);
|
|
7401
7733
|
}
|
|
7402
|
-
.iui-table-body .iui-row.iui-warning::-moz-selection, .iui-table-body .iui-row.iui-warning *::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content *::-moz-selection{
|
|
7734
|
+
.iui-table-body .iui-row.iui-warning .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-warning .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content *::-moz-selection{
|
|
7403
7735
|
background-color:rgba(241, 141, 19, 0.2);
|
|
7404
7736
|
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
7405
7737
|
}
|
|
7406
|
-
.iui-table-body .iui-row.iui-warning::selection,
|
|
7407
|
-
.iui-table-body .iui-row.iui-warning *::selection,
|
|
7738
|
+
.iui-table-body .iui-row.iui-warning .iui-cell:first-of-type::selection,
|
|
7739
|
+
.iui-table-body .iui-row.iui-warning .iui-cell:first-of-type *::selection,
|
|
7408
7740
|
.iui-table-body .iui-row.iui-warning + .iui-expanded-content::selection,
|
|
7409
7741
|
.iui-table-body .iui-row.iui-warning + .iui-expanded-content *::selection{
|
|
7410
7742
|
background-color:rgba(241, 141, 19, 0.2);
|
|
@@ -7414,17 +7746,17 @@ label.iui-input-label.iui-disabled{
|
|
|
7414
7746
|
fill:#f18d13;
|
|
7415
7747
|
fill:var(--iui-icons-color-warning);
|
|
7416
7748
|
}
|
|
7417
|
-
.iui-table-body .iui-row.iui-negative,
|
|
7749
|
+
.iui-table-body .iui-row.iui-negative .iui-cell:first-of-type,
|
|
7418
7750
|
.iui-table-body .iui-row.iui-negative + .iui-expanded-content{
|
|
7419
7751
|
box-shadow:inset 2px 0 0 0 #d10a0a;
|
|
7420
7752
|
box-shadow:inset 2px 0 0 0 var(--iui-icons-color-negative);
|
|
7421
7753
|
}
|
|
7422
|
-
.iui-table-body .iui-row.iui-negative::-moz-selection, .iui-table-body .iui-row.iui-negative *::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content *::-moz-selection{
|
|
7754
|
+
.iui-table-body .iui-row.iui-negative .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-negative .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content *::-moz-selection{
|
|
7423
7755
|
background-color:rgba(209, 10, 10, 0.2);
|
|
7424
7756
|
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
7425
7757
|
}
|
|
7426
|
-
.iui-table-body .iui-row.iui-negative::selection,
|
|
7427
|
-
.iui-table-body .iui-row.iui-negative *::selection,
|
|
7758
|
+
.iui-table-body .iui-row.iui-negative .iui-cell:first-of-type::selection,
|
|
7759
|
+
.iui-table-body .iui-row.iui-negative .iui-cell:first-of-type *::selection,
|
|
7428
7760
|
.iui-table-body .iui-row.iui-negative + .iui-expanded-content::selection,
|
|
7429
7761
|
.iui-table-body .iui-row.iui-negative + .iui-expanded-content *::selection{
|
|
7430
7762
|
background-color:rgba(209, 10, 10, 0.2);
|
|
@@ -7455,12 +7787,18 @@ label.iui-input-label.iui-disabled{
|
|
|
7455
7787
|
display:flex;
|
|
7456
7788
|
flex-grow:1;
|
|
7457
7789
|
min-width:64px;
|
|
7458
|
-
min-height:
|
|
7790
|
+
min-height:57px;
|
|
7459
7791
|
padding-left:16px;
|
|
7460
7792
|
flex-basis:64px;
|
|
7461
7793
|
position:relative;
|
|
7462
7794
|
word-break:break-word;
|
|
7463
7795
|
}
|
|
7796
|
+
.iui-cell:first-of-type{
|
|
7797
|
+
border-left:solid 1px transparent;
|
|
7798
|
+
}
|
|
7799
|
+
.iui-cell:last-of-type{
|
|
7800
|
+
border-right:solid 1px transparent;
|
|
7801
|
+
}
|
|
7464
7802
|
.iui-cell.iui-slot{
|
|
7465
7803
|
width:48px;
|
|
7466
7804
|
padding:0;
|
|
@@ -7471,12 +7809,19 @@ label.iui-input-label.iui-disabled{
|
|
|
7471
7809
|
align-items:center;
|
|
7472
7810
|
flex-basis:48px;
|
|
7473
7811
|
}
|
|
7812
|
+
.iui-cell.iui-cell-sticky{
|
|
7813
|
+
position:-webkit-sticky;
|
|
7814
|
+
position:sticky;
|
|
7815
|
+
z-index:1;
|
|
7816
|
+
left:var(--iui-table-sticky-left, initial);
|
|
7817
|
+
right:var(--iui-table-sticky-right, initial);
|
|
7818
|
+
}
|
|
7474
7819
|
.iui-cell:not(.iui-slot):last-child{
|
|
7475
7820
|
padding-right:16px;
|
|
7476
7821
|
}
|
|
7477
7822
|
.iui-cell.iui-positive{
|
|
7478
|
-
background-
|
|
7479
|
-
background-color
|
|
7823
|
+
background:linear-gradient(rgba(83, 162, 26, 0.1), rgba(83, 162, 26, 0.1)), linear-gradient(white, white);
|
|
7824
|
+
background:linear-gradient(rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
|
|
7480
7825
|
}
|
|
7481
7826
|
.iui-cell.iui-positive::-moz-selection, .iui-cell.iui-positive *::-moz-selection{
|
|
7482
7827
|
background-color:rgba(83, 162, 26, 0.2);
|
|
@@ -7488,8 +7833,8 @@ label.iui-input-label.iui-disabled{
|
|
|
7488
7833
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
7489
7834
|
}
|
|
7490
7835
|
.iui-cell.iui-warning{
|
|
7491
|
-
background-
|
|
7492
|
-
background-color
|
|
7836
|
+
background:linear-gradient(rgba(241, 141, 19, 0.1), rgba(241, 141, 19, 0.1)), linear-gradient(white, white);
|
|
7837
|
+
background:linear-gradient(rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
|
|
7493
7838
|
}
|
|
7494
7839
|
.iui-cell.iui-warning::-moz-selection, .iui-cell.iui-warning *::-moz-selection{
|
|
7495
7840
|
background-color:rgba(241, 141, 19, 0.2);
|
|
@@ -7501,8 +7846,8 @@ label.iui-input-label.iui-disabled{
|
|
|
7501
7846
|
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
7502
7847
|
}
|
|
7503
7848
|
.iui-cell.iui-negative{
|
|
7504
|
-
background-
|
|
7505
|
-
background-color
|
|
7849
|
+
background:linear-gradient(rgba(209, 10, 10, 0.1), rgba(209, 10, 10, 0.1)), linear-gradient(white, white);
|
|
7850
|
+
background:linear-gradient(rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
|
|
7506
7851
|
}
|
|
7507
7852
|
.iui-cell.iui-negative::-moz-selection, .iui-cell.iui-negative *::-moz-selection{
|
|
7508
7853
|
background-color:rgba(209, 10, 10, 0.2);
|
|
@@ -7525,6 +7870,36 @@ label.iui-input-label.iui-disabled{
|
|
|
7525
7870
|
background-color:var(--iui-color-background-1);
|
|
7526
7871
|
}
|
|
7527
7872
|
|
|
7873
|
+
.iui-cell-shadow-left{
|
|
7874
|
+
position:absolute;
|
|
7875
|
+
top:-1px;
|
|
7876
|
+
bottom:-1px;
|
|
7877
|
+
width:24px;
|
|
7878
|
+
pointer-events:none;
|
|
7879
|
+
left:0;
|
|
7880
|
+
transform:translate(-100%);
|
|
7881
|
+
box-shadow:inset -10px 0 5px -10px rgba(0, 0, 0, 0.25);
|
|
7882
|
+
}
|
|
7883
|
+
.iui-table-header .iui-cell-shadow-left{
|
|
7884
|
+
top:0;
|
|
7885
|
+
bottom:0;
|
|
7886
|
+
}
|
|
7887
|
+
|
|
7888
|
+
.iui-cell-shadow-right{
|
|
7889
|
+
position:absolute;
|
|
7890
|
+
top:-1px;
|
|
7891
|
+
bottom:-1px;
|
|
7892
|
+
width:24px;
|
|
7893
|
+
pointer-events:none;
|
|
7894
|
+
right:0;
|
|
7895
|
+
transform:translate(100%);
|
|
7896
|
+
box-shadow:inset 10px 0 5px -10px rgba(0, 0, 0, 0.25);
|
|
7897
|
+
}
|
|
7898
|
+
.iui-table-header .iui-cell-shadow-right{
|
|
7899
|
+
top:0;
|
|
7900
|
+
bottom:0;
|
|
7901
|
+
}
|
|
7902
|
+
|
|
7528
7903
|
.iui-paginator{
|
|
7529
7904
|
margin:0;
|
|
7530
7905
|
padding:0;
|
|
@@ -7588,6 +7963,7 @@ label.iui-input-label.iui-disabled{
|
|
|
7588
7963
|
|
|
7589
7964
|
.iui-paginator-page-button{
|
|
7590
7965
|
--_iui-button-active-stripe-inset:initial;
|
|
7966
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
7591
7967
|
margin:0;
|
|
7592
7968
|
padding:0;
|
|
7593
7969
|
border:none;
|
|
@@ -7614,6 +7990,7 @@ label.iui-input-label.iui-disabled{
|
|
|
7614
7990
|
border:1px solid transparent;
|
|
7615
7991
|
color:rgba(0, 0, 0, 0.8);
|
|
7616
7992
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
7993
|
+
color:var(--_iui-button-text-color);
|
|
7617
7994
|
border-color:transparent;
|
|
7618
7995
|
background-color:transparent;
|
|
7619
7996
|
padding:0 8px;
|
|
@@ -7628,9 +8005,8 @@ label.iui-input-label.iui-disabled{
|
|
|
7628
8005
|
}
|
|
7629
8006
|
}
|
|
7630
8007
|
.iui-paginator-page-button:hover{
|
|
8008
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
7631
8009
|
text-decoration:none;
|
|
7632
|
-
color:black;
|
|
7633
|
-
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
7634
8010
|
}
|
|
7635
8011
|
.iui-paginator-page-button:focus-visible{
|
|
7636
8012
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -7651,15 +8027,6 @@ label.iui-input-label.iui-disabled{
|
|
|
7651
8027
|
border-color:var(--iui-color-background-disabled);
|
|
7652
8028
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
7653
8029
|
}
|
|
7654
|
-
.iui-paginator-page-button.iui-active::after{
|
|
7655
|
-
content:"";
|
|
7656
|
-
position:absolute;
|
|
7657
|
-
inset:var(--_iui-button-active-stripe-inset);
|
|
7658
|
-
background-color:var(--iui-color-foreground-primary);
|
|
7659
|
-
}
|
|
7660
|
-
.iui-paginator-page-button.iui-active[disabled]::after, .iui-paginator-page-button.iui-active:disabled::after{
|
|
7661
|
-
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
7662
|
-
}
|
|
7663
8030
|
.iui-paginator-page-button > .iui-button-icon:only-child{
|
|
7664
8031
|
margin-left:3px;
|
|
7665
8032
|
margin-right:3px;
|
|
@@ -7694,6 +8061,15 @@ label.iui-input-label.iui-disabled{
|
|
|
7694
8061
|
background-color:rgba(0, 0, 0, 0.05);
|
|
7695
8062
|
background-color:rgba(var(--iui-color-foreground-body-rgb), 0.05);
|
|
7696
8063
|
}
|
|
8064
|
+
.iui-paginator-page-button.iui-active::after{
|
|
8065
|
+
content:"";
|
|
8066
|
+
position:absolute;
|
|
8067
|
+
inset:var(--_iui-button-active-stripe-inset);
|
|
8068
|
+
background-color:var(--iui-color-foreground-primary);
|
|
8069
|
+
}
|
|
8070
|
+
.iui-paginator-page-button.iui-active[disabled]::after, .iui-paginator-page-button.iui-active:disabled::after{
|
|
8071
|
+
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
8072
|
+
}
|
|
7697
8073
|
.iui-paginator-page-button-small{
|
|
7698
8074
|
padding:0 8px;
|
|
7699
8075
|
height:27px;
|
|
@@ -8157,12 +8533,12 @@ label.iui-input-label.iui-disabled{
|
|
|
8157
8533
|
}
|
|
8158
8534
|
|
|
8159
8535
|
a.iui-tag-basic{
|
|
8160
|
-
--_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>");
|
|
8161
8536
|
color:#008ae0;
|
|
8162
8537
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
8163
8538
|
color:var(--iui-color-foreground-primary);
|
|
8164
8539
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
8165
8540
|
border-radius:3px;
|
|
8541
|
+
box-sizing:border-box;
|
|
8166
8542
|
cursor:pointer;
|
|
8167
8543
|
text-decoration:none;
|
|
8168
8544
|
}
|
|
@@ -8180,22 +8556,6 @@ a.iui-tag-basic:hover{
|
|
|
8180
8556
|
color:#006bad;
|
|
8181
8557
|
color:var(--iui-color-foreground-primary-overlay);
|
|
8182
8558
|
}
|
|
8183
|
-
a.iui-tag-basic-external::after{
|
|
8184
|
-
content:"";
|
|
8185
|
-
display:inline-block;
|
|
8186
|
-
width:1.5ch;
|
|
8187
|
-
height:1.5ch;
|
|
8188
|
-
margin-left:0.5ch;
|
|
8189
|
-
vertical-align:-0.1ch;
|
|
8190
|
-
background-color:currentColor;
|
|
8191
|
-
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
8192
|
-
mask:var(--_iui-anchor-external-svg);
|
|
8193
|
-
}
|
|
8194
|
-
@media (forced-colors: active){
|
|
8195
|
-
a.iui-tag-basic-external::after{
|
|
8196
|
-
background-color:LinkText;
|
|
8197
|
-
}
|
|
8198
|
-
}
|
|
8199
8559
|
a.iui-tag-basic:hover{
|
|
8200
8560
|
text-decoration:underline;
|
|
8201
8561
|
}
|