@itwin/itwinui-css 0.60.0 → 0.61.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/CHANGELOG.md +15 -0
- package/css/alert.css +2 -2
- package/css/all.css +321 -102
- package/css/anchor.css +1 -1
- package/css/badge.css +1 -1
- package/css/blockquote.css +1 -1
- package/css/breadcrumbs.css +5 -5
- package/css/button.css +13 -13
- package/css/carousel.css +2 -2
- package/css/code.css +3 -3
- package/css/color-picker.css +1 -1
- package/css/date-picker.css +6 -6
- package/css/dialog.css +30 -4
- package/css/expandable-block.css +1 -1
- package/css/fieldset.css +2 -2
- package/css/footer.css +1 -1
- package/css/global.css +1 -1
- package/css/header.css +3 -3
- package/css/inputs.css +201 -5
- package/css/keyboard.css +1 -1
- package/css/location-marker.css +1 -1
- package/css/menu.css +1 -1
- package/css/radio-tile.css +2 -2
- package/css/table.css +1 -1
- package/css/tabs.css +31 -27
- package/css/tag.css +4 -11
- package/css/text.css +1 -1
- package/css/time-picker.css +2 -2
- package/css/toast-notification.css +2 -2
- package/css/tooltip.css +1 -1
- package/package.json +1 -1
- package/scss/dialog/classes.scss +1 -0
- package/scss/dialog/dialog.scss +36 -3
- package/scss/inputs/classes.scss +20 -0
- package/scss/inputs/select.scss +66 -0
- package/scss/style/variables.scss +1 -1
- package/scss/tabs/borderless.scss +3 -4
- package/scss/tabs/classes.scss +4 -0
- package/scss/tabs/default.scss +3 -4
- package/scss/tabs/pill.scss +1 -1
- package/scss/tabs/tabs.scss +14 -13
- package/scss/tag/tag.scss +2 -2
package/css/all.css
CHANGED
|
@@ -588,7 +588,7 @@ html.iui-theme-dark-hc{
|
|
|
588
588
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
589
589
|
color:var(--iui-color-foreground-primary);
|
|
590
590
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
591
|
-
border-radius:
|
|
591
|
+
border-radius:4px;
|
|
592
592
|
box-sizing:border-box;
|
|
593
593
|
cursor:pointer;
|
|
594
594
|
text-decoration:none;
|
|
@@ -690,7 +690,7 @@ html.iui-theme-dark-hc{
|
|
|
690
690
|
padding:0;
|
|
691
691
|
border:none;
|
|
692
692
|
vertical-align:baseline;
|
|
693
|
-
border-radius:
|
|
693
|
+
border-radius:4px;
|
|
694
694
|
box-sizing:border-box;
|
|
695
695
|
display:flex;
|
|
696
696
|
align-items:center;
|
|
@@ -731,7 +731,7 @@ html.iui-theme-dark-hc{
|
|
|
731
731
|
}
|
|
732
732
|
.iui-alert-link{
|
|
733
733
|
text-decoration:underline;
|
|
734
|
-
border-radius:
|
|
734
|
+
border-radius:4px;
|
|
735
735
|
cursor:pointer;
|
|
736
736
|
margin-left:8px;
|
|
737
737
|
-webkit-user-select:none;
|
|
@@ -955,7 +955,7 @@ html.iui-theme-dark-hc{
|
|
|
955
955
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
956
956
|
color:var(--iui-color-foreground-primary);
|
|
957
957
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
958
|
-
border-radius:
|
|
958
|
+
border-radius:4px;
|
|
959
959
|
box-sizing:border-box;
|
|
960
960
|
cursor:pointer;
|
|
961
961
|
text-decoration:none;
|
|
@@ -1030,7 +1030,7 @@ html.iui-theme-dark-hc{
|
|
|
1030
1030
|
font-size:12px;
|
|
1031
1031
|
padding:0 6px;
|
|
1032
1032
|
margin:6px 0;
|
|
1033
|
-
border-radius:
|
|
1033
|
+
border-radius:4px;
|
|
1034
1034
|
background-color:var(--iui-badge-background-color);
|
|
1035
1035
|
color:var(--_iui-badge-text-color);
|
|
1036
1036
|
text-transform:uppercase;
|
|
@@ -1077,7 +1077,7 @@ html.iui-theme-dark-hc{
|
|
|
1077
1077
|
margin:11px 0;
|
|
1078
1078
|
text-align:justify;
|
|
1079
1079
|
box-shadow:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
1080
|
-
border-radius:
|
|
1080
|
+
border-radius:4px;
|
|
1081
1081
|
background-color:white;
|
|
1082
1082
|
border-left:8px solid #008ae0;
|
|
1083
1083
|
background-color:var(--iui-color-background-1);
|
|
@@ -1140,7 +1140,7 @@ html.iui-theme-dark-hc{
|
|
|
1140
1140
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1141
1141
|
color:var(--iui-color-foreground-primary);
|
|
1142
1142
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1143
|
-
border-radius:
|
|
1143
|
+
border-radius:4px;
|
|
1144
1144
|
box-sizing:border-box;
|
|
1145
1145
|
cursor:pointer;
|
|
1146
1146
|
text-decoration:none;
|
|
@@ -1150,7 +1150,7 @@ html.iui-theme-dark-hc{
|
|
|
1150
1150
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1151
1151
|
color:var(--iui-color-foreground-primary);
|
|
1152
1152
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1153
|
-
border-radius:
|
|
1153
|
+
border-radius:4px;
|
|
1154
1154
|
box-sizing:border-box;
|
|
1155
1155
|
cursor:pointer;
|
|
1156
1156
|
text-decoration:none;
|
|
@@ -1160,7 +1160,7 @@ html.iui-theme-dark-hc{
|
|
|
1160
1160
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1161
1161
|
color:var(--iui-color-foreground-primary);
|
|
1162
1162
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1163
|
-
border-radius:
|
|
1163
|
+
border-radius:4px;
|
|
1164
1164
|
box-sizing:border-box;
|
|
1165
1165
|
cursor:pointer;
|
|
1166
1166
|
text-decoration:none;
|
|
@@ -1355,7 +1355,7 @@ a.iui-breadcrumbs-text{
|
|
|
1355
1355
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1356
1356
|
color:var(--iui-color-foreground-primary);
|
|
1357
1357
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1358
|
-
border-radius:
|
|
1358
|
+
border-radius:4px;
|
|
1359
1359
|
box-sizing:border-box;
|
|
1360
1360
|
cursor:pointer;
|
|
1361
1361
|
text-decoration:none;
|
|
@@ -1417,7 +1417,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
1417
1417
|
justify-content:center;
|
|
1418
1418
|
position:relative;
|
|
1419
1419
|
box-sizing:border-box;
|
|
1420
|
-
border-radius:
|
|
1420
|
+
border-radius:4px;
|
|
1421
1421
|
line-height:22px;
|
|
1422
1422
|
box-shadow:none;
|
|
1423
1423
|
font-size:14px;
|
|
@@ -1541,7 +1541,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
1541
1541
|
justify-content:center;
|
|
1542
1542
|
position:relative;
|
|
1543
1543
|
box-sizing:border-box;
|
|
1544
|
-
border-radius:
|
|
1544
|
+
border-radius:4px;
|
|
1545
1545
|
line-height:22px;
|
|
1546
1546
|
box-shadow:none;
|
|
1547
1547
|
font-size:14px;
|
|
@@ -1866,12 +1866,12 @@ a.iui-breadcrumbs-text:focus{
|
|
|
1866
1866
|
transition-duration:0.2s;
|
|
1867
1867
|
}
|
|
1868
1868
|
.iui-button-group > *:first-child .iui-input, .iui-button-group > *:first-child .iui-button:where(:not(.iui-borderless)){
|
|
1869
|
-
border-top-left-radius:
|
|
1870
|
-
border-bottom-left-radius:
|
|
1869
|
+
border-top-left-radius:4px;
|
|
1870
|
+
border-bottom-left-radius:4px;
|
|
1871
1871
|
}
|
|
1872
1872
|
.iui-button-group > *:last-child .iui-input, .iui-button-group > *:last-child .iui-button:where(:not(.iui-borderless)){
|
|
1873
|
-
border-bottom-right-radius:
|
|
1874
|
-
border-top-right-radius:
|
|
1873
|
+
border-bottom-right-radius:4px;
|
|
1874
|
+
border-top-right-radius:4px;
|
|
1875
1875
|
}
|
|
1876
1876
|
.iui-button-group > * + *{
|
|
1877
1877
|
margin-left:-1px;
|
|
@@ -1910,12 +1910,12 @@ a.iui-breadcrumbs-text:focus{
|
|
|
1910
1910
|
transition-duration:0.2s;
|
|
1911
1911
|
}
|
|
1912
1912
|
.iui-button-group-vertical > *:first-child .iui-input, .iui-button-group-vertical > *:first-child .iui-button:where(:not(.iui-borderless)){
|
|
1913
|
-
border-top-left-radius:
|
|
1914
|
-
border-top-right-radius:
|
|
1913
|
+
border-top-left-radius:4px;
|
|
1914
|
+
border-top-right-radius:4px;
|
|
1915
1915
|
}
|
|
1916
1916
|
.iui-button-group-vertical > *:last-child .iui-input, .iui-button-group-vertical > *:last-child .iui-button:where(:not(.iui-borderless)){
|
|
1917
|
-
border-bottom-right-radius:
|
|
1918
|
-
border-bottom-left-radius:
|
|
1917
|
+
border-bottom-right-radius:4px;
|
|
1918
|
+
border-bottom-left-radius:4px;
|
|
1919
1919
|
}
|
|
1920
1920
|
.iui-button-group-vertical > * + *{
|
|
1921
1921
|
margin-top:-1px;
|
|
@@ -1956,12 +1956,12 @@ a.iui-breadcrumbs-text:focus{
|
|
|
1956
1956
|
transition-duration:0.2s;
|
|
1957
1957
|
}
|
|
1958
1958
|
.iui-button-split-menu > *:first-child .iui-input, .iui-button-split-menu > *:first-child .iui-button:where(:not(.iui-borderless)){
|
|
1959
|
-
border-top-left-radius:
|
|
1960
|
-
border-bottom-left-radius:
|
|
1959
|
+
border-top-left-radius:4px;
|
|
1960
|
+
border-bottom-left-radius:4px;
|
|
1961
1961
|
}
|
|
1962
1962
|
.iui-button-split-menu > *:last-child .iui-input, .iui-button-split-menu > *:last-child .iui-button:where(:not(.iui-borderless)){
|
|
1963
|
-
border-bottom-right-radius:
|
|
1964
|
-
border-top-right-radius:
|
|
1963
|
+
border-bottom-right-radius:4px;
|
|
1964
|
+
border-top-right-radius:4px;
|
|
1965
1965
|
}
|
|
1966
1966
|
.iui-button-split-menu > * + *{
|
|
1967
1967
|
margin-left:-1px;
|
|
@@ -2018,7 +2018,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2018
2018
|
|
|
2019
2019
|
.iui-carousel{
|
|
2020
2020
|
overflow:hidden;
|
|
2021
|
-
border-radius:
|
|
2021
|
+
border-radius:4px;
|
|
2022
2022
|
}
|
|
2023
2023
|
.iui-carousel:focus-visible{
|
|
2024
2024
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -2078,7 +2078,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2078
2078
|
vertical-align:baseline;
|
|
2079
2079
|
flex:2;
|
|
2080
2080
|
max-width:256px;
|
|
2081
|
-
border-radius:
|
|
2081
|
+
border-radius:4px;
|
|
2082
2082
|
white-space:nowrap;
|
|
2083
2083
|
overflow-x:auto;
|
|
2084
2084
|
overflow-x:overlay;
|
|
@@ -2154,7 +2154,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2154
2154
|
font-family:ui-monospace, Menlo, "Segoe UI Mono", Consolas, "Roboto Mono", "Courier New", monospace;
|
|
2155
2155
|
font-size:12px;
|
|
2156
2156
|
padding:0 4px;
|
|
2157
|
-
border-radius:
|
|
2157
|
+
border-radius:4px;
|
|
2158
2158
|
-webkit-user-select:all;
|
|
2159
2159
|
-moz-user-select:all;
|
|
2160
2160
|
user-select:all;
|
|
@@ -2174,7 +2174,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2174
2174
|
.iui-codeblock > .iui-title-bar{
|
|
2175
2175
|
display:flex;
|
|
2176
2176
|
align-items:center;
|
|
2177
|
-
border-radius:
|
|
2177
|
+
border-radius:4px 4px 0 0;
|
|
2178
2178
|
background-color:#edeff2;
|
|
2179
2179
|
background-color:var(--iui-color-background-3);
|
|
2180
2180
|
}
|
|
@@ -2191,7 +2191,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2191
2191
|
margin:0;
|
|
2192
2192
|
overflow-x:auto;
|
|
2193
2193
|
overflow-y:auto;
|
|
2194
|
-
border-radius:0 0
|
|
2194
|
+
border-radius:0 0 4px 4px;
|
|
2195
2195
|
white-space:normal;
|
|
2196
2196
|
border:1px solid #edeff2;
|
|
2197
2197
|
border:1px solid var(--iui-color-background-3);
|
|
@@ -2245,7 +2245,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2245
2245
|
box-sizing:border-box;
|
|
2246
2246
|
color:var(--iui-text-color);
|
|
2247
2247
|
box-sizing:border-box;
|
|
2248
|
-
border-radius:
|
|
2248
|
+
border-radius:4px;
|
|
2249
2249
|
display:inline-flex;
|
|
2250
2250
|
padding:11px 12px;
|
|
2251
2251
|
-webkit-user-select:none;
|
|
@@ -2563,7 +2563,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2563
2563
|
text-align:center;
|
|
2564
2564
|
width:40px;
|
|
2565
2565
|
height:36px;
|
|
2566
|
-
border-radius:
|
|
2566
|
+
border-radius:4px;
|
|
2567
2567
|
font-variant-numeric:tabular-nums;
|
|
2568
2568
|
}
|
|
2569
2569
|
.iui-calendar-day:focus-visible, .iui-calendar-day-today:focus-visible{
|
|
@@ -2616,7 +2616,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2616
2616
|
text-align:center;
|
|
2617
2617
|
width:40px;
|
|
2618
2618
|
height:36px;
|
|
2619
|
-
border-radius:
|
|
2619
|
+
border-radius:4px;
|
|
2620
2620
|
font-variant-numeric:tabular-nums;
|
|
2621
2621
|
font-weight:600;
|
|
2622
2622
|
background-color:#008ae0;
|
|
@@ -2692,7 +2692,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2692
2692
|
text-align:center;
|
|
2693
2693
|
width:40px;
|
|
2694
2694
|
height:36px;
|
|
2695
|
-
border-radius:
|
|
2695
|
+
border-radius:4px;
|
|
2696
2696
|
font-variant-numeric:tabular-nums;
|
|
2697
2697
|
color:rgba(0, 0, 0, 0.4);
|
|
2698
2698
|
color:var(--iui-text-color-muted);
|
|
@@ -2747,7 +2747,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2747
2747
|
text-align:center;
|
|
2748
2748
|
width:40px;
|
|
2749
2749
|
height:36px;
|
|
2750
|
-
border-radius:
|
|
2750
|
+
border-radius:4px;
|
|
2751
2751
|
font-variant-numeric:tabular-nums;
|
|
2752
2752
|
font-weight:600;
|
|
2753
2753
|
background-color:#008ae0;
|
|
@@ -2825,7 +2825,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2825
2825
|
text-align:center;
|
|
2826
2826
|
width:40px;
|
|
2827
2827
|
height:36px;
|
|
2828
|
-
border-radius:
|
|
2828
|
+
border-radius:4px;
|
|
2829
2829
|
font-variant-numeric:tabular-nums;
|
|
2830
2830
|
font-weight:600;
|
|
2831
2831
|
background-color:#008ae0;
|
|
@@ -2902,7 +2902,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2902
2902
|
text-align:center;
|
|
2903
2903
|
width:40px;
|
|
2904
2904
|
height:36px;
|
|
2905
|
-
border-radius:
|
|
2905
|
+
border-radius:4px;
|
|
2906
2906
|
font-variant-numeric:tabular-nums;
|
|
2907
2907
|
border-radius:0;
|
|
2908
2908
|
background-color:rgba(0, 138, 224, 0.2);
|
|
@@ -2981,7 +2981,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2981
2981
|
.iui-dialog{
|
|
2982
2982
|
z-index:999;
|
|
2983
2983
|
isolation:isolate;
|
|
2984
|
-
border-radius:
|
|
2984
|
+
border-radius:4px;
|
|
2985
2985
|
box-shadow:0 9px 46px rgba(0, 0, 0, 0.25);
|
|
2986
2986
|
box-sizing:border-box;
|
|
2987
2987
|
position:fixed;
|
|
@@ -3009,13 +3009,39 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3009
3009
|
}
|
|
3010
3010
|
|
|
3011
3011
|
.iui-dialog-default{
|
|
3012
|
-
left:50%;
|
|
3013
|
-
top:33%;
|
|
3014
|
-
transform:translate(-50%, -33%);
|
|
3015
3012
|
max-width:max(50%, 380px);
|
|
3016
3013
|
min-width:380px;
|
|
3017
3014
|
max-height:100vh;
|
|
3018
3015
|
}
|
|
3016
|
+
.iui-dialog-default:not([data-iui-placement]){
|
|
3017
|
+
left:50%;
|
|
3018
|
+
top:33%;
|
|
3019
|
+
transform:translate(-50%, -33%);
|
|
3020
|
+
}
|
|
3021
|
+
.iui-dialog-default[data-iui-placement=top-left]{
|
|
3022
|
+
top:0;
|
|
3023
|
+
left:0;
|
|
3024
|
+
margin-left:11px;
|
|
3025
|
+
margin-top:16px;
|
|
3026
|
+
}
|
|
3027
|
+
.iui-dialog-default[data-iui-placement=top-right]{
|
|
3028
|
+
top:0;
|
|
3029
|
+
right:0;
|
|
3030
|
+
margin-right:11px;
|
|
3031
|
+
margin-top:16px;
|
|
3032
|
+
}
|
|
3033
|
+
.iui-dialog-default[data-iui-placement=bottom-left]{
|
|
3034
|
+
bottom:0;
|
|
3035
|
+
left:0;
|
|
3036
|
+
margin-left:11px;
|
|
3037
|
+
margin-bottom:16px;
|
|
3038
|
+
}
|
|
3039
|
+
.iui-dialog-default[data-iui-placement=bottom-right]{
|
|
3040
|
+
bottom:0;
|
|
3041
|
+
right:0;
|
|
3042
|
+
margin-right:11px;
|
|
3043
|
+
margin-bottom:16px;
|
|
3044
|
+
}
|
|
3019
3045
|
|
|
3020
3046
|
.iui-dialog-full-page{
|
|
3021
3047
|
border-radius:0;
|
|
@@ -3320,7 +3346,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3320
3346
|
border:initial;
|
|
3321
3347
|
}
|
|
3322
3348
|
.iui-expandable-block.iui-borderless .iui-header{
|
|
3323
|
-
border-radius:
|
|
3349
|
+
border-radius:4px;
|
|
3324
3350
|
}
|
|
3325
3351
|
.iui-expandable-block.iui-borderless .iui-header:hover{
|
|
3326
3352
|
background-color:rgba(0, 0, 0, 0.1);
|
|
@@ -3336,7 +3362,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3336
3362
|
border:none;
|
|
3337
3363
|
vertical-align:baseline;
|
|
3338
3364
|
padding:11px 12px;
|
|
3339
|
-
border-radius:
|
|
3365
|
+
border-radius:4px;
|
|
3340
3366
|
border:1px solid #c7ccd1;
|
|
3341
3367
|
background-color:white;
|
|
3342
3368
|
border:1px solid var(--iui-color-background-border);
|
|
@@ -3345,7 +3371,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3345
3371
|
.iui-fieldset legend{
|
|
3346
3372
|
font-size:16px;
|
|
3347
3373
|
padding:1.5px 8px;
|
|
3348
|
-
border-radius:
|
|
3374
|
+
border-radius:4px;
|
|
3349
3375
|
-webkit-user-select:none;
|
|
3350
3376
|
-moz-user-select:none;
|
|
3351
3377
|
-ms-user-select:none;
|
|
@@ -3508,7 +3534,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3508
3534
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
3509
3535
|
color:var(--iui-color-foreground-primary);
|
|
3510
3536
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
3511
|
-
border-radius:
|
|
3537
|
+
border-radius:4px;
|
|
3512
3538
|
box-sizing:border-box;
|
|
3513
3539
|
cursor:pointer;
|
|
3514
3540
|
text-decoration:none;
|
|
@@ -3602,7 +3628,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3602
3628
|
.iui-page-header .iui-header-button-icon{
|
|
3603
3629
|
width:24px;
|
|
3604
3630
|
height:24px;
|
|
3605
|
-
border-radius:
|
|
3631
|
+
border-radius:4px;
|
|
3606
3632
|
}
|
|
3607
3633
|
@media (prefers-reduced-motion: no-preference){
|
|
3608
3634
|
.iui-page-header .iui-header-button-icon{
|
|
@@ -3659,7 +3685,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3659
3685
|
padding:4px;
|
|
3660
3686
|
width:16px;
|
|
3661
3687
|
height:16px;
|
|
3662
|
-
border-radius:
|
|
3688
|
+
border-radius:4px;
|
|
3663
3689
|
background-color:#edeff2;
|
|
3664
3690
|
fill:rgba(0, 0, 0, 0.4);
|
|
3665
3691
|
background-color:var(--iui-color-background-3);
|
|
@@ -3792,7 +3818,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3792
3818
|
padding:4px;
|
|
3793
3819
|
width:16px;
|
|
3794
3820
|
height:16px;
|
|
3795
|
-
border-radius:
|
|
3821
|
+
border-radius:4px;
|
|
3796
3822
|
background-color:#edeff2;
|
|
3797
3823
|
fill:rgba(0, 0, 0, 0.4);
|
|
3798
3824
|
background-color:var(--iui-color-background-3);
|
|
@@ -4882,7 +4908,7 @@ label.iui-input-label.iui-disabled{
|
|
|
4882
4908
|
font-size:14px;
|
|
4883
4909
|
font-weight:400;
|
|
4884
4910
|
line-height:22px;
|
|
4885
|
-
border-radius:
|
|
4911
|
+
border-radius:4px;
|
|
4886
4912
|
-webkit-appearance:none;
|
|
4887
4913
|
-moz-appearance:none;
|
|
4888
4914
|
appearance:none;
|
|
@@ -4979,7 +5005,7 @@ label.iui-input-label.iui-disabled{
|
|
|
4979
5005
|
.iui-select-button{
|
|
4980
5006
|
width:100%;
|
|
4981
5007
|
margin:0;
|
|
4982
|
-
border-radius:
|
|
5008
|
+
border-radius:4px;
|
|
4983
5009
|
box-sizing:border-box;
|
|
4984
5010
|
padding:7px 12px;
|
|
4985
5011
|
min-height:38px;
|
|
@@ -5049,6 +5075,202 @@ label.iui-input-label.iui-disabled{
|
|
|
5049
5075
|
color:var(--iui-text-color-placeholder);
|
|
5050
5076
|
}
|
|
5051
5077
|
|
|
5078
|
+
.iui-select-tag-container{
|
|
5079
|
+
position:absolute;
|
|
5080
|
+
inset:0 40px 0 12px;
|
|
5081
|
+
height:100%;
|
|
5082
|
+
display:flex;
|
|
5083
|
+
align-items:center;
|
|
5084
|
+
gap:4px;
|
|
5085
|
+
overflow:hidden;
|
|
5086
|
+
}
|
|
5087
|
+
.iui-select-tag-container > * + *{
|
|
5088
|
+
margin-left:4px;
|
|
5089
|
+
}
|
|
5090
|
+
@supports (gap: 4px){
|
|
5091
|
+
.iui-select-tag-container > * + *{
|
|
5092
|
+
margin-left:0;
|
|
5093
|
+
}
|
|
5094
|
+
}
|
|
5095
|
+
|
|
5096
|
+
.iui-select-tag{
|
|
5097
|
+
-webkit-user-select:all;
|
|
5098
|
+
-moz-user-select:all;
|
|
5099
|
+
user-select:all;
|
|
5100
|
+
text-transform:lowercase;
|
|
5101
|
+
display:inline-flex;
|
|
5102
|
+
height:33px;
|
|
5103
|
+
margin-top:3px;
|
|
5104
|
+
margin-bottom:3px;
|
|
5105
|
+
border-radius:9999px;
|
|
5106
|
+
box-sizing:border-box;
|
|
5107
|
+
padding:0 2px;
|
|
5108
|
+
align-items:center;
|
|
5109
|
+
transition:border-color 0.2s ease-out;
|
|
5110
|
+
font-size:14px;
|
|
5111
|
+
text-transform:none;
|
|
5112
|
+
cursor:default;
|
|
5113
|
+
-webkit-tap-highlight-color:transparent;
|
|
5114
|
+
border:1px solid rgba(0, 0, 0, 0.4);
|
|
5115
|
+
background-color:white;
|
|
5116
|
+
color:rgba(0, 0, 0, 0.8);
|
|
5117
|
+
border:1px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
5118
|
+
background-color:var(--iui-color-background-1);
|
|
5119
|
+
color:var(--iui-text-color);
|
|
5120
|
+
margin-top:0;
|
|
5121
|
+
margin-bottom:0;
|
|
5122
|
+
display:inline-flex;
|
|
5123
|
+
align-items:center;
|
|
5124
|
+
height:80%;
|
|
5125
|
+
max-height:33px;
|
|
5126
|
+
}
|
|
5127
|
+
.iui-select-tag:hover{
|
|
5128
|
+
border-color:black;
|
|
5129
|
+
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
5130
|
+
}
|
|
5131
|
+
|
|
5132
|
+
.iui-select-tag-label{
|
|
5133
|
+
margin:0;
|
|
5134
|
+
padding:0;
|
|
5135
|
+
border:none;
|
|
5136
|
+
vertical-align:baseline;
|
|
5137
|
+
font-size:14px;
|
|
5138
|
+
font-weight:400;
|
|
5139
|
+
line-height:22px;
|
|
5140
|
+
white-space:nowrap;
|
|
5141
|
+
text-overflow:ellipsis;
|
|
5142
|
+
overflow:hidden;
|
|
5143
|
+
margin:0 4px 0 8px;
|
|
5144
|
+
display:inline-flex;
|
|
5145
|
+
align-items:center;
|
|
5146
|
+
}
|
|
5147
|
+
.iui-select-tag-label:only-child{
|
|
5148
|
+
margin:0 8px;
|
|
5149
|
+
}
|
|
5150
|
+
.iui-select-button.iui-small .iui-select-tag-label{
|
|
5151
|
+
font-size:12px;
|
|
5152
|
+
line-height:16px;
|
|
5153
|
+
}
|
|
5154
|
+
|
|
5155
|
+
.iui-select-tag-button{
|
|
5156
|
+
--_iui-button-active-stripe-inset:initial;
|
|
5157
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
5158
|
+
margin:0;
|
|
5159
|
+
padding:0;
|
|
5160
|
+
border:none;
|
|
5161
|
+
vertical-align:baseline;
|
|
5162
|
+
font-family:inherit;
|
|
5163
|
+
display:inline-flex;
|
|
5164
|
+
align-items:center;
|
|
5165
|
+
vertical-align:middle;
|
|
5166
|
+
justify-content:center;
|
|
5167
|
+
position:relative;
|
|
5168
|
+
box-sizing:border-box;
|
|
5169
|
+
border-radius:4px;
|
|
5170
|
+
line-height:22px;
|
|
5171
|
+
box-shadow:none;
|
|
5172
|
+
font-size:14px;
|
|
5173
|
+
font-weight:400;
|
|
5174
|
+
text-decoration:none;
|
|
5175
|
+
-webkit-user-select:none;
|
|
5176
|
+
-moz-user-select:none;
|
|
5177
|
+
-ms-user-select:none;
|
|
5178
|
+
user-select:none;
|
|
5179
|
+
cursor:pointer;
|
|
5180
|
+
white-space:nowrap;
|
|
5181
|
+
border:1px solid transparent;
|
|
5182
|
+
color:rgba(0, 0, 0, 0.8);
|
|
5183
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
5184
|
+
color:var(--_iui-button-text-color);
|
|
5185
|
+
border-color:transparent;
|
|
5186
|
+
background-color:transparent;
|
|
5187
|
+
padding:0 8px;
|
|
5188
|
+
height:38px;
|
|
5189
|
+
gap:8px;
|
|
5190
|
+
border-radius:50%;
|
|
5191
|
+
padding:0 4px;
|
|
5192
|
+
height:100%;
|
|
5193
|
+
aspect-ratio:1/1;
|
|
5194
|
+
}
|
|
5195
|
+
@media (prefers-reduced-motion: no-preference){
|
|
5196
|
+
.iui-select-tag-button{
|
|
5197
|
+
transition:color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
|
|
5198
|
+
}
|
|
5199
|
+
}
|
|
5200
|
+
.iui-select-tag-button:hover{
|
|
5201
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
5202
|
+
text-decoration:none;
|
|
5203
|
+
}
|
|
5204
|
+
.iui-select-tag-button:focus-visible{
|
|
5205
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
5206
|
+
outline-offset:-1px;
|
|
5207
|
+
}
|
|
5208
|
+
@supports not selector(*:focus-visible){
|
|
5209
|
+
.iui-select-tag-button:focus{
|
|
5210
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
5211
|
+
outline-offset:-1px;
|
|
5212
|
+
}
|
|
5213
|
+
}
|
|
5214
|
+
.iui-select-tag-button[disabled], .iui-select-tag-button:disabled{
|
|
5215
|
+
cursor:not-allowed;
|
|
5216
|
+
background:#edeff2;
|
|
5217
|
+
border-color:#edeff2;
|
|
5218
|
+
color:rgba(0, 0, 0, 0.2);
|
|
5219
|
+
background:var(--iui-color-background-disabled);
|
|
5220
|
+
border-color:var(--iui-color-background-disabled);
|
|
5221
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
5222
|
+
}
|
|
5223
|
+
.iui-select-tag-button > .iui-button-icon:only-child{
|
|
5224
|
+
margin-left:3px;
|
|
5225
|
+
margin-right:3px;
|
|
5226
|
+
}
|
|
5227
|
+
.iui-select-tag-button:hover{
|
|
5228
|
+
background-color:rgba(0, 0, 0, 0.1);
|
|
5229
|
+
border-color:transparent;
|
|
5230
|
+
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
|
|
5231
|
+
border-color:transparent;
|
|
5232
|
+
}
|
|
5233
|
+
.iui-select-tag-button.iui-active{
|
|
5234
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
5235
|
+
color:#008ae0;
|
|
5236
|
+
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
5237
|
+
color:var(--iui-color-foreground-primary);
|
|
5238
|
+
border-color:transparent;
|
|
5239
|
+
}
|
|
5240
|
+
.iui-select-tag-button[disabled], .iui-select-tag-button:disabled{
|
|
5241
|
+
cursor:not-allowed;
|
|
5242
|
+
background:#edeff2;
|
|
5243
|
+
border-color:#edeff2;
|
|
5244
|
+
color:rgba(0, 0, 0, 0.2);
|
|
5245
|
+
background:var(--iui-color-background-disabled);
|
|
5246
|
+
border-color:var(--iui-color-background-disabled);
|
|
5247
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
5248
|
+
background-color:transparent;
|
|
5249
|
+
border-color:transparent;
|
|
5250
|
+
background-color:transparent;
|
|
5251
|
+
border-color:transparent;
|
|
5252
|
+
}
|
|
5253
|
+
.iui-select-tag-button[disabled].iui-active, .iui-select-tag-button:disabled.iui-active{
|
|
5254
|
+
background-color:rgba(0, 0, 0, 0.05);
|
|
5255
|
+
background-color:rgba(var(--iui-color-foreground-body-rgb), 0.05);
|
|
5256
|
+
}
|
|
5257
|
+
.iui-select-button.iui-small .iui-select-tag-button{
|
|
5258
|
+
font-size:12px;
|
|
5259
|
+
line-height:16px;
|
|
5260
|
+
}
|
|
5261
|
+
|
|
5262
|
+
.iui-select-tag-button-icon{
|
|
5263
|
+
width:16px;
|
|
5264
|
+
height:16px;
|
|
5265
|
+
transition:fill 0.2s ease-out;
|
|
5266
|
+
fill:currentColor;
|
|
5267
|
+
flex-shrink:0;
|
|
5268
|
+
}
|
|
5269
|
+
.iui-select-button.iui-small .iui-select-tag-button-icon{
|
|
5270
|
+
width:12px;
|
|
5271
|
+
height:12px;
|
|
5272
|
+
}
|
|
5273
|
+
|
|
5052
5274
|
.iui-textarea{
|
|
5053
5275
|
margin:0;
|
|
5054
5276
|
padding:0;
|
|
@@ -5059,7 +5281,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5059
5281
|
font-size:14px;
|
|
5060
5282
|
font-weight:400;
|
|
5061
5283
|
line-height:22px;
|
|
5062
|
-
border-radius:
|
|
5284
|
+
border-radius:4px;
|
|
5063
5285
|
-webkit-appearance:none;
|
|
5064
5286
|
-moz-appearance:none;
|
|
5065
5287
|
appearance:none;
|
|
@@ -5251,7 +5473,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5251
5473
|
width:16px;
|
|
5252
5474
|
height:16px;
|
|
5253
5475
|
position:relative;
|
|
5254
|
-
border-radius:
|
|
5476
|
+
border-radius:4px;
|
|
5255
5477
|
background-color:var(--_iui-checkbox-background-color);
|
|
5256
5478
|
flex-shrink:0;
|
|
5257
5479
|
cursor:pointer;
|
|
@@ -5409,7 +5631,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5409
5631
|
width:16px;
|
|
5410
5632
|
height:16px;
|
|
5411
5633
|
position:relative;
|
|
5412
|
-
border-radius:
|
|
5634
|
+
border-radius:4px;
|
|
5413
5635
|
background-color:var(--_iui-checkbox-background-color);
|
|
5414
5636
|
flex-shrink:0;
|
|
5415
5637
|
cursor:pointer;
|
|
@@ -5564,7 +5786,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5564
5786
|
padding:0;
|
|
5565
5787
|
border:none;
|
|
5566
5788
|
vertical-align:baseline;
|
|
5567
|
-
border-radius:
|
|
5789
|
+
border-radius:4px;
|
|
5568
5790
|
display:inline-block;
|
|
5569
5791
|
font-size:12px;
|
|
5570
5792
|
font-weight:600;
|
|
@@ -5633,7 +5855,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5633
5855
|
}
|
|
5634
5856
|
.iui-location-marker-data-rich > .iui-location-marker-data-rich-body{
|
|
5635
5857
|
min-width:32px;
|
|
5636
|
-
border-radius:
|
|
5858
|
+
border-radius:4px;
|
|
5637
5859
|
text-align:center;
|
|
5638
5860
|
font-size:16px;
|
|
5639
5861
|
padding:3px 8px;
|
|
@@ -5741,7 +5963,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5741
5963
|
margin:0;
|
|
5742
5964
|
width:24px;
|
|
5743
5965
|
height:24px;
|
|
5744
|
-
border-radius:
|
|
5966
|
+
border-radius:4px;
|
|
5745
5967
|
}
|
|
5746
5968
|
.iui-menu.iui-scroll{
|
|
5747
5969
|
overflow-y:auto;
|
|
@@ -6639,10 +6861,10 @@ label.iui-input-label.iui-disabled{
|
|
|
6639
6861
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
6640
6862
|
}
|
|
6641
6863
|
.iui-radio-tile:first-of-type > .iui-radio-tile-content{
|
|
6642
|
-
border-radius:
|
|
6864
|
+
border-radius:4px 0 0 4px;
|
|
6643
6865
|
}
|
|
6644
6866
|
.iui-radio-tile:last-of-type > .iui-radio-tile-content{
|
|
6645
|
-
border-radius:0
|
|
6867
|
+
border-radius:0 4px 4px 0;
|
|
6646
6868
|
}
|
|
6647
6869
|
.iui-radio-tile:not(:first-of-type) > .iui-radio-tile-content{
|
|
6648
6870
|
margin-left:-1px;
|
|
@@ -7934,7 +8156,7 @@ label.iui-input-label.iui-disabled{
|
|
|
7934
8156
|
justify-content:center;
|
|
7935
8157
|
position:relative;
|
|
7936
8158
|
box-sizing:border-box;
|
|
7937
|
-
border-radius:
|
|
8159
|
+
border-radius:4px;
|
|
7938
8160
|
line-height:22px;
|
|
7939
8161
|
box-shadow:none;
|
|
7940
8162
|
font-size:14px;
|
|
@@ -8091,9 +8313,6 @@ label.iui-input-label.iui-disabled{
|
|
|
8091
8313
|
.iui-tabs-wrapper.iui-horizontal .iui-tab.iui-active::after{
|
|
8092
8314
|
height:2px;
|
|
8093
8315
|
}
|
|
8094
|
-
.iui-tabs-wrapper.iui-vertical .iui-tabs{
|
|
8095
|
-
flex-direction:column;
|
|
8096
|
-
}
|
|
8097
8316
|
.iui-tabs-wrapper.iui-vertical .iui-tabs li,
|
|
8098
8317
|
.iui-tabs-wrapper.iui-vertical .iui-tabs .iui-tab{
|
|
8099
8318
|
width:100%;
|
|
@@ -8116,7 +8335,6 @@ label.iui-input-label.iui-disabled{
|
|
|
8116
8335
|
border:none;
|
|
8117
8336
|
vertical-align:baseline;
|
|
8118
8337
|
position:relative;
|
|
8119
|
-
align-items:center;
|
|
8120
8338
|
list-style:none;
|
|
8121
8339
|
-webkit-user-select:none;
|
|
8122
8340
|
-moz-user-select:none;
|
|
@@ -8133,15 +8351,13 @@ label.iui-input-label.iui-disabled{
|
|
|
8133
8351
|
display:flex;
|
|
8134
8352
|
align-items:center;
|
|
8135
8353
|
font-size:14px;
|
|
8354
|
+
min-height:38px;
|
|
8355
|
+
height:100%;
|
|
8136
8356
|
cursor:pointer;
|
|
8357
|
+
transition:background-color 0.2s ease-out;
|
|
8137
8358
|
color:rgba(0, 0, 0, 0.8);
|
|
8138
8359
|
color:var(--iui-text-color);
|
|
8139
8360
|
}
|
|
8140
|
-
@media (prefers-reduced-motion: no-preference){
|
|
8141
|
-
.iui-tabs .iui-tab{
|
|
8142
|
-
transition:background-color 0.2s ease-out;
|
|
8143
|
-
}
|
|
8144
|
-
}
|
|
8145
8361
|
.iui-tabs .iui-tab.iui-active{
|
|
8146
8362
|
color:#008ae0;
|
|
8147
8363
|
color:var(--iui-color-foreground-primary);
|
|
@@ -8176,20 +8392,14 @@ label.iui-input-label.iui-disabled{
|
|
|
8176
8392
|
.iui-tabs .iui-tab-icon{
|
|
8177
8393
|
width:16px;
|
|
8178
8394
|
height:16px;
|
|
8395
|
+
flex-shrink:0;
|
|
8396
|
+
transition:fill 0.2s ease-out;
|
|
8179
8397
|
fill:rgba(0, 0, 0, 0.8);
|
|
8180
8398
|
fill:var(--iui-icons-color-actionable);
|
|
8181
8399
|
}
|
|
8182
|
-
@media (prefers-reduced-motion: no-preference){
|
|
8183
|
-
.iui-tabs .iui-tab-icon{
|
|
8184
|
-
transition:fill 0.2s ease-out;
|
|
8185
|
-
}
|
|
8186
|
-
}
|
|
8187
8400
|
.iui-tabs .iui-tab-icon + .iui-tab-label{
|
|
8188
8401
|
margin-left:8px;
|
|
8189
8402
|
}
|
|
8190
|
-
.iui-tabs .iui-tab-label{
|
|
8191
|
-
text-align:left;
|
|
8192
|
-
}
|
|
8193
8403
|
.iui-tabs .iui-tab-description{
|
|
8194
8404
|
display:none;
|
|
8195
8405
|
font-size:12px;
|
|
@@ -8228,8 +8438,7 @@ label.iui-input-label.iui-disabled{
|
|
|
8228
8438
|
background-color:var(--iui-color-foreground-positive);
|
|
8229
8439
|
}
|
|
8230
8440
|
.iui-tabs.iui-default .iui-tab{
|
|
8231
|
-
|
|
8232
|
-
padding:0 16px;
|
|
8441
|
+
padding:4px 16px;
|
|
8233
8442
|
box-sizing:border-box;
|
|
8234
8443
|
background-color:#f9f9fb;
|
|
8235
8444
|
border:1px solid #c7ccd1;
|
|
@@ -8277,10 +8486,10 @@ label.iui-input-label.iui-disabled{
|
|
|
8277
8486
|
}
|
|
8278
8487
|
|
|
8279
8488
|
.iui-tabs.iui-default.iui-large .iui-tab{
|
|
8280
|
-
height:49px;
|
|
8489
|
+
min-height:49px;
|
|
8281
8490
|
}
|
|
8282
8491
|
.iui-tabs.iui-default.iui-large .iui-tab-description{
|
|
8283
|
-
display
|
|
8492
|
+
display:-webkit-box;
|
|
8284
8493
|
}
|
|
8285
8494
|
.iui-tabs.iui-default.iui-green .iui-tab::after{
|
|
8286
8495
|
background-color:#53a21a;
|
|
@@ -8295,8 +8504,7 @@ label.iui-input-label.iui-disabled{
|
|
|
8295
8504
|
border:1px solid var(--iui-color-background-5);
|
|
8296
8505
|
}
|
|
8297
8506
|
.iui-tabs.iui-borderless .iui-tab{
|
|
8298
|
-
|
|
8299
|
-
padding:0 24px;
|
|
8507
|
+
padding:4px 24px;
|
|
8300
8508
|
background-color:transparent;
|
|
8301
8509
|
}
|
|
8302
8510
|
.iui-tabs.iui-borderless .iui-tab::after{
|
|
@@ -8330,10 +8538,10 @@ label.iui-input-label.iui-disabled{
|
|
|
8330
8538
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6));
|
|
8331
8539
|
}
|
|
8332
8540
|
.iui-tabs.iui-borderless.iui-large .iui-tab{
|
|
8333
|
-
height:49px;
|
|
8541
|
+
min-height:49px;
|
|
8334
8542
|
}
|
|
8335
8543
|
.iui-tabs.iui-borderless.iui-large .iui-tab-description{
|
|
8336
|
-
display
|
|
8544
|
+
display:-webkit-box;
|
|
8337
8545
|
}
|
|
8338
8546
|
.iui-tabs.iui-borderless .iui-tab[disabled]:hover{
|
|
8339
8547
|
background-color:transparent;
|
|
@@ -8353,11 +8561,11 @@ label.iui-input-label.iui-disabled{
|
|
|
8353
8561
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6));
|
|
8354
8562
|
}
|
|
8355
8563
|
.iui-tabs.iui-pill .iui-tab{
|
|
8356
|
-
|
|
8564
|
+
padding:4px;
|
|
8357
8565
|
background-color:transparent;
|
|
8358
8566
|
width:100%;
|
|
8359
8567
|
justify-content:center;
|
|
8360
|
-
border-radius:
|
|
8568
|
+
border-radius:4px;
|
|
8361
8569
|
}
|
|
8362
8570
|
.iui-tabs.iui-pill .iui-tab::after{
|
|
8363
8571
|
bottom:0;
|
|
@@ -8421,18 +8629,33 @@ label.iui-input-label.iui-disabled{
|
|
|
8421
8629
|
background-color:var(--iui-color-foreground-positive);
|
|
8422
8630
|
}
|
|
8423
8631
|
|
|
8632
|
+
.iui-tab-label{
|
|
8633
|
+
text-align:left;
|
|
8634
|
+
max-width:60ch;
|
|
8635
|
+
}
|
|
8636
|
+
.iui-tab-label > *{
|
|
8637
|
+
overflow:hidden;
|
|
8638
|
+
white-space:nowrap;
|
|
8639
|
+
text-overflow:ellipsis;
|
|
8640
|
+
}
|
|
8641
|
+
@supports (-webkit-line-clamp: 1){
|
|
8642
|
+
.iui-tab-label > *{
|
|
8643
|
+
white-space:unset;
|
|
8644
|
+
display:-webkit-box;
|
|
8645
|
+
-webkit-line-clamp:3;
|
|
8646
|
+
-webkit-box-orient:vertical;
|
|
8647
|
+
}
|
|
8648
|
+
}
|
|
8649
|
+
|
|
8424
8650
|
.iui-tag{
|
|
8425
|
-
margin:0;
|
|
8426
|
-
padding:0;
|
|
8427
|
-
border:none;
|
|
8428
|
-
vertical-align:baseline;
|
|
8429
8651
|
-webkit-user-select:all;
|
|
8430
8652
|
-moz-user-select:all;
|
|
8431
8653
|
user-select:all;
|
|
8432
8654
|
text-transform:lowercase;
|
|
8433
8655
|
display:inline-flex;
|
|
8434
8656
|
height:33px;
|
|
8435
|
-
margin:3px
|
|
8657
|
+
margin-top:3px;
|
|
8658
|
+
margin-bottom:3px;
|
|
8436
8659
|
border-radius:9999px;
|
|
8437
8660
|
box-sizing:border-box;
|
|
8438
8661
|
padding:0 2px;
|
|
@@ -8455,10 +8678,6 @@ label.iui-input-label.iui-disabled{
|
|
|
8455
8678
|
}
|
|
8456
8679
|
|
|
8457
8680
|
.iui-tag-basic{
|
|
8458
|
-
margin:0;
|
|
8459
|
-
padding:0;
|
|
8460
|
-
border:none;
|
|
8461
|
-
vertical-align:baseline;
|
|
8462
8681
|
-webkit-user-select:all;
|
|
8463
8682
|
-moz-user-select:all;
|
|
8464
8683
|
user-select:all;
|
|
@@ -8496,7 +8715,7 @@ a.iui-tag-basic{
|
|
|
8496
8715
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
8497
8716
|
color:var(--iui-color-foreground-primary);
|
|
8498
8717
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
8499
|
-
border-radius:
|
|
8718
|
+
border-radius:4px;
|
|
8500
8719
|
box-sizing:border-box;
|
|
8501
8720
|
cursor:pointer;
|
|
8502
8721
|
text-decoration:none;
|
|
@@ -8582,7 +8801,7 @@ a.iui-tag-basic:focus-visible{
|
|
|
8582
8801
|
overflow-x:scroll;
|
|
8583
8802
|
}
|
|
8584
8803
|
.iui-tag-container.iui-visible{
|
|
8585
|
-
border-radius:
|
|
8804
|
+
border-radius:4px;
|
|
8586
8805
|
padding:3px 12px;
|
|
8587
8806
|
background-color:#edeff2;
|
|
8588
8807
|
background-color:var(--iui-color-background-3);
|
|
@@ -8660,7 +8879,7 @@ a.iui-tag-basic:focus-visible{
|
|
|
8660
8879
|
-ms-user-select:none;
|
|
8661
8880
|
user-select:none;
|
|
8662
8881
|
color:transparent;
|
|
8663
|
-
border-radius:
|
|
8882
|
+
border-radius:4px;
|
|
8664
8883
|
cursor:progress;
|
|
8665
8884
|
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));
|
|
8666
8885
|
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));
|
|
@@ -9239,7 +9458,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9239
9458
|
}
|
|
9240
9459
|
.iui-time > ol > li{
|
|
9241
9460
|
padding:6px 16px;
|
|
9242
|
-
border-radius:
|
|
9461
|
+
border-radius:4px;
|
|
9243
9462
|
}
|
|
9244
9463
|
.iui-time > ol > li:focus-visible{
|
|
9245
9464
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -9298,7 +9517,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9298
9517
|
}
|
|
9299
9518
|
.iui-period > ol > li{
|
|
9300
9519
|
padding:6px 16px;
|
|
9301
|
-
border-radius:
|
|
9520
|
+
border-radius:4px;
|
|
9302
9521
|
}
|
|
9303
9522
|
.iui-period > ol > li:focus-visible{
|
|
9304
9523
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -9418,7 +9637,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9418
9637
|
pointer-events:all;
|
|
9419
9638
|
margin:0 16px 11px 16px;
|
|
9420
9639
|
min-height:44px;
|
|
9421
|
-
border-radius:
|
|
9640
|
+
border-radius:4px;
|
|
9422
9641
|
background-color:white;
|
|
9423
9642
|
border:1px solid black;
|
|
9424
9643
|
box-shadow:0 0 0 1px rgba(255, 255, 255, 0.4), 0 9px 46px rgba(0, 0, 0, 0.25);
|
|
@@ -9458,7 +9677,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9458
9677
|
}
|
|
9459
9678
|
.iui-toast-anchor{
|
|
9460
9679
|
text-decoration:underline;
|
|
9461
|
-
border-radius:
|
|
9680
|
+
border-radius:4px;
|
|
9462
9681
|
cursor:pointer;
|
|
9463
9682
|
font-size:12px;
|
|
9464
9683
|
margin-right:16px;
|
|
@@ -9928,7 +10147,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9928
10147
|
vertical-align:baseline;
|
|
9929
10148
|
display:block;
|
|
9930
10149
|
text-align:center;
|
|
9931
|
-
border-radius:
|
|
10150
|
+
border-radius:4px;
|
|
9932
10151
|
font-size:12px;
|
|
9933
10152
|
overflow:hidden;
|
|
9934
10153
|
max-width:400px;
|