@itwin/itwinui-css 0.63.2-dev.1 → 0.63.3
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 +4 -0
- package/css/alert.css +1 -1
- package/css/all.css +46 -45
- package/css/anchor.css +1 -1
- package/css/backdrop.css +1 -1
- package/css/badge.css +1 -1
- package/css/blockquote.css +1 -1
- package/css/breadcrumbs.css +1 -1
- package/css/button.css +1 -1
- package/css/carousel.css +1 -1
- package/css/code.css +1 -1
- package/css/color-picker.css +1 -1
- package/css/date-picker.css +1 -1
- package/css/dialog.css +1 -1
- package/css/expandable-block.css +1 -1
- package/css/fieldset.css +1 -1
- package/css/file-upload.css +1 -1
- package/css/footer.css +1 -1
- package/css/global.css +2 -1
- package/css/header.css +1 -1
- package/css/icon.css +1 -1
- package/css/information-panel.css +1 -1
- package/css/inputs.css +1 -1
- package/css/keyboard.css +1 -1
- package/css/location-marker.css +1 -1
- package/css/menu.css +1 -1
- package/css/non-ideal-state.css +1 -1
- package/css/notification-marker.css +1 -1
- package/css/popover.css +1 -1
- package/css/progress-indicator.css +1 -1
- package/css/radio-tile.css +1 -1
- package/css/reset-global-styles.css +1 -1
- package/css/side-navigation.css +1 -1
- package/css/skip-to-content.css +1 -1
- package/css/slider.css +1 -1
- package/css/surface.css +1 -1
- package/css/table.css +1 -1
- package/css/tabs.css +1 -1
- package/css/tag.css +1 -1
- package/css/text.css +1 -1
- package/css/tile.css +1 -1
- package/css/time-picker.css +1 -1
- package/css/toast-notification.css +1 -1
- package/css/toggle-switch.css +1 -1
- package/css/tooltip.css +1 -1
- package/css/tree.css +1 -1
- package/css/user-icon.css +1 -1
- package/css/wizard.css +1 -1
- package/package.json +1 -1
- package/scss/alert/classes.scss +1 -1
- package/scss/anchor/classes.scss +1 -1
- package/scss/backdrop/classes.scss +1 -1
- package/scss/badge/classes.scss +1 -1
- package/scss/blockquote/classes.scss +1 -1
- package/scss/breadcrumbs/classes.scss +1 -1
- package/scss/button/classes.scss +1 -1
- package/scss/carousel/classes.scss +1 -1
- package/scss/code/classes.scss +1 -1
- package/scss/color-picker/classes.scss +1 -1
- package/scss/date-picker/classes.scss +1 -1
- package/scss/dialog/classes.scss +1 -1
- package/scss/expandable-block/classes.scss +1 -1
- package/scss/fieldset/classes.scss +1 -1
- package/scss/file-upload/classes.scss +1 -1
- package/scss/footer/classes.scss +1 -1
- package/scss/header/classes.scss +1 -1
- package/scss/icon/classes.scss +1 -1
- package/scss/information-panel/classes.scss +1 -1
- package/scss/inputs/classes.scss +1 -1
- package/scss/keyboard/classes.scss +1 -1
- package/scss/location-marker/classes.scss +1 -1
- package/scss/menu/classes.scss +1 -1
- package/scss/non-ideal-state/classes.scss +1 -1
- package/scss/notification-marker/classes.scss +1 -1
- package/scss/popover/classes.scss +1 -1
- package/scss/progress-indicator/classes.scss +1 -1
- package/scss/radio-tile/classes.scss +1 -1
- package/scss/reset-global-styles.scss +1 -1
- package/scss/side-navigation/classes.scss +1 -1
- package/scss/skip-to-content/classes.scss +1 -1
- package/scss/slider/classes.scss +1 -1
- package/scss/style/global.scss +3 -1
- package/scss/surface/classes.scss +1 -1
- package/scss/table/classes.scss +1 -1
- package/scss/tabs/classes.scss +1 -1
- package/scss/tag/classes.scss +1 -1
- package/scss/text/classes.scss +1 -1
- package/scss/tile/classes.scss +1 -1
- package/scss/time-picker/classes.scss +1 -1
- package/scss/toast-notification/classes.scss +1 -1
- package/scss/toggle-switch/classes.scss +1 -1
- package/scss/tooltip/classes.scss +1 -1
- package/scss/tree/classes.scss +1 -1
- package/scss/user-icon/classes.scss +1 -1
- package/scss/wizard/classes.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.63.3
|
|
4
|
+
|
|
5
|
+
- `@layer itwinui-v1` has been renamed to `@layer itwinui.v1`. This allows applications to use the `itwinui` layer name to orchestrate overall layer order.
|
|
6
|
+
|
|
3
7
|
### 0.63.2
|
|
4
8
|
|
|
5
9
|
- All styles are now wrapped in `@layer`. This makes it possible to easily override and prevent conflicts with the next major version. ([#1037](https://www.github.com/iTwin/iTwinUI/pull/1037))
|
package/css/alert.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-alert{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/all.css
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
5
|
@charset "UTF-8";
|
|
6
|
-
@layer itwinui-v1
|
|
6
|
+
@layer itwinui-v1, itwinui.v1, itwinui.v2, itwinui.v3;
|
|
7
|
+
@layer itwinui.v1{
|
|
7
8
|
html{
|
|
8
9
|
--iui-color-background-1-rgb:255, 255, 255;
|
|
9
10
|
--iui-color-background-1:rgb(var(--iui-color-background-1-rgb));
|
|
@@ -686,7 +687,7 @@
|
|
|
686
687
|
background-color:transparent;
|
|
687
688
|
}
|
|
688
689
|
}
|
|
689
|
-
@layer itwinui
|
|
690
|
+
@layer itwinui.v1{
|
|
690
691
|
.iui-alert{
|
|
691
692
|
margin:0;
|
|
692
693
|
padding:0;
|
|
@@ -957,7 +958,7 @@
|
|
|
957
958
|
outline-color:var(--iui-color-foreground-primary);
|
|
958
959
|
}
|
|
959
960
|
}
|
|
960
|
-
@layer itwinui
|
|
961
|
+
@layer itwinui.v1{
|
|
961
962
|
.iui-anchor{
|
|
962
963
|
color:#008ae0;
|
|
963
964
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
@@ -1027,7 +1028,7 @@
|
|
|
1027
1028
|
}
|
|
1028
1029
|
}
|
|
1029
1030
|
}
|
|
1030
|
-
@layer itwinui
|
|
1031
|
+
@layer itwinui.v1{
|
|
1031
1032
|
.iui-badge{
|
|
1032
1033
|
--iui-badge-background-color:#c7ccd1;
|
|
1033
1034
|
--_iui-badge-text-color:rgba(0, 0, 0, 0.6);
|
|
@@ -1054,7 +1055,7 @@
|
|
|
1054
1055
|
font-weight:600;
|
|
1055
1056
|
}
|
|
1056
1057
|
}
|
|
1057
|
-
@layer itwinui
|
|
1058
|
+
@layer itwinui.v1{
|
|
1058
1059
|
.iui-backdrop{
|
|
1059
1060
|
z-index:998;
|
|
1060
1061
|
isolation:isolate;
|
|
@@ -1076,7 +1077,7 @@
|
|
|
1076
1077
|
transition-delay:0s;
|
|
1077
1078
|
}
|
|
1078
1079
|
}
|
|
1079
|
-
@layer itwinui
|
|
1080
|
+
@layer itwinui.v1{
|
|
1080
1081
|
.iui-blockquote{
|
|
1081
1082
|
margin:0;
|
|
1082
1083
|
padding:0;
|
|
@@ -1103,7 +1104,7 @@
|
|
|
1103
1104
|
font-style:normal;
|
|
1104
1105
|
}
|
|
1105
1106
|
}
|
|
1106
|
-
@layer itwinui
|
|
1107
|
+
@layer itwinui.v1{
|
|
1107
1108
|
.iui-breadcrumbs{
|
|
1108
1109
|
margin:0;
|
|
1109
1110
|
padding:0;
|
|
@@ -1539,7 +1540,7 @@
|
|
|
1539
1540
|
}
|
|
1540
1541
|
}
|
|
1541
1542
|
}
|
|
1542
|
-
@layer itwinui
|
|
1543
|
+
@layer itwinui.v1{
|
|
1543
1544
|
.iui-button{
|
|
1544
1545
|
--_iui-button-active-stripe-inset:initial;
|
|
1545
1546
|
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
@@ -2029,7 +2030,7 @@
|
|
|
2029
2030
|
fill:currentColor;
|
|
2030
2031
|
}
|
|
2031
2032
|
}
|
|
2032
|
-
@layer itwinui
|
|
2033
|
+
@layer itwinui.v1{
|
|
2033
2034
|
.iui-carousel{
|
|
2034
2035
|
overflow:hidden;
|
|
2035
2036
|
border-radius:4px;
|
|
@@ -2159,7 +2160,7 @@
|
|
|
2159
2160
|
justify-content:flex-end;
|
|
2160
2161
|
}
|
|
2161
2162
|
}
|
|
2162
|
-
@layer itwinui
|
|
2163
|
+
@layer itwinui.v1{
|
|
2163
2164
|
.iui-code{
|
|
2164
2165
|
margin:0;
|
|
2165
2166
|
padding:0;
|
|
@@ -2251,7 +2252,7 @@
|
|
|
2251
2252
|
color:var(--iui-text-color-muted);
|
|
2252
2253
|
}
|
|
2253
2254
|
}
|
|
2254
|
-
@layer itwinui
|
|
2255
|
+
@layer itwinui.v1{
|
|
2255
2256
|
.iui-color-picker{
|
|
2256
2257
|
--iui-color-picker-selected-color:initial;
|
|
2257
2258
|
--iui-surface-background-color:var(--iui-color-background-1);
|
|
@@ -2497,7 +2498,7 @@
|
|
|
2497
2498
|
}
|
|
2498
2499
|
}
|
|
2499
2500
|
}
|
|
2500
|
-
@layer itwinui
|
|
2501
|
+
@layer itwinui.v1{
|
|
2501
2502
|
.iui-date-picker{
|
|
2502
2503
|
--iui-surface-background-color:var(--iui-color-background-1);
|
|
2503
2504
|
--iui-surface-border-radius:0;
|
|
@@ -2986,7 +2987,7 @@
|
|
|
2986
2987
|
border-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-4));
|
|
2987
2988
|
}
|
|
2988
2989
|
}
|
|
2989
|
-
@layer itwinui
|
|
2990
|
+
@layer itwinui.v1{
|
|
2990
2991
|
.iui-dialog-wrapper{
|
|
2991
2992
|
position:relative;
|
|
2992
2993
|
overflow:hidden;
|
|
@@ -3154,7 +3155,7 @@
|
|
|
3154
3155
|
opacity:1;
|
|
3155
3156
|
}
|
|
3156
3157
|
}
|
|
3157
|
-
@layer itwinui
|
|
3158
|
+
@layer itwinui.v1{
|
|
3158
3159
|
.iui-expandable-block{
|
|
3159
3160
|
margin:0;
|
|
3160
3161
|
padding:0;
|
|
@@ -3384,7 +3385,7 @@
|
|
|
3384
3385
|
padding:0;
|
|
3385
3386
|
}
|
|
3386
3387
|
}
|
|
3387
|
-
@layer itwinui
|
|
3388
|
+
@layer itwinui.v1{
|
|
3388
3389
|
.iui-fieldset{
|
|
3389
3390
|
margin:0;
|
|
3390
3391
|
padding:0;
|
|
@@ -3418,7 +3419,7 @@
|
|
|
3418
3419
|
color:var(--iui-text-color-muted);
|
|
3419
3420
|
}
|
|
3420
3421
|
}
|
|
3421
|
-
@layer itwinui
|
|
3422
|
+
@layer itwinui.v1{
|
|
3422
3423
|
.iui-file-upload{
|
|
3423
3424
|
margin:0;
|
|
3424
3425
|
padding:0;
|
|
@@ -3527,7 +3528,7 @@
|
|
|
3527
3528
|
fill:var(--iui-icons-color-primary);
|
|
3528
3529
|
}
|
|
3529
3530
|
}
|
|
3530
|
-
@layer itwinui
|
|
3531
|
+
@layer itwinui.v1{
|
|
3531
3532
|
.iui-legal-footer{
|
|
3532
3533
|
margin:0;
|
|
3533
3534
|
padding:0;
|
|
@@ -3628,7 +3629,7 @@
|
|
|
3628
3629
|
color:var(--iui-text-color-muted);
|
|
3629
3630
|
}
|
|
3630
3631
|
}
|
|
3631
|
-
@layer itwinui
|
|
3632
|
+
@layer itwinui.v1{
|
|
3632
3633
|
.iui-page-header{
|
|
3633
3634
|
margin:0;
|
|
3634
3635
|
padding:0;
|
|
@@ -4146,7 +4147,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
4146
4147
|
}
|
|
4147
4148
|
}
|
|
4148
4149
|
}
|
|
4149
|
-
@layer itwinui
|
|
4150
|
+
@layer itwinui.v1{
|
|
4150
4151
|
.iui-icons-default{
|
|
4151
4152
|
fill:rgba(0, 0, 0, 0.4);
|
|
4152
4153
|
fill:var(--iui-icons-color);
|
|
@@ -4321,7 +4322,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
4321
4322
|
fill:var(--iui-icons-color-negative);
|
|
4322
4323
|
}
|
|
4323
4324
|
}
|
|
4324
|
-
@layer itwinui
|
|
4325
|
+
@layer itwinui.v1{
|
|
4325
4326
|
.iui-information-panel-wrapper{
|
|
4326
4327
|
position:relative;
|
|
4327
4328
|
overflow:hidden;
|
|
@@ -4520,7 +4521,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
4520
4521
|
margin-right:6px;
|
|
4521
4522
|
}
|
|
4522
4523
|
}
|
|
4523
|
-
@layer itwinui
|
|
4524
|
+
@layer itwinui.v1{
|
|
4524
4525
|
.iui-input-container{
|
|
4525
4526
|
margin:0;
|
|
4526
4527
|
padding:0;
|
|
@@ -5857,7 +5858,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
5857
5858
|
--_iui-checkbox-mask-image:var(--_iui-checkbox-unchecked-svg);
|
|
5858
5859
|
}
|
|
5859
5860
|
}
|
|
5860
|
-
@layer itwinui
|
|
5861
|
+
@layer itwinui.v1{
|
|
5861
5862
|
.iui-keyboard{
|
|
5862
5863
|
margin:0;
|
|
5863
5864
|
padding:0;
|
|
@@ -5894,7 +5895,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
5894
5895
|
box-shadow:0 0 0 var(--iui-color-background-5), 0 0 0 0 rgba(255, 255, 255, var(--iui-opacity-5)) inset;
|
|
5895
5896
|
}
|
|
5896
5897
|
}
|
|
5897
|
-
@layer itwinui
|
|
5898
|
+
@layer itwinui.v1{
|
|
5898
5899
|
.iui-location-marker-default{
|
|
5899
5900
|
margin:0;
|
|
5900
5901
|
padding:0;
|
|
@@ -6007,7 +6008,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
6007
6008
|
background-color:var(--iui-color-background-primary);
|
|
6008
6009
|
}
|
|
6009
6010
|
}
|
|
6010
|
-
@layer itwinui
|
|
6011
|
+
@layer itwinui.v1{
|
|
6011
6012
|
.iui-menu{
|
|
6012
6013
|
--iui-surface-background-color:var(--iui-color-background-1);
|
|
6013
6014
|
--iui-surface-border-radius:0;
|
|
@@ -6182,7 +6183,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
6182
6183
|
background-color:var(--iui-color-background-border);
|
|
6183
6184
|
}
|
|
6184
6185
|
}
|
|
6185
|
-
@layer itwinui
|
|
6186
|
+
@layer itwinui.v1{
|
|
6186
6187
|
.iui-non-ideal-state{
|
|
6187
6188
|
margin:0;
|
|
6188
6189
|
padding:0;
|
|
@@ -6245,7 +6246,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
6245
6246
|
margin:0 4px;
|
|
6246
6247
|
}
|
|
6247
6248
|
}
|
|
6248
|
-
@layer itwinui
|
|
6249
|
+
@layer itwinui.v1{
|
|
6249
6250
|
.iui-notification-primary{
|
|
6250
6251
|
position:relative;
|
|
6251
6252
|
}
|
|
@@ -6536,7 +6537,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
6536
6537
|
}
|
|
6537
6538
|
}
|
|
6538
6539
|
}
|
|
6539
|
-
@layer itwinui
|
|
6540
|
+
@layer itwinui.v1{
|
|
6540
6541
|
.iui-popover.tippy-box{
|
|
6541
6542
|
all:revert;
|
|
6542
6543
|
}
|
|
@@ -6548,7 +6549,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
6548
6549
|
all:revert;
|
|
6549
6550
|
}
|
|
6550
6551
|
}
|
|
6551
|
-
@layer itwinui
|
|
6552
|
+
@layer itwinui.v1{
|
|
6552
6553
|
.iui-progress-indicator-linear{
|
|
6553
6554
|
margin:0;
|
|
6554
6555
|
padding:0;
|
|
@@ -6939,7 +6940,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
6939
6940
|
animation:closeAnimation 0.2s linear;
|
|
6940
6941
|
}
|
|
6941
6942
|
}
|
|
6942
|
-
@layer itwinui
|
|
6943
|
+
@layer itwinui.v1{
|
|
6943
6944
|
.iui-radio-tile{
|
|
6944
6945
|
cursor:pointer;
|
|
6945
6946
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.1);
|
|
@@ -7154,7 +7155,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
7154
7155
|
color:var(--iui-text-color-muted);
|
|
7155
7156
|
}
|
|
7156
7157
|
}
|
|
7157
|
-
@layer itwinui
|
|
7158
|
+
@layer itwinui.v1{
|
|
7158
7159
|
.iui-side-navigation{
|
|
7159
7160
|
display:inline-flex;
|
|
7160
7161
|
flex:0 0 auto;
|
|
@@ -7378,7 +7379,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
7378
7379
|
height:100%;
|
|
7379
7380
|
}
|
|
7380
7381
|
}
|
|
7381
|
-
@layer itwinui
|
|
7382
|
+
@layer itwinui.v1{
|
|
7382
7383
|
.iui-skip-to-content-link{
|
|
7383
7384
|
background-color:rgba(0, 0, 0, 0.8);
|
|
7384
7385
|
background-color:rgba(0, 0, 0, var(--iui-opacity-2));
|
|
@@ -7444,7 +7445,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
7444
7445
|
}
|
|
7445
7446
|
}
|
|
7446
7447
|
}
|
|
7447
|
-
@layer itwinui
|
|
7448
|
+
@layer itwinui.v1{
|
|
7448
7449
|
.iui-slider-horizontal{
|
|
7449
7450
|
min-height:22px;
|
|
7450
7451
|
}
|
|
@@ -7720,7 +7721,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
7720
7721
|
fill:var(--iui-icons-color-negative);
|
|
7721
7722
|
}
|
|
7722
7723
|
}
|
|
7723
|
-
@layer itwinui
|
|
7724
|
+
@layer itwinui.v1{
|
|
7724
7725
|
.iui-surface{
|
|
7725
7726
|
--iui-surface-background-color:var(--iui-color-background-1);
|
|
7726
7727
|
--iui-surface-border-radius:0;
|
|
@@ -7737,7 +7738,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
7737
7738
|
}
|
|
7738
7739
|
}
|
|
7739
7740
|
}
|
|
7740
|
-
@layer itwinui
|
|
7741
|
+
@layer itwinui.v1{
|
|
7741
7742
|
.iui-table{
|
|
7742
7743
|
margin:0;
|
|
7743
7744
|
padding:0;
|
|
@@ -8506,7 +8507,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
8506
8507
|
margin-right:8px;
|
|
8507
8508
|
}
|
|
8508
8509
|
}
|
|
8509
|
-
@layer itwinui
|
|
8510
|
+
@layer itwinui.v1{
|
|
8510
8511
|
.iui-tabs-wrapper{
|
|
8511
8512
|
display:flex;
|
|
8512
8513
|
position:relative;
|
|
@@ -8864,7 +8865,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
8864
8865
|
}
|
|
8865
8866
|
}
|
|
8866
8867
|
}
|
|
8867
|
-
@layer itwinui
|
|
8868
|
+
@layer itwinui.v1{
|
|
8868
8869
|
.iui-tag{
|
|
8869
8870
|
-webkit-user-select:all;
|
|
8870
8871
|
-moz-user-select:all;
|
|
@@ -9025,7 +9026,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
9025
9026
|
background-color:var(--iui-color-background-3);
|
|
9026
9027
|
}
|
|
9027
9028
|
}
|
|
9028
|
-
@layer itwinui
|
|
9029
|
+
@layer itwinui.v1{
|
|
9029
9030
|
.iui-text-headline{
|
|
9030
9031
|
margin:0;
|
|
9031
9032
|
padding:0;
|
|
@@ -9144,7 +9145,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
9144
9145
|
margin:0 0 22px;
|
|
9145
9146
|
}
|
|
9146
9147
|
}
|
|
9147
|
-
@layer itwinui
|
|
9148
|
+
@layer itwinui.v1{
|
|
9148
9149
|
.iui-tile{
|
|
9149
9150
|
margin:0;
|
|
9150
9151
|
padding:0;
|
|
@@ -9738,7 +9739,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
9738
9739
|
border-width:0;
|
|
9739
9740
|
}
|
|
9740
9741
|
}
|
|
9741
|
-
@layer itwinui
|
|
9742
|
+
@layer itwinui.v1{
|
|
9742
9743
|
.iui-time-picker{
|
|
9743
9744
|
margin:0;
|
|
9744
9745
|
padding:0;
|
|
@@ -9878,7 +9879,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
9878
9879
|
}
|
|
9879
9880
|
}
|
|
9880
9881
|
}
|
|
9881
|
-
@layer itwinui
|
|
9882
|
+
@layer itwinui.v1{
|
|
9882
9883
|
.iui-toast-wrapper{
|
|
9883
9884
|
pointer-events:none;
|
|
9884
9885
|
position:fixed;
|
|
@@ -10204,7 +10205,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
10204
10205
|
color:var(--iui-color-foreground-warning-overlay);
|
|
10205
10206
|
}
|
|
10206
10207
|
}
|
|
10207
|
-
@layer itwinui
|
|
10208
|
+
@layer itwinui.v1{
|
|
10208
10209
|
.iui-toggle-switch-wrapper{
|
|
10209
10210
|
margin:0;
|
|
10210
10211
|
padding:0;
|
|
@@ -10437,7 +10438,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
10437
10438
|
}
|
|
10438
10439
|
}
|
|
10439
10440
|
}
|
|
10440
|
-
@layer itwinui
|
|
10441
|
+
@layer itwinui.v1{
|
|
10441
10442
|
.iui-tooltip-container{
|
|
10442
10443
|
width:-webkit-fit-content;
|
|
10443
10444
|
width:-moz-fit-content;
|
|
@@ -10494,7 +10495,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
10494
10495
|
border:1px solid rgba(var(--iui-color-foreground-accessory-rgb), var(--iui-opacity-4));
|
|
10495
10496
|
}
|
|
10496
10497
|
}
|
|
10497
|
-
@layer itwinui
|
|
10498
|
+
@layer itwinui.v1{
|
|
10498
10499
|
.iui-tree{
|
|
10499
10500
|
margin:0;
|
|
10500
10501
|
padding:0;
|
|
@@ -10644,7 +10645,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
10644
10645
|
color:var(--iui-text-color-placeholder);
|
|
10645
10646
|
}
|
|
10646
10647
|
}
|
|
10647
|
-
@layer itwinui
|
|
10648
|
+
@layer itwinui.v1{
|
|
10648
10649
|
.iui-user-icon{
|
|
10649
10650
|
margin:0;
|
|
10650
10651
|
padding:0;
|
|
@@ -10888,7 +10889,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
10888
10889
|
margin-left:12px;
|
|
10889
10890
|
}
|
|
10890
10891
|
}
|
|
10891
|
-
@layer itwinui
|
|
10892
|
+
@layer itwinui.v1{
|
|
10892
10893
|
.iui-wizard{
|
|
10893
10894
|
margin:0;
|
|
10894
10895
|
padding:0;
|
package/css/anchor.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-anchor{
|
|
7
7
|
color:#008ae0;
|
|
8
8
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
package/css/backdrop.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-backdrop{
|
|
7
7
|
z-index:998;
|
|
8
8
|
isolation:isolate;
|
package/css/badge.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-badge{
|
|
7
7
|
--iui-badge-background-color:#c7ccd1;
|
|
8
8
|
--_iui-badge-text-color:rgba(0, 0, 0, 0.6);
|
package/css/blockquote.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-blockquote{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/breadcrumbs.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-breadcrumbs{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/button.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-button{
|
|
7
7
|
--_iui-button-active-stripe-inset:initial;
|
|
8
8
|
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
package/css/carousel.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-carousel{
|
|
7
7
|
overflow:hidden;
|
|
8
8
|
border-radius:4px;
|
package/css/code.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-code{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/color-picker.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-color-picker{
|
|
7
7
|
--iui-color-picker-selected-color:initial;
|
|
8
8
|
--iui-surface-background-color:var(--iui-color-background-1);
|
package/css/date-picker.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-date-picker{
|
|
7
7
|
--iui-surface-background-color:var(--iui-color-background-1);
|
|
8
8
|
--iui-surface-border-radius:0;
|
package/css/dialog.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-dialog-wrapper{
|
|
7
7
|
position:relative;
|
|
8
8
|
overflow:hidden;
|
package/css/expandable-block.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-expandable-block{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/fieldset.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-fieldset{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/file-upload.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-file-upload{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/footer.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-legal-footer{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/global.css
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui-v1
|
|
5
|
+
@layer itwinui-v1, itwinui.v1, itwinui.v2, itwinui.v3;
|
|
6
|
+
@layer itwinui.v1{
|
|
6
7
|
html{
|
|
7
8
|
--iui-color-background-1-rgb:255, 255, 255;
|
|
8
9
|
--iui-color-background-1:rgb(var(--iui-color-background-1-rgb));
|
package/css/header.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-page-header{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/icon.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-icons-default{
|
|
7
7
|
fill:rgba(0, 0, 0, 0.4);
|
|
8
8
|
fill:var(--iui-icons-color);
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-information-panel-wrapper{
|
|
7
7
|
position:relative;
|
|
8
8
|
overflow:hidden;
|
package/css/inputs.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-input-container{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/keyboard.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-keyboard{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/location-marker.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-location-marker-default{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
package/css/menu.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-menu{
|
|
7
7
|
--iui-surface-background-color:var(--iui-color-background-1);
|
|
8
8
|
--iui-surface-border-radius:0;
|
package/css/non-ideal-state.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-non-ideal-state{
|
|
7
7
|
margin:0;
|
|
8
8
|
padding:0;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-notification-primary{
|
|
7
7
|
position:relative;
|
|
8
8
|
}
|
package/css/popover.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@layer itwinui
|
|
5
|
+
@layer itwinui.v1{
|
|
6
6
|
.iui-popover.tippy-box{
|
|
7
7
|
all:revert;
|
|
8
8
|
}
|