@itwin/itwinui-css 0.59.1 → 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 +945 -0
- package/LICENSE.md +9 -0
- package/README.md +1 -1
- package/css/alert.css +2 -2
- package/css/all.css +376 -198
- package/css/anchor.css +1 -1
- package/css/backdrop.css +24 -0
- 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 -6
- package/css/color-picker.css +1 -1
- package/css/date-picker.css +6 -6
- package/css/dialog.css +64 -97
- 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 +24 -55
- package/scss/backdrop/backdrop.scss +27 -0
- package/scss/backdrop/classes.scss +7 -0
- package/scss/backdrop/index.scss +3 -0
- package/scss/classes.scss +1 -0
- package/scss/code/codeblock.scss +0 -4
- package/scss/dialog/classes.scss +7 -6
- package/scss/dialog/dialog.scss +95 -125
- package/scss/index.scss +1 -0
- 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/src/index.scss +46 -0
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;
|
|
@@ -1045,6 +1045,27 @@ html.iui-theme-dark-hc{
|
|
|
1045
1045
|
font-weight:600;
|
|
1046
1046
|
}
|
|
1047
1047
|
|
|
1048
|
+
.iui-backdrop{
|
|
1049
|
+
z-index:998;
|
|
1050
|
+
isolation:isolate;
|
|
1051
|
+
position:absolute;
|
|
1052
|
+
top:0;
|
|
1053
|
+
left:0;
|
|
1054
|
+
width:100%;
|
|
1055
|
+
height:100%;
|
|
1056
|
+
background-color:rgba(0, 0, 0, 0.4);
|
|
1057
|
+
background-color:rgba(0, 0, 0, var(--iui-opacity-4));
|
|
1058
|
+
transition:visibility 0s linear, opacity 0.2s ease-out;
|
|
1059
|
+
transition-delay:0.2s, 0s;
|
|
1060
|
+
}
|
|
1061
|
+
.iui-backdrop:not(.iui-backdrop-visible){
|
|
1062
|
+
visibility:hidden;
|
|
1063
|
+
opacity:0;
|
|
1064
|
+
}
|
|
1065
|
+
.iui-backdrop.iui-backdrop-visible{
|
|
1066
|
+
transition-delay:0s;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1048
1069
|
.iui-blockquote{
|
|
1049
1070
|
margin:0;
|
|
1050
1071
|
padding:0;
|
|
@@ -1056,7 +1077,7 @@ html.iui-theme-dark-hc{
|
|
|
1056
1077
|
margin:11px 0;
|
|
1057
1078
|
text-align:justify;
|
|
1058
1079
|
box-shadow:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
1059
|
-
border-radius:
|
|
1080
|
+
border-radius:4px;
|
|
1060
1081
|
background-color:white;
|
|
1061
1082
|
border-left:8px solid #008ae0;
|
|
1062
1083
|
background-color:var(--iui-color-background-1);
|
|
@@ -1119,7 +1140,7 @@ html.iui-theme-dark-hc{
|
|
|
1119
1140
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1120
1141
|
color:var(--iui-color-foreground-primary);
|
|
1121
1142
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1122
|
-
border-radius:
|
|
1143
|
+
border-radius:4px;
|
|
1123
1144
|
box-sizing:border-box;
|
|
1124
1145
|
cursor:pointer;
|
|
1125
1146
|
text-decoration:none;
|
|
@@ -1129,7 +1150,7 @@ html.iui-theme-dark-hc{
|
|
|
1129
1150
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1130
1151
|
color:var(--iui-color-foreground-primary);
|
|
1131
1152
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1132
|
-
border-radius:
|
|
1153
|
+
border-radius:4px;
|
|
1133
1154
|
box-sizing:border-box;
|
|
1134
1155
|
cursor:pointer;
|
|
1135
1156
|
text-decoration:none;
|
|
@@ -1139,7 +1160,7 @@ html.iui-theme-dark-hc{
|
|
|
1139
1160
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1140
1161
|
color:var(--iui-color-foreground-primary);
|
|
1141
1162
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1142
|
-
border-radius:
|
|
1163
|
+
border-radius:4px;
|
|
1143
1164
|
box-sizing:border-box;
|
|
1144
1165
|
cursor:pointer;
|
|
1145
1166
|
text-decoration:none;
|
|
@@ -1334,7 +1355,7 @@ a.iui-breadcrumbs-text{
|
|
|
1334
1355
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
1335
1356
|
color:var(--iui-color-foreground-primary);
|
|
1336
1357
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
1337
|
-
border-radius:
|
|
1358
|
+
border-radius:4px;
|
|
1338
1359
|
box-sizing:border-box;
|
|
1339
1360
|
cursor:pointer;
|
|
1340
1361
|
text-decoration:none;
|
|
@@ -1396,7 +1417,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
1396
1417
|
justify-content:center;
|
|
1397
1418
|
position:relative;
|
|
1398
1419
|
box-sizing:border-box;
|
|
1399
|
-
border-radius:
|
|
1420
|
+
border-radius:4px;
|
|
1400
1421
|
line-height:22px;
|
|
1401
1422
|
box-shadow:none;
|
|
1402
1423
|
font-size:14px;
|
|
@@ -1520,7 +1541,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
1520
1541
|
justify-content:center;
|
|
1521
1542
|
position:relative;
|
|
1522
1543
|
box-sizing:border-box;
|
|
1523
|
-
border-radius:
|
|
1544
|
+
border-radius:4px;
|
|
1524
1545
|
line-height:22px;
|
|
1525
1546
|
box-shadow:none;
|
|
1526
1547
|
font-size:14px;
|
|
@@ -1845,12 +1866,12 @@ a.iui-breadcrumbs-text:focus{
|
|
|
1845
1866
|
transition-duration:0.2s;
|
|
1846
1867
|
}
|
|
1847
1868
|
.iui-button-group > *:first-child .iui-input, .iui-button-group > *:first-child .iui-button:where(:not(.iui-borderless)){
|
|
1848
|
-
border-top-left-radius:
|
|
1849
|
-
border-bottom-left-radius:
|
|
1869
|
+
border-top-left-radius:4px;
|
|
1870
|
+
border-bottom-left-radius:4px;
|
|
1850
1871
|
}
|
|
1851
1872
|
.iui-button-group > *:last-child .iui-input, .iui-button-group > *:last-child .iui-button:where(:not(.iui-borderless)){
|
|
1852
|
-
border-bottom-right-radius:
|
|
1853
|
-
border-top-right-radius:
|
|
1873
|
+
border-bottom-right-radius:4px;
|
|
1874
|
+
border-top-right-radius:4px;
|
|
1854
1875
|
}
|
|
1855
1876
|
.iui-button-group > * + *{
|
|
1856
1877
|
margin-left:-1px;
|
|
@@ -1889,12 +1910,12 @@ a.iui-breadcrumbs-text:focus{
|
|
|
1889
1910
|
transition-duration:0.2s;
|
|
1890
1911
|
}
|
|
1891
1912
|
.iui-button-group-vertical > *:first-child .iui-input, .iui-button-group-vertical > *:first-child .iui-button:where(:not(.iui-borderless)){
|
|
1892
|
-
border-top-left-radius:
|
|
1893
|
-
border-top-right-radius:
|
|
1913
|
+
border-top-left-radius:4px;
|
|
1914
|
+
border-top-right-radius:4px;
|
|
1894
1915
|
}
|
|
1895
1916
|
.iui-button-group-vertical > *:last-child .iui-input, .iui-button-group-vertical > *:last-child .iui-button:where(:not(.iui-borderless)){
|
|
1896
|
-
border-bottom-right-radius:
|
|
1897
|
-
border-bottom-left-radius:
|
|
1917
|
+
border-bottom-right-radius:4px;
|
|
1918
|
+
border-bottom-left-radius:4px;
|
|
1898
1919
|
}
|
|
1899
1920
|
.iui-button-group-vertical > * + *{
|
|
1900
1921
|
margin-top:-1px;
|
|
@@ -1935,12 +1956,12 @@ a.iui-breadcrumbs-text:focus{
|
|
|
1935
1956
|
transition-duration:0.2s;
|
|
1936
1957
|
}
|
|
1937
1958
|
.iui-button-split-menu > *:first-child .iui-input, .iui-button-split-menu > *:first-child .iui-button:where(:not(.iui-borderless)){
|
|
1938
|
-
border-top-left-radius:
|
|
1939
|
-
border-bottom-left-radius:
|
|
1959
|
+
border-top-left-radius:4px;
|
|
1960
|
+
border-bottom-left-radius:4px;
|
|
1940
1961
|
}
|
|
1941
1962
|
.iui-button-split-menu > *:last-child .iui-input, .iui-button-split-menu > *:last-child .iui-button:where(:not(.iui-borderless)){
|
|
1942
|
-
border-bottom-right-radius:
|
|
1943
|
-
border-top-right-radius:
|
|
1963
|
+
border-bottom-right-radius:4px;
|
|
1964
|
+
border-top-right-radius:4px;
|
|
1944
1965
|
}
|
|
1945
1966
|
.iui-button-split-menu > * + *{
|
|
1946
1967
|
margin-left:-1px;
|
|
@@ -1997,7 +2018,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
1997
2018
|
|
|
1998
2019
|
.iui-carousel{
|
|
1999
2020
|
overflow:hidden;
|
|
2000
|
-
border-radius:
|
|
2021
|
+
border-radius:4px;
|
|
2001
2022
|
}
|
|
2002
2023
|
.iui-carousel:focus-visible{
|
|
2003
2024
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -2057,7 +2078,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2057
2078
|
vertical-align:baseline;
|
|
2058
2079
|
flex:2;
|
|
2059
2080
|
max-width:256px;
|
|
2060
|
-
border-radius:
|
|
2081
|
+
border-radius:4px;
|
|
2061
2082
|
white-space:nowrap;
|
|
2062
2083
|
overflow-x:auto;
|
|
2063
2084
|
overflow-x:overlay;
|
|
@@ -2133,7 +2154,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2133
2154
|
font-family:ui-monospace, Menlo, "Segoe UI Mono", Consolas, "Roboto Mono", "Courier New", monospace;
|
|
2134
2155
|
font-size:12px;
|
|
2135
2156
|
padding:0 4px;
|
|
2136
|
-
border-radius:
|
|
2157
|
+
border-radius:4px;
|
|
2137
2158
|
-webkit-user-select:all;
|
|
2138
2159
|
-moz-user-select:all;
|
|
2139
2160
|
user-select:all;
|
|
@@ -2153,7 +2174,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2153
2174
|
.iui-codeblock > .iui-title-bar{
|
|
2154
2175
|
display:flex;
|
|
2155
2176
|
align-items:center;
|
|
2156
|
-
border-radius:
|
|
2177
|
+
border-radius:4px 4px 0 0;
|
|
2157
2178
|
background-color:#edeff2;
|
|
2158
2179
|
background-color:var(--iui-color-background-3);
|
|
2159
2180
|
}
|
|
@@ -2166,14 +2187,11 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2166
2187
|
.iui-codeblock > .iui-title-bar > .iui-button{
|
|
2167
2188
|
margin-left:auto;
|
|
2168
2189
|
}
|
|
2169
|
-
.iui-codeblock .iui-button{
|
|
2170
|
-
gap:0;
|
|
2171
|
-
}
|
|
2172
2190
|
.iui-codeblock > .iui-codeblock-content{
|
|
2173
2191
|
margin:0;
|
|
2174
2192
|
overflow-x:auto;
|
|
2175
2193
|
overflow-y:auto;
|
|
2176
|
-
border-radius:0 0
|
|
2194
|
+
border-radius:0 0 4px 4px;
|
|
2177
2195
|
white-space:normal;
|
|
2178
2196
|
border:1px solid #edeff2;
|
|
2179
2197
|
border:1px solid var(--iui-color-background-3);
|
|
@@ -2227,7 +2245,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2227
2245
|
box-sizing:border-box;
|
|
2228
2246
|
color:var(--iui-text-color);
|
|
2229
2247
|
box-sizing:border-box;
|
|
2230
|
-
border-radius:
|
|
2248
|
+
border-radius:4px;
|
|
2231
2249
|
display:inline-flex;
|
|
2232
2250
|
padding:11px 12px;
|
|
2233
2251
|
-webkit-user-select:none;
|
|
@@ -2545,7 +2563,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2545
2563
|
text-align:center;
|
|
2546
2564
|
width:40px;
|
|
2547
2565
|
height:36px;
|
|
2548
|
-
border-radius:
|
|
2566
|
+
border-radius:4px;
|
|
2549
2567
|
font-variant-numeric:tabular-nums;
|
|
2550
2568
|
}
|
|
2551
2569
|
.iui-calendar-day:focus-visible, .iui-calendar-day-today:focus-visible{
|
|
@@ -2598,7 +2616,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2598
2616
|
text-align:center;
|
|
2599
2617
|
width:40px;
|
|
2600
2618
|
height:36px;
|
|
2601
|
-
border-radius:
|
|
2619
|
+
border-radius:4px;
|
|
2602
2620
|
font-variant-numeric:tabular-nums;
|
|
2603
2621
|
font-weight:600;
|
|
2604
2622
|
background-color:#008ae0;
|
|
@@ -2674,7 +2692,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2674
2692
|
text-align:center;
|
|
2675
2693
|
width:40px;
|
|
2676
2694
|
height:36px;
|
|
2677
|
-
border-radius:
|
|
2695
|
+
border-radius:4px;
|
|
2678
2696
|
font-variant-numeric:tabular-nums;
|
|
2679
2697
|
color:rgba(0, 0, 0, 0.4);
|
|
2680
2698
|
color:var(--iui-text-color-muted);
|
|
@@ -2729,7 +2747,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2729
2747
|
text-align:center;
|
|
2730
2748
|
width:40px;
|
|
2731
2749
|
height:36px;
|
|
2732
|
-
border-radius:
|
|
2750
|
+
border-radius:4px;
|
|
2733
2751
|
font-variant-numeric:tabular-nums;
|
|
2734
2752
|
font-weight:600;
|
|
2735
2753
|
background-color:#008ae0;
|
|
@@ -2807,7 +2825,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2807
2825
|
text-align:center;
|
|
2808
2826
|
width:40px;
|
|
2809
2827
|
height:36px;
|
|
2810
|
-
border-radius:
|
|
2828
|
+
border-radius:4px;
|
|
2811
2829
|
font-variant-numeric:tabular-nums;
|
|
2812
2830
|
font-weight:600;
|
|
2813
2831
|
background-color:#008ae0;
|
|
@@ -2884,7 +2902,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2884
2902
|
text-align:center;
|
|
2885
2903
|
width:40px;
|
|
2886
2904
|
height:36px;
|
|
2887
|
-
border-radius:
|
|
2905
|
+
border-radius:4px;
|
|
2888
2906
|
font-variant-numeric:tabular-nums;
|
|
2889
2907
|
border-radius:0;
|
|
2890
2908
|
background-color:rgba(0, 138, 224, 0.2);
|
|
@@ -2949,115 +2967,112 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2949
2967
|
border-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-4));
|
|
2950
2968
|
}
|
|
2951
2969
|
|
|
2952
|
-
.iui-dialog-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
border:none;
|
|
2956
|
-
vertical-align:baseline;
|
|
2957
|
-
z-index:999;
|
|
2958
|
-
isolation:isolate;
|
|
2959
|
-
position:fixed;
|
|
2970
|
+
.iui-dialog-wrapper{
|
|
2971
|
+
position:relative;
|
|
2972
|
+
overflow:hidden;
|
|
2960
2973
|
top:0;
|
|
2961
2974
|
left:0;
|
|
2962
2975
|
width:100%;
|
|
2963
2976
|
height:100%;
|
|
2964
|
-
|
|
2965
|
-
|
|
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;
|
|
2977
|
+
pointer-events:none;
|
|
2978
|
+
transform:translateX(0);
|
|
2978
2979
|
}
|
|
2979
2980
|
|
|
2980
2981
|
.iui-dialog{
|
|
2981
|
-
|
|
2982
|
+
z-index:999;
|
|
2983
|
+
isolation:isolate;
|
|
2984
|
+
border-radius:4px;
|
|
2982
2985
|
box-shadow:0 9px 46px rgba(0, 0, 0, 0.25);
|
|
2983
2986
|
box-sizing:border-box;
|
|
2984
|
-
position:
|
|
2987
|
+
position:fixed;
|
|
2985
2988
|
padding:11px 16px;
|
|
2986
2989
|
box-sizing:border-box;
|
|
2987
2990
|
padding:11px 16px;
|
|
2988
2991
|
overflow:hidden;
|
|
2989
|
-
|
|
2992
|
+
pointer-events:auto;
|
|
2993
|
+
background-color:#FFF;
|
|
2990
2994
|
background-color:var(--iui-color-background-1);
|
|
2995
|
+
transition:visibility 0s linear, opacity 0.2s ease-out;
|
|
2996
|
+
transition-delay:0.2s, 0s;
|
|
2991
2997
|
}
|
|
2992
2998
|
@media (forced-colors: active){
|
|
2993
2999
|
.iui-dialog{
|
|
2994
3000
|
border:1px solid;
|
|
2995
3001
|
}
|
|
2996
3002
|
}
|
|
3003
|
+
.iui-dialog:not(.iui-dialog-visible){
|
|
3004
|
+
visibility:hidden;
|
|
3005
|
+
opacity:0;
|
|
3006
|
+
}
|
|
3007
|
+
.iui-dialog.iui-dialog-visible{
|
|
3008
|
+
transition-delay:0s;
|
|
3009
|
+
}
|
|
2997
3010
|
|
|
2998
|
-
.iui-dialog-default
|
|
3011
|
+
.iui-dialog-default{
|
|
3012
|
+
max-width:max(50%, 380px);
|
|
3013
|
+
min-width:380px;
|
|
3014
|
+
max-height:100vh;
|
|
3015
|
+
}
|
|
3016
|
+
.iui-dialog-default:not([data-iui-placement]){
|
|
2999
3017
|
left:50%;
|
|
3000
3018
|
top:33%;
|
|
3001
3019
|
transform:translate(-50%, -33%);
|
|
3002
|
-
max-width:50%;
|
|
3003
|
-
min-width:380px;
|
|
3004
|
-
max-height:100vh;
|
|
3005
3020
|
}
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
}
|
|
3021
|
+
.iui-dialog-default[data-iui-placement=top-left]{
|
|
3022
|
+
top:0;
|
|
3023
|
+
left:0;
|
|
3024
|
+
margin-left:11px;
|
|
3025
|
+
margin-top:16px;
|
|
3012
3026
|
}
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
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;
|
|
3018
3038
|
}
|
|
3019
|
-
.iui-dialog-
|
|
3039
|
+
.iui-dialog-default[data-iui-placement=bottom-right]{
|
|
3040
|
+
bottom:0;
|
|
3041
|
+
right:0;
|
|
3042
|
+
margin-right:11px;
|
|
3043
|
+
margin-bottom:16px;
|
|
3044
|
+
}
|
|
3045
|
+
|
|
3046
|
+
.iui-dialog-full-page{
|
|
3020
3047
|
border-radius:0;
|
|
3021
3048
|
height:100vh;
|
|
3049
|
+
height:100dvh;
|
|
3022
3050
|
width:100vw;
|
|
3023
3051
|
top:0;
|
|
3024
3052
|
left:0;
|
|
3025
|
-
max-width:initial;
|
|
3026
|
-
min-width:initial;
|
|
3027
3053
|
display:flex;
|
|
3028
3054
|
flex-direction:column;
|
|
3029
3055
|
will-change:transform;
|
|
3030
3056
|
}
|
|
3057
|
+
.iui-dialog-full-page:not(.iui-dialog-visible){
|
|
3058
|
+
transform:translateY(100%);
|
|
3059
|
+
}
|
|
3031
3060
|
@media (prefers-reduced-motion: no-preference){
|
|
3032
|
-
.iui-dialog-full-page
|
|
3033
|
-
transform:translateY(100%);
|
|
3061
|
+
.iui-dialog-full-page{
|
|
3034
3062
|
transition:visibility 0s linear 0.4s, opacity 0s linear 0.4s, transform 0.2s ease-in;
|
|
3035
3063
|
}
|
|
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{
|
|
3064
|
+
.iui-dialog-full-page.iui-dialog-visible{
|
|
3042
3065
|
transition:transform 0.4s ease-out;
|
|
3043
3066
|
}
|
|
3044
3067
|
}
|
|
3045
3068
|
|
|
3046
3069
|
.iui-dialog-draggable{
|
|
3047
|
-
|
|
3048
|
-
pointer-events:none;
|
|
3049
|
-
z-index:998;
|
|
3050
|
-
}
|
|
3051
|
-
.iui-dialog-draggable .iui-dialog{
|
|
3052
|
-
pointer-events:initial;
|
|
3053
|
-
max-width:100vw;
|
|
3070
|
+
max-width:100%;
|
|
3054
3071
|
max-height:100vh;
|
|
3055
3072
|
min-width:380px;
|
|
3056
3073
|
min-height:144px;
|
|
3057
3074
|
display:flex;
|
|
3058
3075
|
flex-direction:column;
|
|
3059
|
-
padding:0;
|
|
3060
|
-
border:1px solid #c7ccd1;
|
|
3061
3076
|
border:1px solid var(--iui-color-background-border);
|
|
3062
3077
|
}
|
|
3063
3078
|
|
|
@@ -3077,21 +3092,17 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3077
3092
|
box-sizing:border-box;
|
|
3078
3093
|
font-size:18px;
|
|
3079
3094
|
}
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
-moz-user-select:none;
|
|
3083
|
-
-ms-user-select:none;
|
|
3084
|
-
user-select:none;
|
|
3095
|
+
|
|
3096
|
+
.iui-dialog-title-bar-filled{
|
|
3085
3097
|
font-size:16px;
|
|
3086
3098
|
padding:6px 16px;
|
|
3099
|
+
margin:-11px -16px 11px -16px;
|
|
3087
3100
|
cursor:-webkit-grab;
|
|
3088
3101
|
cursor:grab;
|
|
3089
|
-
background-color:#edeff2;
|
|
3090
|
-
border-bottom:1px solid #c7ccd1;
|
|
3091
3102
|
background-color:var(--iui-color-background-3);
|
|
3092
3103
|
border-bottom:1px solid var(--iui-color-background-border);
|
|
3093
3104
|
}
|
|
3094
|
-
.iui-dialog-
|
|
3105
|
+
.iui-dialog-title-bar-filled:active{
|
|
3095
3106
|
cursor:-webkit-grabbing;
|
|
3096
3107
|
cursor:grabbing;
|
|
3097
3108
|
}
|
|
@@ -3103,49 +3114,23 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3103
3114
|
overflow-y:auto;
|
|
3104
3115
|
overflow-y:overlay;
|
|
3105
3116
|
}
|
|
3106
|
-
.iui-dialog-draggable .iui-dialog-content{
|
|
3107
|
-
margin:0;
|
|
3108
|
-
}
|
|
3109
3117
|
|
|
3110
3118
|
.iui-dialog-button-bar{
|
|
3111
3119
|
margin-top:11px;
|
|
3112
3120
|
display:flex;
|
|
3113
3121
|
align-items:center;
|
|
3114
3122
|
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
|
-
}
|
|
3123
|
+
gap:8px;
|
|
3131
3124
|
}
|
|
3132
3125
|
|
|
3133
|
-
.iui-dialog-animation-enter
|
|
3126
|
+
.iui-dialog-animation-enter{
|
|
3134
3127
|
transform:translateY(100%);
|
|
3135
3128
|
opacity:0;
|
|
3136
3129
|
}
|
|
3137
|
-
.iui-dialog-animation-enter-active
|
|
3130
|
+
.iui-dialog-animation-enter-active{
|
|
3138
3131
|
transform:translateY(0);
|
|
3139
3132
|
opacity:1;
|
|
3140
3133
|
}
|
|
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;
|
|
3148
|
-
}
|
|
3149
3134
|
|
|
3150
3135
|
.iui-expandable-block{
|
|
3151
3136
|
margin:0;
|
|
@@ -3361,7 +3346,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3361
3346
|
border:initial;
|
|
3362
3347
|
}
|
|
3363
3348
|
.iui-expandable-block.iui-borderless .iui-header{
|
|
3364
|
-
border-radius:
|
|
3349
|
+
border-radius:4px;
|
|
3365
3350
|
}
|
|
3366
3351
|
.iui-expandable-block.iui-borderless .iui-header:hover{
|
|
3367
3352
|
background-color:rgba(0, 0, 0, 0.1);
|
|
@@ -3377,7 +3362,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3377
3362
|
border:none;
|
|
3378
3363
|
vertical-align:baseline;
|
|
3379
3364
|
padding:11px 12px;
|
|
3380
|
-
border-radius:
|
|
3365
|
+
border-radius:4px;
|
|
3381
3366
|
border:1px solid #c7ccd1;
|
|
3382
3367
|
background-color:white;
|
|
3383
3368
|
border:1px solid var(--iui-color-background-border);
|
|
@@ -3386,7 +3371,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3386
3371
|
.iui-fieldset legend{
|
|
3387
3372
|
font-size:16px;
|
|
3388
3373
|
padding:1.5px 8px;
|
|
3389
|
-
border-radius:
|
|
3374
|
+
border-radius:4px;
|
|
3390
3375
|
-webkit-user-select:none;
|
|
3391
3376
|
-moz-user-select:none;
|
|
3392
3377
|
-ms-user-select:none;
|
|
@@ -3549,7 +3534,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3549
3534
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
3550
3535
|
color:var(--iui-color-foreground-primary);
|
|
3551
3536
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
3552
|
-
border-radius:
|
|
3537
|
+
border-radius:4px;
|
|
3553
3538
|
box-sizing:border-box;
|
|
3554
3539
|
cursor:pointer;
|
|
3555
3540
|
text-decoration:none;
|
|
@@ -3643,7 +3628,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3643
3628
|
.iui-page-header .iui-header-button-icon{
|
|
3644
3629
|
width:24px;
|
|
3645
3630
|
height:24px;
|
|
3646
|
-
border-radius:
|
|
3631
|
+
border-radius:4px;
|
|
3647
3632
|
}
|
|
3648
3633
|
@media (prefers-reduced-motion: no-preference){
|
|
3649
3634
|
.iui-page-header .iui-header-button-icon{
|
|
@@ -3700,7 +3685,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3700
3685
|
padding:4px;
|
|
3701
3686
|
width:16px;
|
|
3702
3687
|
height:16px;
|
|
3703
|
-
border-radius:
|
|
3688
|
+
border-radius:4px;
|
|
3704
3689
|
background-color:#edeff2;
|
|
3705
3690
|
fill:rgba(0, 0, 0, 0.4);
|
|
3706
3691
|
background-color:var(--iui-color-background-3);
|
|
@@ -3833,7 +3818,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
3833
3818
|
padding:4px;
|
|
3834
3819
|
width:16px;
|
|
3835
3820
|
height:16px;
|
|
3836
|
-
border-radius:
|
|
3821
|
+
border-radius:4px;
|
|
3837
3822
|
background-color:#edeff2;
|
|
3838
3823
|
fill:rgba(0, 0, 0, 0.4);
|
|
3839
3824
|
background-color:var(--iui-color-background-3);
|
|
@@ -4923,7 +4908,7 @@ label.iui-input-label.iui-disabled{
|
|
|
4923
4908
|
font-size:14px;
|
|
4924
4909
|
font-weight:400;
|
|
4925
4910
|
line-height:22px;
|
|
4926
|
-
border-radius:
|
|
4911
|
+
border-radius:4px;
|
|
4927
4912
|
-webkit-appearance:none;
|
|
4928
4913
|
-moz-appearance:none;
|
|
4929
4914
|
appearance:none;
|
|
@@ -5020,7 +5005,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5020
5005
|
.iui-select-button{
|
|
5021
5006
|
width:100%;
|
|
5022
5007
|
margin:0;
|
|
5023
|
-
border-radius:
|
|
5008
|
+
border-radius:4px;
|
|
5024
5009
|
box-sizing:border-box;
|
|
5025
5010
|
padding:7px 12px;
|
|
5026
5011
|
min-height:38px;
|
|
@@ -5090,6 +5075,202 @@ label.iui-input-label.iui-disabled{
|
|
|
5090
5075
|
color:var(--iui-text-color-placeholder);
|
|
5091
5076
|
}
|
|
5092
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
|
+
|
|
5093
5274
|
.iui-textarea{
|
|
5094
5275
|
margin:0;
|
|
5095
5276
|
padding:0;
|
|
@@ -5100,7 +5281,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5100
5281
|
font-size:14px;
|
|
5101
5282
|
font-weight:400;
|
|
5102
5283
|
line-height:22px;
|
|
5103
|
-
border-radius:
|
|
5284
|
+
border-radius:4px;
|
|
5104
5285
|
-webkit-appearance:none;
|
|
5105
5286
|
-moz-appearance:none;
|
|
5106
5287
|
appearance:none;
|
|
@@ -5292,7 +5473,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5292
5473
|
width:16px;
|
|
5293
5474
|
height:16px;
|
|
5294
5475
|
position:relative;
|
|
5295
|
-
border-radius:
|
|
5476
|
+
border-radius:4px;
|
|
5296
5477
|
background-color:var(--_iui-checkbox-background-color);
|
|
5297
5478
|
flex-shrink:0;
|
|
5298
5479
|
cursor:pointer;
|
|
@@ -5450,7 +5631,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5450
5631
|
width:16px;
|
|
5451
5632
|
height:16px;
|
|
5452
5633
|
position:relative;
|
|
5453
|
-
border-radius:
|
|
5634
|
+
border-radius:4px;
|
|
5454
5635
|
background-color:var(--_iui-checkbox-background-color);
|
|
5455
5636
|
flex-shrink:0;
|
|
5456
5637
|
cursor:pointer;
|
|
@@ -5605,7 +5786,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5605
5786
|
padding:0;
|
|
5606
5787
|
border:none;
|
|
5607
5788
|
vertical-align:baseline;
|
|
5608
|
-
border-radius:
|
|
5789
|
+
border-radius:4px;
|
|
5609
5790
|
display:inline-block;
|
|
5610
5791
|
font-size:12px;
|
|
5611
5792
|
font-weight:600;
|
|
@@ -5674,7 +5855,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5674
5855
|
}
|
|
5675
5856
|
.iui-location-marker-data-rich > .iui-location-marker-data-rich-body{
|
|
5676
5857
|
min-width:32px;
|
|
5677
|
-
border-radius:
|
|
5858
|
+
border-radius:4px;
|
|
5678
5859
|
text-align:center;
|
|
5679
5860
|
font-size:16px;
|
|
5680
5861
|
padding:3px 8px;
|
|
@@ -5782,7 +5963,7 @@ label.iui-input-label.iui-disabled{
|
|
|
5782
5963
|
margin:0;
|
|
5783
5964
|
width:24px;
|
|
5784
5965
|
height:24px;
|
|
5785
|
-
border-radius:
|
|
5966
|
+
border-radius:4px;
|
|
5786
5967
|
}
|
|
5787
5968
|
.iui-menu.iui-scroll{
|
|
5788
5969
|
overflow-y:auto;
|
|
@@ -6680,10 +6861,10 @@ label.iui-input-label.iui-disabled{
|
|
|
6680
6861
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
6681
6862
|
}
|
|
6682
6863
|
.iui-radio-tile:first-of-type > .iui-radio-tile-content{
|
|
6683
|
-
border-radius:
|
|
6864
|
+
border-radius:4px 0 0 4px;
|
|
6684
6865
|
}
|
|
6685
6866
|
.iui-radio-tile:last-of-type > .iui-radio-tile-content{
|
|
6686
|
-
border-radius:0
|
|
6867
|
+
border-radius:0 4px 4px 0;
|
|
6687
6868
|
}
|
|
6688
6869
|
.iui-radio-tile:not(:first-of-type) > .iui-radio-tile-content{
|
|
6689
6870
|
margin-left:-1px;
|
|
@@ -7975,7 +8156,7 @@ label.iui-input-label.iui-disabled{
|
|
|
7975
8156
|
justify-content:center;
|
|
7976
8157
|
position:relative;
|
|
7977
8158
|
box-sizing:border-box;
|
|
7978
|
-
border-radius:
|
|
8159
|
+
border-radius:4px;
|
|
7979
8160
|
line-height:22px;
|
|
7980
8161
|
box-shadow:none;
|
|
7981
8162
|
font-size:14px;
|
|
@@ -8132,9 +8313,6 @@ label.iui-input-label.iui-disabled{
|
|
|
8132
8313
|
.iui-tabs-wrapper.iui-horizontal .iui-tab.iui-active::after{
|
|
8133
8314
|
height:2px;
|
|
8134
8315
|
}
|
|
8135
|
-
.iui-tabs-wrapper.iui-vertical .iui-tabs{
|
|
8136
|
-
flex-direction:column;
|
|
8137
|
-
}
|
|
8138
8316
|
.iui-tabs-wrapper.iui-vertical .iui-tabs li,
|
|
8139
8317
|
.iui-tabs-wrapper.iui-vertical .iui-tabs .iui-tab{
|
|
8140
8318
|
width:100%;
|
|
@@ -8157,7 +8335,6 @@ label.iui-input-label.iui-disabled{
|
|
|
8157
8335
|
border:none;
|
|
8158
8336
|
vertical-align:baseline;
|
|
8159
8337
|
position:relative;
|
|
8160
|
-
align-items:center;
|
|
8161
8338
|
list-style:none;
|
|
8162
8339
|
-webkit-user-select:none;
|
|
8163
8340
|
-moz-user-select:none;
|
|
@@ -8174,15 +8351,13 @@ label.iui-input-label.iui-disabled{
|
|
|
8174
8351
|
display:flex;
|
|
8175
8352
|
align-items:center;
|
|
8176
8353
|
font-size:14px;
|
|
8354
|
+
min-height:38px;
|
|
8355
|
+
height:100%;
|
|
8177
8356
|
cursor:pointer;
|
|
8357
|
+
transition:background-color 0.2s ease-out;
|
|
8178
8358
|
color:rgba(0, 0, 0, 0.8);
|
|
8179
8359
|
color:var(--iui-text-color);
|
|
8180
8360
|
}
|
|
8181
|
-
@media (prefers-reduced-motion: no-preference){
|
|
8182
|
-
.iui-tabs .iui-tab{
|
|
8183
|
-
transition:background-color 0.2s ease-out;
|
|
8184
|
-
}
|
|
8185
|
-
}
|
|
8186
8361
|
.iui-tabs .iui-tab.iui-active{
|
|
8187
8362
|
color:#008ae0;
|
|
8188
8363
|
color:var(--iui-color-foreground-primary);
|
|
@@ -8217,20 +8392,14 @@ label.iui-input-label.iui-disabled{
|
|
|
8217
8392
|
.iui-tabs .iui-tab-icon{
|
|
8218
8393
|
width:16px;
|
|
8219
8394
|
height:16px;
|
|
8395
|
+
flex-shrink:0;
|
|
8396
|
+
transition:fill 0.2s ease-out;
|
|
8220
8397
|
fill:rgba(0, 0, 0, 0.8);
|
|
8221
8398
|
fill:var(--iui-icons-color-actionable);
|
|
8222
8399
|
}
|
|
8223
|
-
@media (prefers-reduced-motion: no-preference){
|
|
8224
|
-
.iui-tabs .iui-tab-icon{
|
|
8225
|
-
transition:fill 0.2s ease-out;
|
|
8226
|
-
}
|
|
8227
|
-
}
|
|
8228
8400
|
.iui-tabs .iui-tab-icon + .iui-tab-label{
|
|
8229
8401
|
margin-left:8px;
|
|
8230
8402
|
}
|
|
8231
|
-
.iui-tabs .iui-tab-label{
|
|
8232
|
-
text-align:left;
|
|
8233
|
-
}
|
|
8234
8403
|
.iui-tabs .iui-tab-description{
|
|
8235
8404
|
display:none;
|
|
8236
8405
|
font-size:12px;
|
|
@@ -8269,8 +8438,7 @@ label.iui-input-label.iui-disabled{
|
|
|
8269
8438
|
background-color:var(--iui-color-foreground-positive);
|
|
8270
8439
|
}
|
|
8271
8440
|
.iui-tabs.iui-default .iui-tab{
|
|
8272
|
-
|
|
8273
|
-
padding:0 16px;
|
|
8441
|
+
padding:4px 16px;
|
|
8274
8442
|
box-sizing:border-box;
|
|
8275
8443
|
background-color:#f9f9fb;
|
|
8276
8444
|
border:1px solid #c7ccd1;
|
|
@@ -8318,10 +8486,10 @@ label.iui-input-label.iui-disabled{
|
|
|
8318
8486
|
}
|
|
8319
8487
|
|
|
8320
8488
|
.iui-tabs.iui-default.iui-large .iui-tab{
|
|
8321
|
-
height:49px;
|
|
8489
|
+
min-height:49px;
|
|
8322
8490
|
}
|
|
8323
8491
|
.iui-tabs.iui-default.iui-large .iui-tab-description{
|
|
8324
|
-
display
|
|
8492
|
+
display:-webkit-box;
|
|
8325
8493
|
}
|
|
8326
8494
|
.iui-tabs.iui-default.iui-green .iui-tab::after{
|
|
8327
8495
|
background-color:#53a21a;
|
|
@@ -8336,8 +8504,7 @@ label.iui-input-label.iui-disabled{
|
|
|
8336
8504
|
border:1px solid var(--iui-color-background-5);
|
|
8337
8505
|
}
|
|
8338
8506
|
.iui-tabs.iui-borderless .iui-tab{
|
|
8339
|
-
|
|
8340
|
-
padding:0 24px;
|
|
8507
|
+
padding:4px 24px;
|
|
8341
8508
|
background-color:transparent;
|
|
8342
8509
|
}
|
|
8343
8510
|
.iui-tabs.iui-borderless .iui-tab::after{
|
|
@@ -8371,10 +8538,10 @@ label.iui-input-label.iui-disabled{
|
|
|
8371
8538
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6));
|
|
8372
8539
|
}
|
|
8373
8540
|
.iui-tabs.iui-borderless.iui-large .iui-tab{
|
|
8374
|
-
height:49px;
|
|
8541
|
+
min-height:49px;
|
|
8375
8542
|
}
|
|
8376
8543
|
.iui-tabs.iui-borderless.iui-large .iui-tab-description{
|
|
8377
|
-
display
|
|
8544
|
+
display:-webkit-box;
|
|
8378
8545
|
}
|
|
8379
8546
|
.iui-tabs.iui-borderless .iui-tab[disabled]:hover{
|
|
8380
8547
|
background-color:transparent;
|
|
@@ -8394,11 +8561,11 @@ label.iui-input-label.iui-disabled{
|
|
|
8394
8561
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6));
|
|
8395
8562
|
}
|
|
8396
8563
|
.iui-tabs.iui-pill .iui-tab{
|
|
8397
|
-
|
|
8564
|
+
padding:4px;
|
|
8398
8565
|
background-color:transparent;
|
|
8399
8566
|
width:100%;
|
|
8400
8567
|
justify-content:center;
|
|
8401
|
-
border-radius:
|
|
8568
|
+
border-radius:4px;
|
|
8402
8569
|
}
|
|
8403
8570
|
.iui-tabs.iui-pill .iui-tab::after{
|
|
8404
8571
|
bottom:0;
|
|
@@ -8462,18 +8629,33 @@ label.iui-input-label.iui-disabled{
|
|
|
8462
8629
|
background-color:var(--iui-color-foreground-positive);
|
|
8463
8630
|
}
|
|
8464
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
|
+
|
|
8465
8650
|
.iui-tag{
|
|
8466
|
-
margin:0;
|
|
8467
|
-
padding:0;
|
|
8468
|
-
border:none;
|
|
8469
|
-
vertical-align:baseline;
|
|
8470
8651
|
-webkit-user-select:all;
|
|
8471
8652
|
-moz-user-select:all;
|
|
8472
8653
|
user-select:all;
|
|
8473
8654
|
text-transform:lowercase;
|
|
8474
8655
|
display:inline-flex;
|
|
8475
8656
|
height:33px;
|
|
8476
|
-
margin:3px
|
|
8657
|
+
margin-top:3px;
|
|
8658
|
+
margin-bottom:3px;
|
|
8477
8659
|
border-radius:9999px;
|
|
8478
8660
|
box-sizing:border-box;
|
|
8479
8661
|
padding:0 2px;
|
|
@@ -8496,10 +8678,6 @@ label.iui-input-label.iui-disabled{
|
|
|
8496
8678
|
}
|
|
8497
8679
|
|
|
8498
8680
|
.iui-tag-basic{
|
|
8499
|
-
margin:0;
|
|
8500
|
-
padding:0;
|
|
8501
|
-
border:none;
|
|
8502
|
-
vertical-align:baseline;
|
|
8503
8681
|
-webkit-user-select:all;
|
|
8504
8682
|
-moz-user-select:all;
|
|
8505
8683
|
user-select:all;
|
|
@@ -8537,7 +8715,7 @@ a.iui-tag-basic{
|
|
|
8537
8715
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
8538
8716
|
color:var(--iui-color-foreground-primary);
|
|
8539
8717
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
8540
|
-
border-radius:
|
|
8718
|
+
border-radius:4px;
|
|
8541
8719
|
box-sizing:border-box;
|
|
8542
8720
|
cursor:pointer;
|
|
8543
8721
|
text-decoration:none;
|
|
@@ -8623,7 +8801,7 @@ a.iui-tag-basic:focus-visible{
|
|
|
8623
8801
|
overflow-x:scroll;
|
|
8624
8802
|
}
|
|
8625
8803
|
.iui-tag-container.iui-visible{
|
|
8626
|
-
border-radius:
|
|
8804
|
+
border-radius:4px;
|
|
8627
8805
|
padding:3px 12px;
|
|
8628
8806
|
background-color:#edeff2;
|
|
8629
8807
|
background-color:var(--iui-color-background-3);
|
|
@@ -8701,7 +8879,7 @@ a.iui-tag-basic:focus-visible{
|
|
|
8701
8879
|
-ms-user-select:none;
|
|
8702
8880
|
user-select:none;
|
|
8703
8881
|
color:transparent;
|
|
8704
|
-
border-radius:
|
|
8882
|
+
border-radius:4px;
|
|
8705
8883
|
cursor:progress;
|
|
8706
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));
|
|
8707
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));
|
|
@@ -9280,7 +9458,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9280
9458
|
}
|
|
9281
9459
|
.iui-time > ol > li{
|
|
9282
9460
|
padding:6px 16px;
|
|
9283
|
-
border-radius:
|
|
9461
|
+
border-radius:4px;
|
|
9284
9462
|
}
|
|
9285
9463
|
.iui-time > ol > li:focus-visible{
|
|
9286
9464
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -9339,7 +9517,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9339
9517
|
}
|
|
9340
9518
|
.iui-period > ol > li{
|
|
9341
9519
|
padding:6px 16px;
|
|
9342
|
-
border-radius:
|
|
9520
|
+
border-radius:4px;
|
|
9343
9521
|
}
|
|
9344
9522
|
.iui-period > ol > li:focus-visible{
|
|
9345
9523
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -9459,7 +9637,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9459
9637
|
pointer-events:all;
|
|
9460
9638
|
margin:0 16px 11px 16px;
|
|
9461
9639
|
min-height:44px;
|
|
9462
|
-
border-radius:
|
|
9640
|
+
border-radius:4px;
|
|
9463
9641
|
background-color:white;
|
|
9464
9642
|
border:1px solid black;
|
|
9465
9643
|
box-shadow:0 0 0 1px rgba(255, 255, 255, 0.4), 0 9px 46px rgba(0, 0, 0, 0.25);
|
|
@@ -9499,7 +9677,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9499
9677
|
}
|
|
9500
9678
|
.iui-toast-anchor{
|
|
9501
9679
|
text-decoration:underline;
|
|
9502
|
-
border-radius:
|
|
9680
|
+
border-radius:4px;
|
|
9503
9681
|
cursor:pointer;
|
|
9504
9682
|
font-size:12px;
|
|
9505
9683
|
margin-right:16px;
|
|
@@ -9969,7 +10147,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
9969
10147
|
vertical-align:baseline;
|
|
9970
10148
|
display:block;
|
|
9971
10149
|
text-align:center;
|
|
9972
|
-
border-radius:
|
|
10150
|
+
border-radius:4px;
|
|
9973
10151
|
font-size:12px;
|
|
9974
10152
|
overflow:hidden;
|
|
9975
10153
|
max-width:400px;
|