@itwin/itwinui-css 0.38.0 → 0.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/all.css +686 -357
- package/css/breadcrumbs.css +31 -15
- package/css/button.css +228 -137
- package/css/code.css +2 -0
- package/css/color-picker.css +2 -0
- package/css/date-picker.css +2 -0
- package/css/header.css +134 -91
- package/css/information-panel.css +26 -0
- package/css/inputs.css +40 -31
- package/css/menu.css +3 -3
- package/css/side-navigation.css +27 -24
- package/css/table.css +18 -3
- package/css/tabs.css +15 -12
- package/css/tile.css +51 -40
- package/css/tree.css +107 -0
- package/css/user-icon.css +3 -1
- package/package.json +6 -2
- package/scss/breadcrumbs/breadcrumbs.scss +1 -1
- package/scss/button/borderless.scss +37 -45
- package/scss/button/button-group.scss +6 -15
- package/scss/button/button-icon.scss +12 -0
- package/scss/button/button.scss +28 -35
- package/scss/button/classes.scss +25 -3
- package/scss/button/cta.scss +31 -21
- package/scss/button/default.scss +40 -45
- package/scss/button/disabled.scss +3 -14
- package/scss/button/high-visibility.scss +31 -21
- package/scss/button/index.scss +1 -0
- package/scss/button/split-menu.scss +7 -8
- package/scss/classes.scss +1 -0
- package/scss/code/codeblock.scss +4 -0
- package/scss/color-picker/color-picker.scss +16 -1
- package/scss/date-picker/date-picker.scss +2 -8
- package/scss/header/classes.scss +4 -0
- package/scss/header/header.scss +71 -59
- package/scss/index.scss +1 -0
- package/scss/information-panel/classes.scss +4 -0
- package/scss/information-panel/information-panel.scss +37 -0
- package/scss/inputs/checkbox-radio.scss +1 -3
- package/scss/inputs/checkbox.scss +5 -2
- package/scss/inputs/classes.scss +5 -1
- package/scss/inputs/labeled-inputs.scss +41 -16
- package/scss/inputs/radio-tile.scss +2 -4
- package/scss/keyboard/keyboard.scss +2 -4
- package/scss/location-marker/data-rich.scss +1 -2
- package/scss/menu/menu.scss +3 -11
- package/scss/modal/modal.scss +1 -2
- package/scss/progress-indicator/linear.scss +3 -10
- package/scss/progress-indicator/overlay.scss +3 -9
- package/scss/progress-indicator/radial.scss +4 -4
- package/scss/side-navigation/side-navigation.scss +32 -29
- package/scss/slider/slider.scss +5 -3
- package/scss/style/global.scss +1 -4
- package/scss/style/mixins.scss +17 -12
- package/scss/style/theme.scss +63 -208
- package/scss/table/paginator.scss +9 -1
- package/scss/table/table.scss +11 -19
- package/scss/table/variables.scss +2 -4
- package/scss/tabs/borderless.scss +3 -12
- package/scss/tabs/pill.scss +2 -8
- package/scss/tabs/tabs.scss +11 -8
- package/scss/tile/tile.scss +4 -2
- package/scss/time-picker/time-picker.scss +1 -4
- package/scss/toast-notification/categories.scss +1 -4
- package/scss/toast-notification/toast.scss +1 -3
- package/scss/toggle-switch/toggle-switch.scss +4 -8
- package/scss/tooltip/tooltip.scss +1 -2
- package/scss/tree/classes.scss +15 -0
- package/scss/tree/index.scss +3 -0
- package/scss/tree/tree.scss +137 -0
- package/scss/user-icon/user-icon.scss +6 -6
- package/scss/wizard/wizard.scss +2 -1
package/scss/table/table.scss
CHANGED
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
display: flex;
|
|
130
130
|
flex-direction: column;
|
|
131
131
|
flex-grow: 1;
|
|
132
|
-
|
|
132
|
+
@include iui-scroll-snapping('.iui-row');
|
|
133
133
|
@include themed {
|
|
134
134
|
background-color: t(iui-color-background-1);
|
|
135
135
|
}
|
|
@@ -151,10 +151,7 @@
|
|
|
151
151
|
&:hover:not(.iui-disabled) {
|
|
152
152
|
&:not(.iui-expanded-content) {
|
|
153
153
|
@include themed {
|
|
154
|
-
background-color: rgba(
|
|
155
|
-
t(iui-color-foreground-primary-rgb),
|
|
156
|
-
t(iui-opacity-6)
|
|
157
|
-
);
|
|
154
|
+
background-color: rgba(t(iui-color-foreground-primary-rgb), t(iui-opacity-6));
|
|
158
155
|
}
|
|
159
156
|
}
|
|
160
157
|
|
|
@@ -167,7 +164,7 @@
|
|
|
167
164
|
visibility: visible;
|
|
168
165
|
}
|
|
169
166
|
|
|
170
|
-
.iui-row-expander > .iui-icon {
|
|
167
|
+
.iui-row-expander > .iui-button-icon {
|
|
171
168
|
@media (prefers-reduced-motion: no-preference) {
|
|
172
169
|
transition: transform $iui-speed-fast ease-out;
|
|
173
170
|
}
|
|
@@ -181,7 +178,7 @@
|
|
|
181
178
|
border-bottom-color: transparent;
|
|
182
179
|
}
|
|
183
180
|
|
|
184
|
-
.iui-row-expander > .iui-icon {
|
|
181
|
+
.iui-row-expander > .iui-button-icon {
|
|
185
182
|
transform: rotate(90deg);
|
|
186
183
|
}
|
|
187
184
|
|
|
@@ -328,6 +325,10 @@
|
|
|
328
325
|
flex-basis: $iui-l * 2;
|
|
329
326
|
}
|
|
330
327
|
|
|
328
|
+
&:not(.iui-slot):last-child {
|
|
329
|
+
padding-right: $iui-m;
|
|
330
|
+
}
|
|
331
|
+
|
|
331
332
|
&.iui-positive {
|
|
332
333
|
@include iui-table-cell-status($status: positive);
|
|
333
334
|
}
|
|
@@ -367,10 +368,7 @@
|
|
|
367
368
|
|
|
368
369
|
*::selection {
|
|
369
370
|
@include themed {
|
|
370
|
-
background-color: rgba(
|
|
371
|
-
t(iui-color-foreground-#{$status}-rgb),
|
|
372
|
-
t(iui-opacity-4)
|
|
373
|
-
);
|
|
371
|
+
background-color: rgba(t(iui-color-foreground-#{$status}-rgb), t(iui-opacity-4));
|
|
374
372
|
}
|
|
375
373
|
}
|
|
376
374
|
}
|
|
@@ -384,18 +382,12 @@
|
|
|
384
382
|
|
|
385
383
|
@mixin iui-table-cell-status($status) {
|
|
386
384
|
@include themed {
|
|
387
|
-
background-color: rgba(
|
|
388
|
-
t(iui-color-foreground-#{$status}-rgb),
|
|
389
|
-
t(iui-opacity-6)
|
|
390
|
-
);
|
|
385
|
+
background-color: rgba(t(iui-color-foreground-#{$status}-rgb), t(iui-opacity-6));
|
|
391
386
|
}
|
|
392
387
|
|
|
393
388
|
&::selection {
|
|
394
389
|
@include themed {
|
|
395
|
-
background-color: rgba(
|
|
396
|
-
t(iui-color-foreground-#{$status}-rgb),
|
|
397
|
-
t(iui-opacity-4)
|
|
398
|
-
);
|
|
390
|
+
background-color: rgba(t(iui-color-foreground-#{$status}-rgb), t(iui-opacity-4));
|
|
399
391
|
}
|
|
400
392
|
}
|
|
401
393
|
}
|
|
@@ -6,7 +6,5 @@ $iui-table-density-vertical: $iui-baseline * 1.5;
|
|
|
6
6
|
$iui-table-density-vertical-condensed: $iui-baseline;
|
|
7
7
|
$iui-table-density-vertical-extra-condensed: $iui-baseline * 0.5;
|
|
8
8
|
$iui-table-density: $iui-table-density-vertical $iui-m;
|
|
9
|
-
$iui-table-density-condensed: $iui-table-density-vertical-condensed
|
|
10
|
-
|
|
11
|
-
$iui-table-density-extra-condensed: $iui-table-density-vertical-extra-condensed
|
|
12
|
-
$iui-m;
|
|
9
|
+
$iui-table-density-condensed: $iui-table-density-vertical-condensed $iui-m;
|
|
10
|
+
$iui-table-density-extra-condensed: $iui-table-density-vertical-extra-condensed $iui-m;
|
|
@@ -16,19 +16,13 @@
|
|
|
16
16
|
|
|
17
17
|
&:hover {
|
|
18
18
|
@include themed {
|
|
19
|
-
background-color: rgba(
|
|
20
|
-
t(iui-color-foreground-primary-rgb),
|
|
21
|
-
t(iui-opacity-6)
|
|
22
|
-
);
|
|
19
|
+
background-color: rgba(t(iui-color-foreground-primary-rgb), t(iui-opacity-6));
|
|
23
20
|
}
|
|
24
21
|
}
|
|
25
22
|
|
|
26
23
|
&.iui-active {
|
|
27
24
|
@include themed {
|
|
28
|
-
background-color: rgba(
|
|
29
|
-
t(iui-color-foreground-primary-rgb),
|
|
30
|
-
t(iui-opacity-6)
|
|
31
|
-
);
|
|
25
|
+
background-color: rgba(t(iui-color-foreground-primary-rgb), t(iui-opacity-6));
|
|
32
26
|
}
|
|
33
27
|
}
|
|
34
28
|
}
|
|
@@ -56,10 +50,7 @@
|
|
|
56
50
|
&.iui-green .iui-active,
|
|
57
51
|
&.iui-green .iui-tab:hover {
|
|
58
52
|
@include themed {
|
|
59
|
-
background-color: rgba(
|
|
60
|
-
t(iui-color-foreground-positive-rgb),
|
|
61
|
-
t(iui-opacity-6)
|
|
62
|
-
);
|
|
53
|
+
background-color: rgba(t(iui-color-foreground-positive-rgb), t(iui-opacity-6));
|
|
63
54
|
}
|
|
64
55
|
}
|
|
65
56
|
|
package/scss/tabs/pill.scss
CHANGED
|
@@ -17,10 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
&.iui-green .iui-tab:hover {
|
|
19
19
|
@include themed {
|
|
20
|
-
background-color: rgba(
|
|
21
|
-
t(iui-color-foreground-positive-rgb),
|
|
22
|
-
t(iui-opacity-6)
|
|
23
|
-
);
|
|
20
|
+
background-color: rgba(t(iui-color-foreground-positive-rgb), t(iui-opacity-6));
|
|
24
21
|
}
|
|
25
22
|
}
|
|
26
23
|
|
|
@@ -38,10 +35,7 @@
|
|
|
38
35
|
|
|
39
36
|
&:hover {
|
|
40
37
|
@include themed {
|
|
41
|
-
background-color: rgba(
|
|
42
|
-
t(iui-color-foreground-primary-rgb),
|
|
43
|
-
t(iui-opacity-6)
|
|
44
|
-
);
|
|
38
|
+
background-color: rgba(t(iui-color-foreground-primary-rgb), t(iui-opacity-6));
|
|
45
39
|
}
|
|
46
40
|
}
|
|
47
41
|
|
package/scss/tabs/tabs.scss
CHANGED
|
@@ -177,29 +177,29 @@
|
|
|
177
177
|
background-color: t(iui-color-foreground-positive);
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
|
-
|
|
181
|
-
~ .iui-tab-stripe {
|
|
182
|
-
display: none;
|
|
183
|
-
}
|
|
184
180
|
}
|
|
185
181
|
|
|
186
182
|
@mixin iui-tab-animated {
|
|
187
|
-
|
|
183
|
+
&::after {
|
|
188
184
|
position: absolute;
|
|
185
|
+
content: ' ';
|
|
189
186
|
@include themed {
|
|
190
187
|
background-color: t(iui-color-foreground-primary);
|
|
191
188
|
}
|
|
192
189
|
}
|
|
193
190
|
|
|
194
|
-
&.iui-green
|
|
191
|
+
&.iui-green::after {
|
|
195
192
|
@include themed {
|
|
196
193
|
background-color: t(iui-color-foreground-positive);
|
|
197
194
|
}
|
|
198
195
|
}
|
|
199
196
|
|
|
200
197
|
@at-root {
|
|
201
|
-
.iui-horizontal
|
|
198
|
+
.iui-horizontal &::after {
|
|
199
|
+
top: calc(100% - #{$iui-xxs});
|
|
202
200
|
height: $iui-xxs;
|
|
201
|
+
left: var(--stripe-left);
|
|
202
|
+
width: var(--stripe-width);
|
|
203
203
|
@media (prefers-reduced-motion: no-preference) {
|
|
204
204
|
transition: width $iui-speed-fast ease-out, left $iui-speed-fast ease-out;
|
|
205
205
|
}
|
|
@@ -207,8 +207,11 @@
|
|
|
207
207
|
}
|
|
208
208
|
|
|
209
209
|
@at-root {
|
|
210
|
-
.iui-vertical
|
|
210
|
+
.iui-vertical &::after {
|
|
211
|
+
left: calc(100% - #{$iui-xxs});
|
|
211
212
|
width: $iui-xxs;
|
|
213
|
+
top: var(--stripe-top);
|
|
214
|
+
height: var(--stripe-height);
|
|
212
215
|
@media (prefers-reduced-motion: no-preference) {
|
|
213
216
|
transition: top $iui-speed-fast ease-out;
|
|
214
217
|
}
|
package/scss/tile/tile.scss
CHANGED
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
> .iui-type-indicator,
|
|
36
36
|
> .iui-quick-action {
|
|
37
37
|
@include iui-button-borderless;
|
|
38
|
+
@include iui-button-size(small, borderless);
|
|
38
39
|
position: absolute;
|
|
39
40
|
border-radius: 50%;
|
|
40
41
|
top: round($iui-baseline * 0.5);
|
|
@@ -107,7 +108,7 @@
|
|
|
107
108
|
> .iui-picture + .iui-button + .iui-button {
|
|
108
109
|
@include iui-blur($opacity: 5);
|
|
109
110
|
|
|
110
|
-
&:enabled > .iui-icon {
|
|
111
|
+
&:enabled > .iui-button-icon {
|
|
111
112
|
@include themed() {
|
|
112
113
|
fill: t(iui-color-foreground-accessory);
|
|
113
114
|
filter: drop-shadow(0 2px 1px rgba(0, 0, 0, t(iui-opacity-5)));
|
|
@@ -122,7 +123,7 @@
|
|
|
122
123
|
background-color: rgba(0, 0, 0, t(iui-opacity-4));
|
|
123
124
|
}
|
|
124
125
|
|
|
125
|
-
|
|
126
|
+
.iui-button-icon {
|
|
126
127
|
@include themed() {
|
|
127
128
|
fill: t(iui-color-foreground-accessory);
|
|
128
129
|
}
|
|
@@ -206,6 +207,7 @@
|
|
|
206
207
|
}
|
|
207
208
|
|
|
208
209
|
> .iui-more-options {
|
|
210
|
+
@include iui-button-size(small, borderless);
|
|
209
211
|
position: absolute;
|
|
210
212
|
bottom: $iui-baseline * 0.5;
|
|
211
213
|
right: $iui-s;
|
|
@@ -49,10 +49,7 @@
|
|
|
49
49
|
cursor: pointer;
|
|
50
50
|
@include themed {
|
|
51
51
|
color: t(iui-color-foreground-primary);
|
|
52
|
-
background-color: rgba(
|
|
53
|
-
t(iui-color-foreground-primary-rgb),
|
|
54
|
-
t(iui-opacity-6)
|
|
55
|
-
);
|
|
52
|
+
background-color: rgba(t(iui-color-foreground-primary-rgb), t(iui-opacity-6));
|
|
56
53
|
}
|
|
57
54
|
}
|
|
58
55
|
|
|
@@ -12,10 +12,7 @@
|
|
|
12
12
|
> .iui-message {
|
|
13
13
|
&::selection {
|
|
14
14
|
@include themed {
|
|
15
|
-
background-color: rgba(
|
|
16
|
-
t(iui-color-foreground-#{$category}-rgb),
|
|
17
|
-
t(iui-opacity-4)
|
|
18
|
-
);
|
|
15
|
+
background-color: rgba(t(iui-color-foreground-#{$category}-rgb), t(iui-opacity-4));
|
|
19
16
|
}
|
|
20
17
|
}
|
|
21
18
|
}
|
|
@@ -15,9 +15,7 @@
|
|
|
15
15
|
@include themed {
|
|
16
16
|
background-color: t(iui-color-background-1);
|
|
17
17
|
border: 1px solid t(iui-color-foreground-body);
|
|
18
|
-
box-shadow: 0 0 0 1px
|
|
19
|
-
rgba(t(iui-color-foreground-accessory-rgb), t(iui-opacity-4)),
|
|
20
|
-
$iui-elevation-24;
|
|
18
|
+
box-shadow: 0 0 0 1px rgba(t(iui-color-foreground-accessory-rgb), t(iui-opacity-4)), $iui-elevation-24;
|
|
21
19
|
}
|
|
22
20
|
|
|
23
21
|
> .iui-status-area {
|
|
@@ -31,13 +31,11 @@
|
|
|
31
31
|
width: ($iui-m * 2) + ($iui-xxs * 3);
|
|
32
32
|
border-radius: $iui-baseline;
|
|
33
33
|
@media (prefers-reduced-motion: no-preference) {
|
|
34
|
-
transition: background-color $iui-speed-fast ease,
|
|
35
|
-
border-color $iui-speed-fast ease;
|
|
34
|
+
transition: background-color $iui-speed-fast ease, border-color $iui-speed-fast ease;
|
|
36
35
|
}
|
|
37
36
|
@include themed {
|
|
38
37
|
background-color: t(iui-color-background-1);
|
|
39
|
-
border: 1px solid
|
|
40
|
-
rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-4));
|
|
38
|
+
border: 1px solid rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-4));
|
|
41
39
|
}
|
|
42
40
|
|
|
43
41
|
> .iui-icon {
|
|
@@ -64,8 +62,7 @@
|
|
|
64
62
|
right: $iui-m + $iui-xs;
|
|
65
63
|
border-radius: 50%;
|
|
66
64
|
@media (prefers-reduced-motion: no-preference) {
|
|
67
|
-
transition: right $iui-speed-fast ease,
|
|
68
|
-
background-color $iui-speed-fast ease, opacity $iui-speed-fast ease;
|
|
65
|
+
transition: right $iui-speed-fast ease, background-color $iui-speed-fast ease, opacity $iui-speed-fast ease;
|
|
69
66
|
}
|
|
70
67
|
@include themed {
|
|
71
68
|
background-color: t(iui-color-foreground-body);
|
|
@@ -78,8 +75,7 @@
|
|
|
78
75
|
&:focus {
|
|
79
76
|
~ .iui-toggle {
|
|
80
77
|
@include themed {
|
|
81
|
-
border: 1px solid
|
|
82
|
-
rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-2));
|
|
78
|
+
border: 1px solid rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-2));
|
|
83
79
|
}
|
|
84
80
|
|
|
85
81
|
> .iui-handle {
|
|
@@ -30,8 +30,7 @@
|
|
|
30
30
|
opacity: 0;
|
|
31
31
|
/// Following this guide for animation on exit hover: https://greywyvern.com/?post=337
|
|
32
32
|
@media (prefers-reduced-motion: no-preference) {
|
|
33
|
-
transition: visibility 0s linear $iui-speed-fast,
|
|
34
|
-
opacity $iui-speed-fast ease-out;
|
|
33
|
+
transition: visibility 0s linear $iui-speed-fast, opacity $iui-speed-fast ease-out;
|
|
35
34
|
}
|
|
36
35
|
}
|
|
37
36
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
2
|
+
// See LICENSE.md in the project root for license terms and full copyright notice.
|
|
3
|
+
@import './index';
|
|
4
|
+
|
|
5
|
+
.iui-tree {
|
|
6
|
+
@include iui-tree;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.iui-sub-tree {
|
|
10
|
+
@include iui-sub-tree;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.iui-tree-node {
|
|
14
|
+
@include iui-tree-node;
|
|
15
|
+
}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
// Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
2
|
+
// See LICENSE.md in the project root for license terms and full copyright notice.
|
|
3
|
+
@import '../style/index';
|
|
4
|
+
@import '../icon/index';
|
|
5
|
+
|
|
6
|
+
$iui-active-outline: thin solid t(iui-color-foreground-primary);
|
|
7
|
+
$iui-expander-inline-padding: $iui-component-offset + $iui-xxs + 1px; // margin + padding + border
|
|
8
|
+
$iui-expander-button-width: ($iui-icons-default) + ($iui-expander-inline-padding * 2); // icon width + inline padding on both sides
|
|
9
|
+
|
|
10
|
+
@mixin iui-tree {
|
|
11
|
+
@include iui-reset;
|
|
12
|
+
list-style: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@mixin iui-sub-tree {
|
|
16
|
+
@include iui-reset;
|
|
17
|
+
list-style: none;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@mixin iui-tree-node {
|
|
21
|
+
display: flex;
|
|
22
|
+
cursor: pointer;
|
|
23
|
+
padding: 0 $iui-s;
|
|
24
|
+
|
|
25
|
+
&-checkbox {
|
|
26
|
+
margin-right: $iui-s;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&-content {
|
|
30
|
+
display: flex;
|
|
31
|
+
align-items: center;
|
|
32
|
+
box-sizing: border-box;
|
|
33
|
+
min-height: $iui-baseline * 3;
|
|
34
|
+
margin-left: calc(#{$iui-expander-button-width} * (var(--level, 0)));
|
|
35
|
+
overflow: hidden;
|
|
36
|
+
padding-left: $iui-xxs;
|
|
37
|
+
|
|
38
|
+
&-icon {
|
|
39
|
+
@include iui-icons-default;
|
|
40
|
+
padding: 0 $iui-expander-inline-padding;
|
|
41
|
+
flex-shrink: 0;
|
|
42
|
+
|
|
43
|
+
&:first-child {
|
|
44
|
+
margin-left: $iui-expander-button-width;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&-expander-icon {
|
|
49
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
50
|
+
transition: transform $iui-speed-fast ease-out;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&-expanded {
|
|
54
|
+
transform: rotate(90deg);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&-label {
|
|
59
|
+
min-width: 0;
|
|
60
|
+
padding-left: $iui-expander-inline-padding;
|
|
61
|
+
|
|
62
|
+
&:first-child {
|
|
63
|
+
margin-left: $iui-expander-button-width;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&-title,
|
|
68
|
+
&-caption {
|
|
69
|
+
white-space: nowrap;
|
|
70
|
+
overflow: hidden;
|
|
71
|
+
text-overflow: ellipsis;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&-title {
|
|
75
|
+
font-size: $iui-font-size;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&-caption {
|
|
79
|
+
font-size: $iui-font-size-small;
|
|
80
|
+
@include themed {
|
|
81
|
+
color: t(iui-text-color-muted);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&:focus {
|
|
87
|
+
@include themed {
|
|
88
|
+
outline: thin solid rgba(t(iui-color-foreground-primary-rgb), t(iui-opacity-4));
|
|
89
|
+
outline-offset: -1px;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
&:focus:not(:focus-visible) {
|
|
94
|
+
outline-offset: -2px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
&:hover {
|
|
98
|
+
@include themed {
|
|
99
|
+
background-color: rgba(t(iui-color-foreground-primary-rgb), t(iui-opacity-6));
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.iui-tree-node-content-caption {
|
|
103
|
+
@include themed {
|
|
104
|
+
color: t(iui-color-foreground-body);
|
|
105
|
+
}
|
|
106
|
+
transition: color $iui-speed-fast ease;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
&.iui-active {
|
|
111
|
+
@include themed {
|
|
112
|
+
background-color: rgba(t(iui-color-foreground-primary-rgb), t(iui-opacity-5));
|
|
113
|
+
outline: $iui-active-outline;
|
|
114
|
+
outline-offset: -1px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
&:focus {
|
|
118
|
+
outline-width: $iui-xxs;
|
|
119
|
+
outline-offset: -2px;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
&.iui-disabled {
|
|
124
|
+
cursor: not-allowed;
|
|
125
|
+
outline: none;
|
|
126
|
+
background-color: transparent;
|
|
127
|
+
@include themed {
|
|
128
|
+
color: t(iui-text-color-placeholder);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.iui-tree-node-content-caption {
|
|
132
|
+
@include themed {
|
|
133
|
+
color: t(iui-text-color-placeholder);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
@@ -23,8 +23,7 @@
|
|
|
23
23
|
border-radius: 50%;
|
|
24
24
|
box-sizing: border-box;
|
|
25
25
|
@include themed {
|
|
26
|
-
box-shadow: inset 0 0 0 $iui-xxs
|
|
27
|
-
rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-6));
|
|
26
|
+
box-shadow: inset 0 0 0 $iui-xxs rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-6));
|
|
28
27
|
}
|
|
29
28
|
}
|
|
30
29
|
|
|
@@ -71,6 +70,9 @@
|
|
|
71
70
|
height: 100%;
|
|
72
71
|
border-width: 0;
|
|
73
72
|
border-radius: 50%;
|
|
73
|
+
@include themed {
|
|
74
|
+
background-color: t(iui-color-background-1);
|
|
75
|
+
}
|
|
74
76
|
}
|
|
75
77
|
|
|
76
78
|
> .iui-status {
|
|
@@ -86,8 +88,7 @@
|
|
|
86
88
|
@include themed {
|
|
87
89
|
border: $iui-xxs solid t(iui-color-background-1);
|
|
88
90
|
background-color: t(iui-color-background-1);
|
|
89
|
-
box-shadow: inset 0 0 0 1px
|
|
90
|
-
rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-3));
|
|
91
|
+
box-shadow: inset 0 0 0 1px rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-3));
|
|
91
92
|
}
|
|
92
93
|
|
|
93
94
|
> .iui-status-symbol {
|
|
@@ -155,8 +156,7 @@
|
|
|
155
156
|
&:focus:not(:focus-visible) {
|
|
156
157
|
> .iui-stroke {
|
|
157
158
|
@include themed {
|
|
158
|
-
box-shadow: inset 0 0 0 $iui-xxs
|
|
159
|
-
rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-6));
|
|
159
|
+
box-shadow: inset 0 0 0 $iui-xxs rgba(t(iui-color-foreground-body-rgb), t(iui-opacity-6));
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
}
|
package/scss/wizard/wizard.scss
CHANGED
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
justify-content: center;
|
|
37
37
|
overflow-wrap: break-word;
|
|
38
38
|
user-select: none;
|
|
39
|
-
transition: background-color $iui-speed-fast ease-out, border-color $iui-speed-fast ease-out,
|
|
39
|
+
transition: background-color $iui-speed-fast ease-out, border-color $iui-speed-fast ease-out,
|
|
40
|
+
color $iui-speed-fast ease-out;
|
|
40
41
|
@include themed {
|
|
41
42
|
border: 1px solid t(iui-color-foreground-positive);
|
|
42
43
|
background-color: t(iui-color-background-1);
|