@itwin/itwinui-css 0.54.0 → 0.56.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/css/tag.css CHANGED
@@ -12,31 +12,17 @@
12
12
  user-select:all;
13
13
  text-transform:lowercase;
14
14
  display:inline-flex;
15
- }
16
- .iui-tag:focus-visible{
17
- outline:2px solid var(--iui-color-foreground-primary);
18
- outline-offset:-2px;
19
- }
20
- @supports not selector(*:focus-visible){
21
- .iui-tag:focus{
22
- outline:2px solid var(--iui-color-foreground-primary);
23
- outline-offset:-2px;
24
- }
25
- }
26
- .iui-tag:not(a){
27
- color:rgba(0, 0, 0, 0.4);
28
- color:var(--iui-text-color-muted);
29
- }
30
- .iui-tag:not(.iui-basic){
31
15
  height:33px;
32
16
  margin:3px 0;
33
- border-radius:16.5px;
17
+ border-radius:9999px;
34
18
  box-sizing:border-box;
35
19
  padding:0 2px;
36
20
  align-items:center;
21
+ transition:border-color 0.2s ease-out;
37
22
  font-size:14px;
38
23
  text-transform:none;
39
24
  cursor:default;
25
+ -webkit-tap-highlight-color:transparent;
40
26
  border:1px solid rgba(0, 0, 0, 0.4);
41
27
  background-color:white;
42
28
  color:rgba(0, 0, 0, 0.8);
@@ -44,12 +30,28 @@
44
30
  background-color:var(--iui-color-background-1);
45
31
  color:var(--iui-text-color);
46
32
  }
