@carbon/styles 1.15.0 → 1.16.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/styles.css +2623 -2434
- package/css/styles.min.css +1 -1
- package/package.json +5 -5
- package/scss/__tests__/__snapshots__/type-test.js.snap +1097 -1065
- package/scss/components/_index.scss +3 -0
- package/scss/components/button/_tokens.scss +76 -75
- package/scss/components/data-table/sort/_data-table-sort.scss +1 -1
- package/scss/components/fluid-combo-box/_fluid-combo-box.scss +71 -0
- package/scss/components/fluid-combo-box/_index.scss +11 -0
- package/scss/components/fluid-list-box/_fluid-list-box.scss +42 -4
- package/scss/components/fluid-multiselect/_fluid-multiselect.scss +41 -0
- package/scss/components/fluid-multiselect/_index.scss +11 -0
- package/scss/components/fluid-select/_fluid-select.scss +158 -0
- package/scss/components/fluid-select/_index.scss +11 -0
- package/scss/components/notification/_tokens.scss +150 -42
- package/scss/components/number-input/_number-input.scss +1 -1
- package/scss/components/overflow-menu/_overflow-menu.scss +1 -1
- package/scss/components/progress-indicator/_progress-indicator.scss +5 -0
- package/scss/components/tag/_tokens.scss +152 -150
- package/scss/components/text-input/_text-input.scss +14 -8
- package/scss/components/ui-shell/header/_header.scss +16 -19
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Copyright IBM Corp. 2022
|
|
3
|
+
//
|
|
4
|
+
// This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
// LICENSE file in the root directory of this source tree.
|
|
6
|
+
//
|
|
7
|
+
|
|
8
|
+
//-----------------------------
|
|
9
|
+
// Fluid Select
|
|
10
|
+
//-----------------------------
|
|
11
|
+
@use '../../config' as *;
|
|
12
|
+
@use '../../motion' as *;
|
|
13
|
+
@use '../../spacing' as *;
|
|
14
|
+
@use '../../theme' as *;
|
|
15
|
+
@use '../../utilities/convert' as *;
|
|
16
|
+
@use '../../utilities/focus-outline' as *;
|
|
17
|
+
@use '../select';
|
|
18
|
+
|
|
19
|
+
@mixin fluid-select {
|
|
20
|
+
.#{$prefix}--select--fluid .#{$prefix}--select {
|
|
21
|
+
position: relative;
|
|
22
|
+
height: 100%;
|
|
23
|
+
background: $field;
|
|
24
|
+
transition: background-color $duration-fast-01 motion(standard, productive),
|
|
25
|
+
outline $duration-fast-01 motion(standard, productive);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.#{$prefix}--select--fluid .#{$prefix}--label {
|
|
29
|
+
position: absolute;
|
|
30
|
+
z-index: 1;
|
|
31
|
+
top: rem(13px);
|
|
32
|
+
left: $spacing-05;
|
|
33
|
+
display: flex;
|
|
34
|
+
height: rem(16px);
|
|
35
|
+
align-items: center;
|
|
36
|
+
margin: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.#{$prefix}--select--fluid .#{$prefix}--select-input {
|
|
40
|
+
min-height: rem(64px);
|
|
41
|
+
padding: rem(32px) $spacing-05 rem(13px);
|
|
42
|
+
outline: none;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.#{$prefix}--select--fluid .#{$prefix}--select__arrow {
|
|
46
|
+
top: auto;
|
|
47
|
+
bottom: 1rem;
|
|
48
|
+
height: 1rem;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.#{$prefix}--select--fluid .#{$prefix}--select__divider {
|
|
52
|
+
display: none;
|
|
53
|
+
transition: border-color $duration-fast-01 motion(standard, productive);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// Invalid + Warn states
|
|
57
|
+
.#{$prefix}--select--fluid .#{$prefix}--select--invalid {
|
|
58
|
+
@include focus-outline('invalid');
|
|
59
|
+
|
|
60
|
+
outline-offset: 0;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.#{$prefix}--select--fluid
|
|
64
|
+
.#{$prefix}--select--invalid
|
|
65
|
+
.#{$prefix}--select__divider,
|
|
66
|
+
.#{$prefix}--select--fluid
|
|
67
|
+
.#{$prefix}--select--warning
|
|
68
|
+
.#{$prefix}--select__divider {
|
|
69
|
+
display: block;
|
|
70
|
+
width: calc(100% - 2rem);
|
|
71
|
+
border: none;
|
|
72
|
+
border-bottom: 1px solid $border-subtle;
|
|
73
|
+
margin: 0 1rem;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.#{$prefix}--select--fluid
|
|
77
|
+
.#{$prefix}--select-input__wrapper[data-invalid]
|
|
78
|
+
.#{$prefix}--select-input,
|
|
79
|
+
.#{$prefix}--select--fluid
|
|
80
|
+
.#{$prefix}--select--warning
|
|
81
|
+
.#{$prefix}--select-input {
|
|
82
|
+
border-bottom: 1px solid transparent;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.#{$prefix}--select--fluid .#{$prefix}--select--warning {
|
|
86
|
+
border-bottom: 1px solid $border-strong;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.#{$prefix}--select--fluid
|
|
90
|
+
.#{$prefix}--select-input__wrapper[data-invalid]
|
|
91
|
+
.#{$prefix}--select-input:not(:focus),
|
|
92
|
+
.#{$prefix}--select--fluid
|
|
93
|
+
.#{$prefix}--select--warning
|
|
94
|
+
.#{$prefix}--select-input:not(:focus) {
|
|
95
|
+
outline: none;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.#{$prefix}--select--fluid .#{$prefix}--form-requirement {
|
|
99
|
+
padding: $spacing-03 rem(40px) $spacing-03 $spacing-05;
|
|
100
|
+
margin: 0;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.#{$prefix}--select--fluid
|
|
104
|
+
.#{$prefix}--select-input__wrapper[data-invalid]:hover
|
|
105
|
+
+ .#{$prefix}--select__divider,
|
|
106
|
+
.#{$prefix}--select--fluid
|
|
107
|
+
.#{$prefix}--select--warning
|
|
108
|
+
.#{$prefix}--select-input__wrapper:hover
|
|
109
|
+
+ .#{$prefix}--select__divider {
|
|
110
|
+
border-color: transparent;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.#{$prefix}--select--fluid
|
|
114
|
+
.#{$prefix}--select--invalid
|
|
115
|
+
.#{$prefix}--select__invalid-icon,
|
|
116
|
+
.#{$prefix}--select--fluid
|
|
117
|
+
.#{$prefix}--select--warning
|
|
118
|
+
.#{$prefix}--select__invalid-icon {
|
|
119
|
+
top: rem(73px);
|
|
120
|
+
right: $spacing-05;
|
|
121
|
+
pointer-events: none;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// Focus styles
|
|
125
|
+
.#{$prefix}--select--fluid .#{$prefix}--select--fluid--focus {
|
|
126
|
+
@include focus-outline('outline');
|
|
127
|
+
|
|
128
|
+
outline-offset: 0;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.#{$prefix}--select--fluid
|
|
132
|
+
.#{$prefix}--select--fluid--focus
|
|
133
|
+
.#{$prefix}--select-input,
|
|
134
|
+
.#{$prefix}--select--fluid
|
|
135
|
+
.#{$prefix}--select--fluid--focus.#{$prefix}--select--warning {
|
|
136
|
+
border-bottom: 1px solid transparent;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
// Disabled state
|
|
140
|
+
.#{$prefix}--select--fluid
|
|
141
|
+
.#{$prefix}--select--disabled
|
|
142
|
+
.#{$prefix}--toggletip-label {
|
|
143
|
+
color: $text-disabled;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.#{$prefix}--select--fluid
|
|
147
|
+
.#{$prefix}--select--disabled
|
|
148
|
+
.#{$prefix}--toggletip-button {
|
|
149
|
+
pointer-events: none;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.#{$prefix}--select--fluid
|
|
153
|
+
.#{$prefix}--select--disabled
|
|
154
|
+
.#{$prefix}--toggletip-button
|
|
155
|
+
svg {
|
|
156
|
+
fill: $icon-disabled;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Copyright IBM Corp. 2022
|
|
3
|
+
//
|
|
4
|
+
// This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
// LICENSE file in the root directory of this source tree.
|
|
6
|
+
//
|
|
7
|
+
|
|
8
|
+
@forward 'fluid-select';
|
|
9
|
+
@use 'fluid-select';
|
|
10
|
+
|
|
11
|
+
@include fluid-select.fluid-select;
|
|
@@ -13,106 +13,123 @@
|
|
|
13
13
|
@use '../../themes';
|
|
14
14
|
@use '../../theme';
|
|
15
15
|
@use '../../utilities/component-tokens';
|
|
16
|
+
@use '@carbon/themes/scss/component-tokens' as notification;
|
|
17
|
+
|
|
16
18
|
@use '../button/tokens' as button-tokens;
|
|
17
19
|
|
|
18
20
|
$notification-background-error: (
|
|
19
|
-
fallback:
|
|
21
|
+
fallback: map.get(notification.$notification-background-error, white-theme),
|
|
20
22
|
values: (
|
|
21
23
|
(
|
|
22
24
|
theme: themes.$white,
|
|
23
|
-
value:
|
|
25
|
+
value: map.get(notification.$notification-background-error, white-theme),
|
|
24
26
|
),
|
|
25
27
|
(
|
|
26
28
|
theme: themes.$g10,
|
|
27
|
-
value:
|
|
29
|
+
value: map.get(notification.$notification-background-error, g-10),
|
|
28
30
|
),
|
|
29
31
|
(
|
|
30
32
|
theme: themes.$g90,
|
|
31
|
-
value:
|
|
33
|
+
value: map.get(notification.$notification-background-error, g-90),
|
|
32
34
|
),
|
|
33
35
|
(
|
|
34
36
|
theme: themes.$g100,
|
|
35
|
-
value:
|
|
37
|
+
value: map.get(notification.$notification-background-error, g-100),
|
|
36
38
|
),
|
|
37
39
|
),
|
|
38
40
|
) !default;
|
|
39
41
|
|
|
40
42
|
$notification-background-success: (
|
|
41
|
-
fallback:
|
|
43
|
+
fallback: map.get(notification.$notification-background-success, white-theme),
|
|
42
44
|
values: (
|
|
43
45
|
(
|
|
44
46
|
theme: themes.$white,
|
|
45
|
-
value:
|
|
47
|
+
value: map.get(notification.$notification-background-success, white-theme),
|
|
46
48
|
),
|
|
47
49
|
(
|
|
48
50
|
theme: themes.$g10,
|
|
49
|
-
value:
|
|
51
|
+
value: map.get(notification.$notification-background-success, g-10),
|
|
50
52
|
),
|
|
51
53
|
(
|
|
52
54
|
theme: themes.$g90,
|
|
53
|
-
value:
|
|
55
|
+
value: map.get(notification.$notification-background-success, g-90),
|
|
54
56
|
),
|
|
55
57
|
(
|
|
56
58
|
theme: themes.$g100,
|
|
57
|
-
value:
|
|
59
|
+
value: map.get(notification.$notification-background-success, g-100),
|
|
58
60
|
),
|
|
59
61
|
),
|
|
60
62
|
) !default;
|
|
61
63
|
|
|
62
64
|
$notification-background-info: (
|
|
63
|
-
fallback:
|
|
65
|
+
fallback: map.get(notification.$notification-background-info, white-theme),
|
|
64
66
|
values: (
|
|
65
67
|
(
|
|
66
68
|
theme: themes.$white,
|
|
67
|
-
value:
|
|
69
|
+
value: map.get(notification.$notification-background-info, white-theme),
|
|
68
70
|
),
|
|
69
71
|
(
|
|
70
72
|
theme: themes.$g10,
|
|
71
|
-
value:
|
|
73
|
+
value: map.get(notification.$notification-background-info, g-10),
|
|
72
74
|
),
|
|
73
75
|
(
|
|
74
76
|
theme: themes.$g90,
|
|
75
|
-
value:
|
|
77
|
+
value: map.get(notification.$notification-background-info, g-90),
|
|
76
78
|
),
|
|
77
79
|
(
|
|
78
80
|
theme: themes.$g100,
|
|
79
|
-
value:
|
|
81
|
+
value: map.get(notification.$notification-background-info, g-100),
|
|
80
82
|
),
|
|
81
83
|
),
|
|
82
84
|
) !default;
|
|
83
85
|
|
|
84
86
|
$notification-background-warning: (
|
|
85
|
-
fallback:
|
|
87
|
+
fallback:
|
|
88
|
+
color.mix(
|
|
89
|
+
map.get(notification.$color-map, yellow-30),
|
|
90
|
+
map.get(notification.$color-map, white-0),
|
|
91
|
+
15%
|
|
92
|
+
),
|
|
86
93
|
values: (
|
|
87
94
|
(
|
|
88
95
|
theme: themes.$white,
|
|
89
|
-
value:
|
|
96
|
+
value:
|
|
97
|
+
color.mix(
|
|
98
|
+
map.get(notification.$color-map, yellow-30),
|
|
99
|
+
map.get(notification.$color-map, white-0),
|
|
100
|
+
15%
|
|
101
|
+
),
|
|
90
102
|
),
|
|
91
103
|
(
|
|
92
104
|
theme: themes.$g10,
|
|
93
|
-
value:
|
|
105
|
+
value:
|
|
106
|
+
color.mix(
|
|
107
|
+
map.get(notification.$color-map, yellow-30),
|
|
108
|
+
map.get(notification.$color-map, white-0),
|
|
109
|
+
15%
|
|
110
|
+
),
|
|
94
111
|
),
|
|
95
112
|
(
|
|
96
113
|
theme: themes.$g90,
|
|
97
|
-
value:
|
|
114
|
+
value: map.get(notification.$notification-background-warning, g-90),
|
|
98
115
|
),
|
|
99
116
|
(
|
|
100
117
|
theme: themes.$g100,
|
|
101
|
-
value:
|
|
118
|
+
value: map.get(notification.$notification-background-warning, g-100),
|
|
102
119
|
),
|
|
103
120
|
),
|
|
104
121
|
) !default;
|
|
105
122
|
|
|
106
123
|
$notification-action-hover: (
|
|
107
|
-
fallback:
|
|
124
|
+
fallback: map.get(notification.$notification-background-info, white-theme),
|
|
108
125
|
values: (
|
|
109
126
|
(
|
|
110
127
|
theme: themes.$white,
|
|
111
|
-
value:
|
|
128
|
+
value: map.get(notification.$notification-background-info, white-theme),
|
|
112
129
|
),
|
|
113
130
|
(
|
|
114
131
|
theme: themes.$g10,
|
|
115
|
-
value:
|
|
132
|
+
value: map.get(notification.$notification-background-info, g-10),
|
|
116
133
|
),
|
|
117
134
|
(
|
|
118
135
|
theme: themes.$g90,
|
|
@@ -127,70 +144,161 @@ $notification-action-hover: (
|
|
|
127
144
|
|
|
128
145
|
$notification-action-tertiary-inverse: (
|
|
129
146
|
fallback: map.get(button-tokens.$button-tokens, button-tertiary, fallback),
|
|
130
|
-
values:
|
|
131
|
-
|
|
132
|
-
|
|
147
|
+
values: (
|
|
148
|
+
(
|
|
149
|
+
theme: themes.$white,
|
|
150
|
+
value:
|
|
151
|
+
map.get(notification.$notification-action-tertiary-inverse, white-theme),
|
|
152
|
+
),
|
|
153
|
+
(
|
|
154
|
+
theme: themes.$g10,
|
|
155
|
+
value: map.get(notification.$notification-action-tertiary-inverse, g-10),
|
|
156
|
+
),
|
|
157
|
+
(
|
|
158
|
+
theme: themes.$g90,
|
|
159
|
+
value: map.get(notification.$notification-action-tertiary-inverse, g-90),
|
|
133
160
|
),
|
|
161
|
+
(
|
|
162
|
+
theme: themes.$g100,
|
|
163
|
+
value: map.get(notification.$notification-action-tertiary-inverse, g-100),
|
|
164
|
+
),
|
|
165
|
+
),
|
|
134
166
|
) !default;
|
|
135
167
|
|
|
136
168
|
$notification-action-tertiary-inverse-active: (
|
|
137
169
|
fallback:
|
|
138
170
|
map.get(button-tokens.$button-tokens, button-tertiary-active, fallback),
|
|
139
|
-
values:
|
|
140
|
-
|
|
141
|
-
|
|
171
|
+
values: (
|
|
172
|
+
(
|
|
173
|
+
theme: themes.$white,
|
|
174
|
+
value:
|
|
175
|
+
map.get(
|
|
176
|
+
notification.$notification-action-tertiary-inverse-active,
|
|
177
|
+
white-theme
|
|
178
|
+
),
|
|
179
|
+
),
|
|
180
|
+
(
|
|
181
|
+
theme: themes.$g10,
|
|
182
|
+
value:
|
|
183
|
+
map.get(notification.$notification-action-tertiary-inverse-active, g-10),
|
|
184
|
+
),
|
|
185
|
+
(
|
|
186
|
+
theme: themes.$g90,
|
|
187
|
+
value:
|
|
188
|
+
map.get(notification.$notification-action-tertiary-inverse-active, g-90),
|
|
189
|
+
),
|
|
190
|
+
(
|
|
191
|
+
theme: themes.$g100,
|
|
192
|
+
value:
|
|
193
|
+
map.get(
|
|
194
|
+
notification.$notification-action-tertiary-inverse-active,
|
|
195
|
+
g-100
|
|
196
|
+
),
|
|
142
197
|
),
|
|
198
|
+
),
|
|
143
199
|
) !default;
|
|
144
200
|
|
|
145
201
|
$notification-action-tertiary-inverse-hover: (
|
|
146
202
|
fallback:
|
|
147
203
|
map.get(button-tokens.$button-tokens, button-tertiary-hover, fallback),
|
|
148
|
-
values:
|
|
149
|
-
|
|
150
|
-
|
|
204
|
+
values: (
|
|
205
|
+
(
|
|
206
|
+
theme: themes.$white,
|
|
207
|
+
value:
|
|
208
|
+
map.get(
|
|
209
|
+
notification.$notification-action-tertiary-inverse-hover,
|
|
210
|
+
white-theme
|
|
211
|
+
),
|
|
212
|
+
),
|
|
213
|
+
(
|
|
214
|
+
theme: themes.$g10,
|
|
215
|
+
value:
|
|
216
|
+
map.get(notification.$notification-action-tertiary-inverse-hover, g-10),
|
|
151
217
|
),
|
|
218
|
+
(
|
|
219
|
+
theme: themes.$g90,
|
|
220
|
+
value:
|
|
221
|
+
map.get(notification.$notification-action-tertiary-inverse-hover, g-90),
|
|
222
|
+
),
|
|
223
|
+
(
|
|
224
|
+
theme: themes.$g100,
|
|
225
|
+
value:
|
|
226
|
+
map.get(notification.$notification-action-tertiary-inverse-hover, g-100),
|
|
227
|
+
),
|
|
228
|
+
),
|
|
152
229
|
) !default;
|
|
153
230
|
|
|
154
231
|
$notification-action-tertiary-inverse-text: (
|
|
155
|
-
fallback:
|
|
232
|
+
fallback:
|
|
233
|
+
map.get(
|
|
234
|
+
notification.$notification-action-tertiary-inverse-text,
|
|
235
|
+
white-theme
|
|
236
|
+
),
|
|
156
237
|
values: (
|
|
157
238
|
(
|
|
158
239
|
theme: themes.$white,
|
|
159
|
-
value:
|
|
240
|
+
value:
|
|
241
|
+
map.get(
|
|
242
|
+
notification.$notification-action-tertiary-inverse-text,
|
|
243
|
+
white-theme
|
|
244
|
+
),
|
|
160
245
|
),
|
|
161
246
|
(
|
|
162
247
|
theme: themes.$g10,
|
|
163
|
-
value:
|
|
248
|
+
value:
|
|
249
|
+
map.get(notification.$notification-action-tertiary-inverse-text, g-10),
|
|
164
250
|
),
|
|
165
251
|
(
|
|
166
252
|
theme: themes.$g90,
|
|
167
|
-
value:
|
|
253
|
+
value:
|
|
254
|
+
map.get(notification.$notification-action-tertiary-inverse-text, g-90),
|
|
168
255
|
),
|
|
169
256
|
(
|
|
170
257
|
theme: themes.$g100,
|
|
171
|
-
value:
|
|
258
|
+
value:
|
|
259
|
+
map.get(notification.$notification-action-tertiary-inverse-text, g-100),
|
|
172
260
|
),
|
|
173
261
|
),
|
|
174
262
|
) !default;
|
|
175
263
|
|
|
176
264
|
$notification-action-tertiary-inverse-text-on-color-disabled: (
|
|
177
|
-
fallback:
|
|
265
|
+
fallback:
|
|
266
|
+
map.get(
|
|
267
|
+
notification.$notification-action-tertiary-inverse-text-on-color-disabled,
|
|
268
|
+
white-theme
|
|
269
|
+
),
|
|
178
270
|
values: (
|
|
179
271
|
(
|
|
180
272
|
theme: themes.$white,
|
|
181
|
-
value:
|
|
273
|
+
value:
|
|
274
|
+
map.get(
|
|
275
|
+
notification.$notification-action-tertiary-inverse-text-on-color-disabled,
|
|
276
|
+
white-theme
|
|
277
|
+
),
|
|
182
278
|
),
|
|
183
279
|
(
|
|
184
280
|
theme: themes.$g10,
|
|
185
|
-
value:
|
|
281
|
+
value:
|
|
282
|
+
map.get(
|
|
283
|
+
notification.$notification-action-tertiary-inverse-text-on-color-disabled,
|
|
284
|
+
g-10
|
|
285
|
+
),
|
|
186
286
|
),
|
|
187
287
|
(
|
|
188
288
|
theme: themes.$g90,
|
|
189
|
-
value:
|
|
289
|
+
value:
|
|
290
|
+
map.get(
|
|
291
|
+
notification.$notification-action-tertiary-inverse-text-on-color-disabled,
|
|
292
|
+
g-90
|
|
293
|
+
),
|
|
190
294
|
),
|
|
191
295
|
(
|
|
192
296
|
theme: themes.$g100,
|
|
193
|
-
value:
|
|
297
|
+
value:
|
|
298
|
+
map.get(
|
|
299
|
+
notification.$notification-action-tertiary-inverse-text-on-color-disabled,
|
|
300
|
+
g-100
|
|
301
|
+
),
|
|
194
302
|
),
|
|
195
303
|
),
|
|
196
304
|
) !default;
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
border-radius: 0;
|
|
52
52
|
color: $text-primary;
|
|
53
53
|
font-family: font-family('mono');
|
|
54
|
-
font-weight:
|
|
54
|
+
font-weight: 400;
|
|
55
55
|
transition: background-color $duration-fast-01 motion(standard, productive),
|
|
56
56
|
outline $duration-fast-01 motion(standard, productive);
|
|
57
57
|
|
|
@@ -273,6 +273,11 @@ $progress-indicator-bar-width: 1px inset transparent !default;
|
|
|
273
273
|
margin-top: 0.625rem;
|
|
274
274
|
}
|
|
275
275
|
|
|
276
|
+
.#{$prefix}--progress.#{$prefix}--progress--vertical.#{$prefix}--skeleton
|
|
277
|
+
.#{$prefix}--progress-label {
|
|
278
|
+
margin-top: 0.0625rem;
|
|
279
|
+
}
|
|
280
|
+
|
|
276
281
|
// Vertical Variant
|
|
277
282
|
|
|
278
283
|
.#{$prefix}--progress--vertical {
|