47
- @media (prefers-reduced-motion: no-preference){
48
- .iui-tag:not(.iui-basic){
49
- transition:border 0.2s ease-out;
50
- }
33
+ .iui-tag:hover{
34
+ border-color:black;
35
+ border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
51
36
  }
52
- .iui-tag:not(.iui-basic) > .iui-label{
37
+
38
+ .iui-tag-basic{
39
+ margin:0;
40
+ padding:0;
41
+ border:none;
42
+ vertical-align:baseline;
43
+ -webkit-user-select:all;
44
+ -moz-user-select:all;
45
+ user-select:all;
46
+ text-transform:lowercase;
47
+ display:inline-flex;
48
+ }
49
+ .iui-tag-basic:not(a){
50
+ color:rgba(0, 0, 0, 0.4);
51
+ color:var(--iui-text-color-muted);
52
+ }
53
+
54
+ .iui-tag-label{
53
55
  margin:0;
54
56
  padding:0;
55
57
  border:none;
@@ -62,21 +64,15 @@
62
64
  overflow:hidden;
63
65
  margin:0 4px 0 8px;
64
66
  }
65
- .iui-tag:not(.iui-basic) > .iui-label:only-child{
67
+ .iui-tag-label:only-child{
66
68
  margin:0 8px;
67
69
  }
68
- .iui-tag:not(.iui-basic) > .iui-button{
70
+
71
+ .iui-tag-button{
69
72
  border-radius:50%;
70
73
  }
71
- .iui-tag:not(.iui-basic):hover{
72
- border-color:black;
73
- border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
74
- }
75
- .iui-tag.iui-basic{
76
- outline-offset:1px;
77
- }
78
74
 
79
- a.iui-tag{
75
+ a.iui-tag-basic{
80
76
  --_iui-anchor-external-svg:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
81
77
  color:#008ae0;
82
78
  -webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
@@ -86,21 +82,21 @@ a.iui-tag{
86
82
  cursor:pointer;
87
83
  text-decoration:none;
88
84
  }
89
- a.iui-tag:focus-visible{
85
+ a.iui-tag-basic:focus-visible{
90
86
  outline:1px solid var(--iui-color-foreground-primary);
91
87
  outline-offset:1px;
92
88
  }
93
89
  @supports not selector(*:focus-visible){
94
- a.iui-tag:focus{
90
+ a.iui-tag-basic:focus{
95
91
  outline:1px solid var(--iui-color-foreground-primary);
96
92
  outline-offset:1px;
97
93
  }
98
94
  }
99
- a.iui-tag:hover{
95
+ a.iui-tag-basic:hover{
100
96
  color:#006bad;
101
97
  color:var(--iui-color-foreground-primary-overlay);
102
98
  }
103
- a.iui-tag-external::after{
99
+ a.iui-tag-basic-external::after{
104
100
  content:"";
105
101
  display:inline-block;
106
102
  width:1.5ch;
@@ -112,46 +108,57 @@ a.iui-tag-external::after{
112
108
  mask:var(--_iui-anchor-external-svg);
113
109
  }
114
110
  @media (forced-colors: active){
115
- a.iui-tag-external::after{
111
+ a.iui-tag-basic-external::after{
116
112
  background-color:LinkText;
117
113
  }
118
114
  }
119
- a.iui-tag:hover{
115
+ a.iui-tag-basic:hover{
120
116
  text-decoration:underline;
121
117
  }
122
118
  @media (prefers-contrast: more){
123
- a.iui-tag{
119
+ a.iui-tag-basic{
124
120
  text-decoration:underline;
125
121
  }
126
- a.iui-tag:hover{
122
+ a.iui-tag-basic:hover{
127
123
  text-decoration:none;
128
124
  }
129
125
  }
130
- .iui-theme-light a.iui-tag, .iui-theme-dark a.iui-tag{
126
+ .iui-theme-light a.iui-tag-basic, .iui-theme-dark a.iui-tag-basic{
131
127
  text-decoration:none;
132
128
  }
133
- .iui-theme-light a.iui-tag:hover, .iui-theme-dark a.iui-tag:hover{
129
+ .iui-theme-light a.iui-tag-basic:hover, .iui-theme-dark a.iui-tag-basic:hover{
134
130
  text-decoration:underline;
135
131
  }
136
132
 
137
- .iui-theme-light-hc a.iui-tag, .iui-theme-dark-hc a.iui-tag{
133
+ .iui-theme-light-hc a.iui-tag-basic, .iui-theme-dark-hc a.iui-tag-basic{
138
134
  text-decoration:underline;
139
135
  }
140
- .iui-theme-light-hc a.iui-tag:hover, .iui-theme-dark-hc a.iui-tag:hover{
136
+ .iui-theme-light-hc a.iui-tag-basic:hover, .iui-theme-dark-hc a.iui-tag-basic:hover{
141
137
  text-decoration:none;
142
138
  }
143
139
 
140
+ a.iui-tag-basic:focus-visible{
141
+ outline:1px solid var(--iui-color-foreground-primary);
142
+ outline-offset:1px;
143
+ }
144
+ @supports not selector(*:focus-visible){
145
+ a.iui-tag-basic:focus{
146
+ outline:1px solid var(--iui-color-foreground-primary);
147
+ outline-offset:1px;
148
+ }
149
+ }
150
+
144
151
  .iui-tag-container{
145
152
  color:rgba(0, 0, 0, 0.4);
146
153
  color:var(--iui-text-color-muted);
147
154
  }
148
- .iui-tag-container > a.iui-basic{
155
+ .iui-tag-container > a.iui-tag-basic{
149
156
  margin:2px;
150
157
  }
151
- .iui-tag-container > .iui-tag:not(:last-child){
158
+ .iui-tag-container > *:not(last-child){
152
159
  margin-right:4px;
153
160
  }
154
- .iui-tag-container > .iui-basic:not(:last-child)::after{
161
+ .iui-tag-container > .iui-tag-basic:not(:last-child)::after{
155
162
  content:",";
156
163
  }
157
164
  .iui-tag-container.iui-truncate{
@@ -174,6 +181,6 @@ a.iui-tag:hover{
174
181
  .iui-tag-container.iui-visible{
175
182
  border-radius:3px;
176
183
  padding:3px 12px;
177
- background-color:#f9f9fb;
178
- background-color:var(--iui-color-background-2);
184
+ background-color:#edeff2;
185
+ background-color:var(--iui-color-background-3);
179
186
  }
package/css/text.css CHANGED
@@ -75,11 +75,17 @@
75
75
  user-select:none;
76
76
  color:transparent;
77
77
  border-radius:3px;
78
- background:linear-gradient(270deg, #edeff2, #edeff2, #f9f9fb, #edeff2, #edeff2);
79
- background-size:200% 100%;
80
- background:linear-gradient(270deg, var(--iui-color-background-3), var(--iui-color-background-3), var(--iui-color-background-2), var(--iui-color-background-3), var(--iui-color-background-3));
78
+ cursor:progress;
79
+ 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));
80
+ 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));
81
81
  background-size:200% 100%;
82
82
  }
83
+ @media (forced-colors: active){
84
+ .iui-skeleton{
85
+ forced-color-adjust:none;
86
+ background:linear-gradient(292deg, CanvasText, CanvasText, Canvas, CanvasText, CanvasText);
87
+ }
88
+ }
83
89
  @media (prefers-reduced-motion: no-preference){
84
90
  .iui-skeleton{
85
91
  -webkit-animation:skeleton-shimmer 0.8s linear infinite;
package/css/tile.css CHANGED
@@ -7,25 +7,23 @@
7
7
  padding:0;
8
8
  border:none;
9
9
  vertical-align:baseline;
10
+ --iui-surface-background-color:var(--iui-color-background-1);
11
+ --iui-surface-border-radius:0;
12
+ --iui-surface-elevation:0 1px 5px rgba(0, 0, 0, 0.25);
13
+ background-color:var(--iui-surface-background-color);
14
+ border-radius:var(--iui-surface-border-radius);
15
+ box-shadow:var(--iui-surface-elevation);
16
+ box-sizing:border-box;
17
+ color:var(--iui-text-color);
10
18
  display:inline-flex;
11
19
  flex-direction:column;
12
20
  width:288px;
13
- box-shadow:0 1px 5px rgba(0, 0, 0, 0.25);
14
21
  -webkit-backface-visibility:hidden;
15
22
  backface-visibility:hidden;
16
- background-color:white;
17
- color:rgba(0, 0, 0, 0.8);
18
- background-color:var(--iui-color-background-1);
19
- color:var(--iui-text-color);
20
- }
21
- .iui-tile:focus-visible{
22
- outline:2px solid var(--iui-color-foreground-primary);
23
- outline-offset:2px;
24
23
  }
25
- @supports not selector(*:focus-visible){
26
- .iui-tile:focus{
27
- outline:2px solid var(--iui-color-foreground-primary);
28
- outline-offset:2px;
24
+ @media (forced-colors: active){
25
+ .iui-tile{
26
+ border:1px solid transparent;
29
27
  }
30
28
  }
31
29
  .iui-tile:hover .iui-tile-more-options, .iui-tile:focus-within .iui-tile-more-options{
@@ -43,9 +41,6 @@
43
41
  .iui-tile:hover .iui-tile-metadata:not(:last-child), .iui-tile:focus-within .iui-tile-metadata:not(:last-child){
44
42
  width:calc(100% - 32px);
45
43
  }
46
- .iui-tile:hover .iui-tile-thumbnail-picture, .iui-tile:focus-within .iui-tile-thumbnail-picture{
47
- transform:translateZ(0) scale(1.1);
48
- }
49
44
  .iui-tile.iui-new .iui-tile-name,
50
45
  .iui-tile.iui-new .iui-tile-description{
51
46
  font-weight:600;
@@ -66,7 +61,24 @@
66
61
  outline-offset:0;
67
62
  }
68
63
  }
69
- .iui-tile.iui-selected .iui-tile-thumbnail-picture{
64
+ .iui-tile.iui-actionable{
65
+ cursor:pointer;
66
+ transition:box-shadow 0.2s ease-in-out;
67
+ }
68
+ .iui-tile.iui-actionable:focus-visible{
69
+ outline:2px solid var(--iui-color-foreground-primary);
70
+ outline-offset:2px;
71
+ }
72
+ @supports not selector(*:focus-visible){
73
+ .iui-tile.iui-actionable:focus{
74
+ outline:2px solid var(--iui-color-foreground-primary);
75
+ outline-offset:2px;
76
+ }
77
+ }
78
+ .iui-tile.iui-actionable:hover{
79
+ box-shadow:0 3px 14px rgba(0, 0, 0, 0.25);
80
+ }
81
+ .iui-tile.iui-actionable:hover .iui-tile-thumbnail-picture, .iui-tile.iui-actionable:focus-within .iui-tile-thumbnail-picture, .iui-tile.iui-actionable.iui-selected .iui-tile-thumbnail-picture{
70
82
  transform:translateZ(0) scale(1.1);
71
83
  }
72
84
  .iui-tile.iui-folder{
@@ -9,7 +9,7 @@
9
9
  align-items:center;
10
10
  flex-direction:column;
11
11
  justify-content:center;
12
- z-index:1070;
12
+ z-index:99999;
13
13
  }
14
14
  @media screen and (max-width: 400px){
15
15
  .iui-toast-wrapper{
@@ -38,6 +38,11 @@
38
38
  color:rgba(0, 0, 0, 0.4);
39
39
  color:var(--iui-text-color-muted);
40
40
  }
41
+ @media (forced-colors: active){
42
+ .iui-toggle-switch-wrapper.iui-disabled{
43
+ color:GrayText;
44
+ }
45
+ }
41
46
  .iui-toggle-switch-wrapper.iui-label-on-left{
42
47
  grid-template-areas:"label toggle";
43
48
  }
@@ -119,13 +124,29 @@
119
124
  transition:transform 0.2s ease-out, background-color 0.2s ease-out, opacity 0.2s ease-out;
120
125
  }
121
126
  }
127
+ @media (forced-colors: active){
128
+ .iui-toggle-switch{
129
+ border-color:CanvasText;
130
+ }
131
+ }
122
132
  .iui-toggle-switch::after{
123
133
  background-color:var(--iui-color-foreground-body);
124
134
  opacity:var(--iui-opacity-2);
125
135
  }
136
+ @media (forced-colors: active){
137
+ .iui-toggle-switch::after{
138
+ background-color:CanvasText;
139
+ opacity:1;
140
+ }
141
+ }
126
142
  .iui-toggle-switch:hover{
127
143
  border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
128
144
  }
145
+ @media (forced-colors: active){
146
+ .iui-toggle-switch:hover{
147
+ border-color:CanvasText;
148
+ }
149
+ }
129
150
  .iui-toggle-switch:focus-visible{
130
151
  border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
131
152
  }
@@ -138,11 +159,23 @@
138
159
  background-color:var(--iui-color-background-primary);
139
160
  border-color:var(--iui-color-background-primary);
140
161
  }
162
+ @media (forced-colors: active){
163
+ .iui-toggle-switch:checked{
164
+ background-color:Highlight;
165
+ border-color:Highlight;
166
+ }
167
+ }
141
168
  .iui-toggle-switch:checked::after{
142
169
  transform:translateX(19px);
143
170
  background-color:var(--iui-color-foreground-accessory);
144
171
  opacity:var(--iui-opacity-2);
145
172
  }
173
+ @media (forced-colors: active){
174
+ .iui-toggle-switch:checked::after{
175
+ background-color:HighlightText;
176
+ opacity:1;
177
+ }
178
+ }
146
179
  .iui-toggle-switch:checked ~ .iui-toggle-switch-icon{
147
180
  opacity:var(--iui-opacity-1);
148
181
  }
@@ -162,17 +195,44 @@
162
195
  background-color:var(--iui-color-background-disabled);
163
196
  border-color:var(--iui-color-background-disabled);
164
197
  }
198
+ @media (forced-colors: active){
199
+ .iui-toggle-switch:disabled{
200
+ border-color:GrayText;
201
+ }
202
+ }
165
203
  .iui-toggle-switch:disabled::after{
166
204
  background-color:var(--iui-color-foreground-body);
167
205
  opacity:var(--iui-opacity-5);
168
206
  }
207
+ @media (forced-colors: active){
208
+ .iui-toggle-switch:disabled::after{
209
+ background-color:GrayText;
210
+ opacity:0.75;
211
+ }
212
+ }
169
213
  .iui-toggle-switch:disabled ~ .iui-toggle-switch-icon{
170
214
  opacity:0;
171
215
  fill:var(--iui-icons-color-actionable);
172
216
  }
217
+ @media (forced-colors: active){
218
+ .iui-toggle-switch:disabled:checked{
219
+ background-color:GrayText;
220
+ }
221
+ }
222
+ @media (forced-colors: active){
223
+ .iui-toggle-switch:disabled:checked::after{
224
+ background-color:Canvas;
225
+ }
226
+ }
173
227
  .iui-toggle-switch:disabled:checked ~ .iui-toggle-switch-icon{
174
228
  opacity:var(--iui-opacity-5);
175
229
  }
230
+ @media (forced-colors: active){
231
+ .iui-toggle-switch:disabled:checked ~ .iui-toggle-switch-icon{
232
+ fill:Canvas;
233
+ opacity:0.75;
234
+ }
235
+ }
176
236
  .iui-toggle-switch-icon{
177
237
  -ms-grid-row:1;
178
238
  -ms-grid-column:1;
@@ -195,4 +255,9 @@
195
255
  .iui-toggle-switch-wrapper.iui-label-on-right > .iui-toggle-switch-icon{
196
256
  -ms-grid-row:1;
197
257
  -ms-grid-column:1;
258
+ }
259
+ @media (forced-colors: active){
260
+ .iui-toggle-switch-icon{
261
+ fill:HighlightText;
262
+ }
198
263
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/itwinui-css",
3
- "version": "0.54.0",
3
+ "version": "0.56.0",
4
4
  "author": "Bentley Systems",
5
5
  "license": "MIT",
6
6
  "main": "src/index.scss",
@@ -55,7 +55,8 @@
55
55
  "test:ci": "backstop --config=./backstop/backstop.js test --docker",
56
56
  "clean:images": "node scripts/removeOldTestImages.js",
57
57
  "print": "node scripts/print.js",
58
- "audit:ci": "audit-ci --moderate --report-type=full"
58
+ "audit:ci": "audit-ci --moderate --report-type=full",
59
+ "build-docker": "node scripts/buildDocker.js"
59
60
  },
60
61
  "devDependencies": {
61
62
  "audit-ci": "^4.0.0",
@@ -85,6 +86,7 @@
85
86
  "jpeg-js": "^0.4.3",
86
87
  "set-value": "^4.1.0",
87
88
  "ansi-regex": "^5.0.1",
88
- "node-fetch": "^2.6.7"
89
+ "node-fetch": "^2.6.7",
90
+ "async": "^3.2.2"
89
91
  }
90
92
  }
@@ -1,79 +1,3 @@
1
1
  // Copyright (c) Bentley Systems, Incorporated. All rights reserved.
2
2
  // See LICENSE.md in the project root for license terms and full copyright notice.
3
- @import '../style/index';
4
-
5
- @mixin iui-anchor {
6
- --_iui-anchor-external-svg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
7
-
8
- @include iui-anchor-status('primary');
9
- border-radius: $iui-border-radius;
10
- cursor: pointer;
11
-
12
- &-external::after {
13
- content: '';
14
- display: inline-block;
15
- width: 1.5ch;
16
- height: 1.5ch;
17
- margin-left: 0.5ch;
18
- vertical-align: -0.1ch;
19
- background-color: currentColor;
20
- mask: var(--_iui-anchor-external-svg);
21
- @media (forced-colors: active) {
22
- background-color: LinkText;
23
- }
24
- }
25
-
26
- @include iui-anchor-underline('on-hover');
27
-
28
- @media (prefers-contrast: more) {
29
- @include iui-anchor-underline('on-initial');
30
- }
31
-
32
- @at-root {
33
- .iui-theme-light &,
34
- .iui-theme-dark & {
35
- @include iui-anchor-underline('on-hover');
36
- }
37
- }
38
-
39
- @at-root {
40
- .iui-theme-light-hc &,
41
- .iui-theme-dark-hc & {
42
- @include iui-anchor-underline('on-initial');
43
- }
44
- }
45
- }
46
-
47
- @mixin iui-anchor-status($status: primary) {
48
- @include iui-focus($color: var(--iui-color-foreground-#{$status}), $offset: 1px);
49
- @include themed {
50
- color: t(iui-color-foreground-#{$status});
51
- -webkit-tap-highlight-color: rgba(t(iui-color-foreground-#{$status}-rgb), t(iui-opacity-5));
52
- }
53
- @if $status != primary {
54
- @include iui-text-selection($status);
55
- }
56
-
57
- &:hover {
58
- @include themed {
59
- color: t(iui-color-foreground-#{$status}-overlay);
60
- }
61
- }
62
- }
63
-
64
- /// $behavior should be one of: 'on-hover' or 'on-initial'
65
- @mixin iui-anchor-underline($behavior: 'on-hover') {
66
- @if $behavior == 'on-hover' {
67
- text-decoration: none;
68
-
69
- &:hover {
70
- text-decoration: underline;
71
- }
72
- } @else {
73
- text-decoration: underline;
74
-
75
- &:hover {
76
- text-decoration: none;
77
- }
78
- }
79
- }
3
+ @import '../style/anchor'; // Reimports anchor from global styles
package/scss/classes.scss CHANGED
@@ -28,8 +28,11 @@
28
28
  @import './notification-marker/classes';
29
29
  @import './popover/classes';
30
30
  @import './progress-indicator/classes';
31
+ @import './radio-tile/classes';
31
32
  @import './side-navigation/classes';
33
+ @import './skip-to-content/classes';
32
34
  @import './slider/classes';
35
+ @import './surface/classes';
33
36
  @import './table/classes';
34
37
  @import './tabs/classes';
35
38
  @import './tag/classes';
@@ -42,5 +45,3 @@
42
45
  @import './tree/classes';
43
46
  @import './user-icon/classes';
44
47
  @import './wizard/classes';
45
- @import './skip-to-content/classes';
46
- @import './surface/classes';
@@ -161,6 +161,10 @@
161
161
  @include iui-header-button;
162
162
  }
163
163
 
164
+ .iui-header-dropdown-button.iui-header-dropdown-button {
165
+ @include iui-header-dropdown-button;
166
+ }
167
+
164
168
  .iui-header-split-button {
165
169
  @include iui-header-split-button;
166
170
  }
@@ -239,7 +243,6 @@
239
243
  height: 100%;
240
244
  border-radius: 0;
241
245
  overflow: hidden;
242
- padding-right: $iui-s;
243
246
 
244
247
  @include iui-header-button-focus;
245
248
 
@@ -313,6 +316,10 @@
313
316
  }
314
317
  }
315
318
 
319
+ @mixin iui-header-dropdown-button {
320
+ padding-right: $iui-s;
321
+ }
322
+
316
323
  @mixin iui-header-split-button {
317
324
  &,
318
325
  > * {
package/scss/index.scss CHANGED
@@ -26,8 +26,11 @@
26
26
  @import './notification-marker/index';
27
27
  @import './popover/index';
28
28
  @import './progress-indicator/index';
29
+ @import './radio-tile/index';
29
30
  @import './side-navigation/index';
31
+ @import './skip-to-content/index';
30
32
  @import './slider/index';
33
+ @import './surface/index';
31
34
  @import './table/index';
32
35
  @import './tabs/index';
33
36
  @import './tag/index';
@@ -40,5 +43,3 @@
40
43
  @import './tree/index';
41
44
  @import './user-icon/index';
42
45
  @import './wizard/index';
43
- @import './skip-to-content/index';
44
- @import './surface/index';
@@ -66,6 +66,13 @@
66
66
 
67
67
  @include iui-focus($thickness: 2px);
68
68
 
69
+ &:disabled {
70
+ --_iui-checkbox-svg-color: var(--iui-icons-color-actionable-disabled);
71
+ --_iui-checkbox-border-color: var(--iui-color-background-border);
72
+ --_iui-checkbox-background-color: var(--iui-color-background-disabled);
73
+ cursor: not-allowed;
74
+ }
75
+
69
76
  &.iui-checkbox-visibility {
70
77
  --_iui-checkbox-checkmark-svg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8 2.99051a8.81883 8.81883 0 0 0 -8 4.95062 8.74664 8.74664 0 0 0 8 5.06836 8.63266 8.63266 0 0 0 8-5.06836 8.83631 8.83631 0 0 0 -8-4.95062zm-1.31445 1.86981a1.47663 1.47663 0 1 1 -1.47663 1.47668 1.47665 1.47665 0 0 1 1.47663-1.47668zm1.31445 6.64917a7.17486 7.17486 0 0 1 -6.30475-3.55237 7.4952 7.4952 0 0 1 2.81475-2.6336 3.83956 3.83956 0 1 0 6.98126.00244 7.522 7.522 0 0 1 2.81774 2.63916 7.09785 7.09785 0 0 1 -6.309 3.54437z" /></svg>');
71
78
  --_iui-checkbox-indeterminate-svg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8 3v7.9a4.01179 4.01179 0 0 0 4-4 6.7509 6.7509 0 0 0 -.2-1.4l.1.1a6.89429 6.89429 0 0 1 2.4 2.4 8.39088 8.39088 0 0 1 -2.3 2.3 6.89412 6.89412 0 0 1 -3.9 1.2c-.03345 0-.06653-.00677-.1-.0072v1.5072a8.90686 8.90686 0 0 0 8-5 8.90686 8.90686 0 0 0 -8-5z" opacity=".33" /><path d="m8 0a1 1 0 0 0 -1 1v2.07135a8.91637 8.91637 0 0 0 -7 4.92865 8.91637 8.91637 0 0 0 7 4.92865v2.07135a1 1 0 0 0 2 0v-14a1 1 0 0 0 -1-1zm-1.5 4.9a1.55426 1.55426 0 0 1 .5.087v2.81451a1.40746 1.40746 0 0 1 -.5.09849 1.538 1.538 0 0 1 -1.5-1.5 1.53794 1.53794 0 0 1 1.5-1.5zm-2.3 5.4a6.97279 6.97279 0 0 1 -2.5-2.3 6.89429 6.89429 0 0 1 2.4-2.4c.1 0 .1-.1.2-.1a3.194 3.194 0 0 0 -.3 1.4 4.0047 4.0047 0 0 0 3 3.857v.65289a6.37491 6.37491 0 0 1 -2.8-1.10989z" /></svg>');
@@ -82,13 +89,11 @@
82
89
  --_iui-checkbox-border-color: transparent;
83
90
  --_iui-checkbox-background-color: rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
84
91
  }
85
- }
86
92
 
87
- &:disabled {
88
- --_iui-checkbox-svg-color: var(--iui-icons-color-actionable-disabled);
89
- --_iui-checkbox-border-color: var(--iui-color-background-disabled);
90
- --_iui-checkbox-background-color: var(--iui-color-background-disabled);
91
- cursor: not-allowed;
93
+ &:where(:disabled) {
94
+ --_iui-checkbox-svg-color: var(--iui-icons-color-actionable-disabled);
95
+ --_iui-checkbox-background-color: var(--iui-color-background-disabled);
96
+ }
92
97
  }
93
98
 
94
99
  &.iui-loading {
@@ -65,7 +65,3 @@
65
65
  .iui-radio {
66
66
  @include iui-radio;
67
67
  }
68
-
69
- .iui-radio-tile-container {
70
- @include iui-radio-tile;
71
- }
@@ -8,4 +8,3 @@
8
8
  @import './checkbox-radio';
9
9
  @import './checkbox';
10
10
  @import './radio';
11
- @import './radio-tile';
@@ -278,7 +278,7 @@
278
278
 
279
279
  svg {
280
280
  @include themed {
281
- fill: t(iui-icons-color);
281
+ fill: t(iui-icons-color-actionable);
282
282
  }
283
283
  transition: transform $iui-speed-fast ease-out;
284
284
  }
@@ -2,6 +2,7 @@
2
2
  // See LICENSE.md in the project root for license terms and full copyright notice.
3
3
  @import '../style/index';
4
4
  @import '../icon/index';
5
+ @import '../text/index';
5
6
 
6
7
  $iui-active-outline: thin solid t(iui-color-foreground-primary);
7
8
 
@@ -149,6 +150,32 @@ $iui-active-outline: thin solid t(iui-color-foreground-primary);
149
150
  }
150
151
  }
151
152
  }
153
+
154
+ &-skeleton {
155
+ --iui-menu-item-content-skeleton-max-width: 30%;
156
+ cursor: auto;
157
+
158
+ .iui-content {
159
+ max-width: var(--iui-menu-item-content-skeleton-max-width);
160
+ }
161
+
162
+ .iui-menu-label {
163
+ width: 100%;
164
+ height: $iui-font-size;
165
+ vertical-align: middle;
166
+ }
167
+
168
+ .iui-menu-description {
169
+ width: 70%;
170
+ height: $iui-font-size-small;
171
+ vertical-align: middle;
172
+ margin-top: $iui-xs;
173
+ }
174
+
175
+ &:hover {
176
+ background-color: unset;
177
+ }
178
+ }
152
179
  }
153
180
 
154
181
  @mixin iui-menu-content {