@carbon/styles 1.37.0 → 1.38.0-rc.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 +2588 -2403
- package/css/styles.min.css +1 -1
- package/package.json +5 -5
- package/scss/components/accordion/_accordion.scss +47 -35
- package/scss/components/aspect-ratio/_aspect-ratio.scss +7 -4
- package/scss/components/breadcrumb/_breadcrumb.scss +26 -20
- package/scss/components/button/_button.scss +16 -11
- package/scss/components/button/_mixins.scss +12 -12
- package/scss/components/checkbox/_checkbox.scss +55 -40
- package/scss/components/code-snippet/_code-snippet.scss +74 -59
- package/scss/components/code-snippet/_mixins.scss +2 -2
- package/scss/components/combo-box/_combo-box.scss +2 -2
- package/scss/components/combo-button/_combo-button.scss +2 -2
- package/scss/components/contained-list/_contained-list.scss +41 -22
- package/scss/components/content-switcher/_content-switcher.scss +32 -32
- package/scss/components/data-table/_data-table.scss +150 -144
- package/scss/components/data-table/_mixins.scss +3 -3
- package/scss/components/data-table/action/_data-table-action.scss +83 -81
- package/scss/components/data-table/expandable/_data-table-expandable.scss +60 -60
- package/scss/components/data-table/skeleton/_data-table-skeleton.scss +10 -8
- package/scss/components/data-table/sort/_data-table-sort.scss +38 -38
- package/scss/components/date-picker/_date-picker.scss +21 -20
- package/scss/components/date-picker/_flatpickr.scss +51 -51
- package/scss/components/dropdown/_dropdown.scss +49 -49
- package/scss/components/file-uploader/_file-uploader.scss +37 -37
- package/scss/components/fluid-combo-box/_fluid-combo-box.scss +4 -4
- package/scss/components/fluid-date-picker/_fluid-date-picker.scss +54 -54
- package/scss/components/fluid-list-box/_fluid-list-box.scss +33 -33
- package/scss/components/fluid-multiselect/_fluid-multiselect.scss +2 -2
- package/scss/components/fluid-number-input/_fluid-number-input.scss +30 -30
- package/scss/components/fluid-search/_fluid-search.scss +17 -17
- package/scss/components/fluid-select/_fluid-select.scss +17 -17
- package/scss/components/fluid-text-area/_fluid-text-area.scss +21 -21
- package/scss/components/fluid-text-input/_fluid-text-input.scss +26 -26
- package/scss/components/fluid-time-picker/_fluid-time-picker.scss +23 -23
- package/scss/components/form/_form.scss +16 -15
- package/scss/components/inline-loading/_inline-loading.scss +9 -9
- package/scss/components/link/_link.scss +1 -1
- package/scss/components/list/_list.scss +7 -7
- package/scss/components/list-box/_list-box.scss +109 -107
- package/scss/components/loading/_loading.scss +10 -9
- package/scss/components/menu/_menu.scss +7 -7
- package/scss/components/menu-button/_menu-button.scss +1 -1
- package/scss/components/modal/_modal.scss +72 -72
- package/scss/components/multiselect/_multiselect.scss +11 -11
- package/scss/components/notification/_actionable-notification.scss +37 -39
- package/scss/components/notification/_inline-notification.scss +26 -26
- package/scss/components/notification/_mixins.scss +3 -3
- package/scss/components/notification/_toast-notification.scss +16 -18
- package/scss/components/number-input/_number-input.scss +70 -70
- package/scss/components/overflow-menu/_overflow-menu.scss +50 -50
- package/scss/components/pagination/_pagination.scss +46 -34
- package/scss/components/pagination/_unstable_pagination.scss +26 -24
- package/scss/components/pagination-nav/_mixins.scss +6 -6
- package/scss/components/pagination-nav/_pagination-nav.scss +16 -11
- package/scss/components/popover/_popover.scss +201 -63
- package/scss/components/progress-bar/_progress-bar.scss +33 -11
- package/scss/components/progress-indicator/_progress-indicator.scss +46 -42
- package/scss/components/radio-button/_radio-button.scss +24 -23
- package/scss/components/search/_search.scss +35 -34
- package/scss/components/select/_select.scss +31 -29
- package/scss/components/skeleton-styles/_skeleton-styles.scss +10 -8
- package/scss/components/slider/_slider.scss +28 -28
- package/scss/components/structured-list/_mixins.scss +4 -4
- package/scss/components/structured-list/_structured-list.scss +16 -16
- package/scss/components/tabs/_tabs.scss +50 -50
- package/scss/components/tag/_tag.scss +22 -20
- package/scss/components/text-area/_text-area.scss +17 -15
- package/scss/components/text-input/_text-input.scss +43 -41
- package/scss/components/tile/_tile.scss +11 -11
- package/scss/components/time-picker/_time-picker.scss +17 -17
- package/scss/components/toggle/_toggle.scss +37 -24
- package/scss/components/toggletip/_toggletip.scss +3 -2
- package/scss/components/tooltip/_tooltip.scss +7 -5
- package/scss/components/treeview/_treeview.scss +27 -27
- package/scss/components/ui-shell/content/_content.scss +3 -3
- package/scss/components/ui-shell/header/_header.scss +47 -47
- package/scss/components/ui-shell/header-panel/_header-panel.scss +7 -7
- package/scss/components/ui-shell/side-nav/_side-nav.scss +65 -65
- package/scss/components/ui-shell/switcher/_switcher.scss +6 -6
- package/scss/utilities/_button-reset.scss +1 -1
- package/scss/utilities/_skeleton.scss +4 -4
- package/scss/utilities/_text-overflow.scss +1 -1
- package/scss/utilities/_text-truncate.scss +2 -2
- package/scss/utilities/_tooltip.scss +44 -46
- package/scss/utilities/_visually-hidden.scss +4 -4
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
$max-height: convert.to-rem(300px)
|
|
20
20
|
) {
|
|
21
21
|
.#{$prefix}--data-table--max-width {
|
|
22
|
-
max-
|
|
22
|
+
max-inline-size: $max-width;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.#{$prefix}--data-table--sticky-header {
|
|
26
|
-
max-
|
|
26
|
+
max-block-size: $max-height;
|
|
27
27
|
|
|
28
28
|
@if $min-width {
|
|
29
29
|
th:not(.#{$prefix}--table-column-checkbox):not(
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
td:not(.#{$prefix}--table-column-checkbox):not(
|
|
33
33
|
.#{$prefix}--table-column-menu
|
|
34
34
|
):not(.#{$prefix}--table-expand):not(.#{$prefix}--table-column-icon) {
|
|
35
|
-
min-
|
|
35
|
+
min-inline-size: $min-width;
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -29,16 +29,16 @@
|
|
|
29
29
|
position: relative;
|
|
30
30
|
z-index: 1;
|
|
31
31
|
display: flex;
|
|
32
|
-
width: 100%;
|
|
33
|
-
min-height: $spacing-09;
|
|
34
32
|
background-color: $layer;
|
|
33
|
+
inline-size: 100%;
|
|
34
|
+
min-block-size: $spacing-09;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.#{$prefix}--toolbar-content {
|
|
38
38
|
display: flex;
|
|
39
|
-
width: 100%;
|
|
40
|
-
height: $spacing-09;
|
|
41
39
|
justify-content: flex-end;
|
|
40
|
+
block-size: $spacing-09;
|
|
41
|
+
inline-size: 100%;
|
|
42
42
|
transform: translate3d(0, 0, 0);
|
|
43
43
|
transition: transform $duration-fast-02 motion(standard, productive),
|
|
44
44
|
clip-path $duration-fast-02 motion(standard, productive);
|
|
@@ -49,15 +49,15 @@
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
.#{$prefix}--toolbar-content .#{$prefix}--search .#{$prefix}--search-input {
|
|
52
|
-
height: 3rem;
|
|
53
52
|
padding: 0 3rem;
|
|
54
53
|
// For toolbar animation with (esp.) persistent search box
|
|
55
54
|
background-color: transparent;
|
|
55
|
+
block-size: 3rem;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
.#{$prefix}--toolbar-content .#{$prefix}--overflow-menu {
|
|
59
|
-
|
|
60
|
-
|
|
59
|
+
block-size: 3rem;
|
|
60
|
+
inline-size: 3rem;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
//-------------------------------------------------
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
//-------------------------------------------------
|
|
76
76
|
.#{$prefix}--toolbar-search-container-expandable {
|
|
77
77
|
position: relative;
|
|
78
|
-
|
|
79
|
-
height: $spacing-09;
|
|
78
|
+
block-size: $spacing-09;
|
|
80
79
|
box-shadow: none;
|
|
81
80
|
cursor: pointer;
|
|
81
|
+
inline-size: $spacing-09;
|
|
82
82
|
transition: width $transition-expansion $standard-easing,
|
|
83
83
|
background-color $duration-fast-02 motion(entrance, productive);
|
|
84
84
|
|
|
@@ -88,11 +88,11 @@
|
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
.#{$prefix}--search.#{$prefix}--toolbar-search-container-expandable {
|
|
91
|
-
|
|
91
|
+
inline-size: 3rem;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
.#{$prefix}--toolbar-search-container-expandable .#{$prefix}--search-input {
|
|
95
|
-
|
|
95
|
+
block-size: 100%;
|
|
96
96
|
cursor: pointer;
|
|
97
97
|
opacity: 0;
|
|
98
98
|
}
|
|
@@ -115,13 +115,13 @@
|
|
|
115
115
|
|
|
116
116
|
.#{$prefix}--toolbar-search-container-expandable.#{$prefix}--search
|
|
117
117
|
.#{$prefix}--search-close {
|
|
118
|
-
|
|
119
|
-
|
|
118
|
+
block-size: $spacing-09;
|
|
119
|
+
inline-size: $spacing-09;
|
|
120
120
|
|
|
121
121
|
&::before {
|
|
122
|
-
top: convert.to-rem(2px);
|
|
123
|
-
height: calc(100% - #{convert.to-rem(4px)});
|
|
124
122
|
background-color: $field-hover;
|
|
123
|
+
block-size: calc(100% - #{convert.to-rem(4px)});
|
|
124
|
+
inset-block-start: convert.to-rem(2px);
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
|
|
@@ -137,14 +137,14 @@
|
|
|
137
137
|
.#{$prefix}--table-toolbar
|
|
138
138
|
.#{$prefix}--search--lg
|
|
139
139
|
.#{$prefix}--search-magnifier-icon {
|
|
140
|
-
|
|
140
|
+
inset-inline-start: 0;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
// lg persistent icon spacing
|
|
144
144
|
.#{$prefix}--table-toolbar:not(.#{$prefix}--table-toolbar--sm)
|
|
145
145
|
.#{$prefix}--toolbar-search-container-persistent.#{$prefix}--search--lg
|
|
146
146
|
.#{$prefix}--search-magnifier-icon {
|
|
147
|
-
|
|
147
|
+
inset-inline-start: 1rem;
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
// sm expandable icon spacing
|
|
@@ -153,27 +153,27 @@
|
|
|
153
153
|
.#{$prefix}--toolbar-search-container-active
|
|
154
154
|
):not(.#{$prefix}--toolbar-search-container-persistent)
|
|
155
155
|
.#{$prefix}--search-magnifier-icon {
|
|
156
|
-
|
|
156
|
+
inset-inline-start: 0;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
.#{$prefix}--table-toolbar.#{$prefix}--table-toolbar--sm
|
|
160
160
|
.#{$prefix}--search--sm.#{$prefix}--toolbar-search-container-active
|
|
161
161
|
.#{$prefix}--search-magnifier-icon {
|
|
162
|
-
|
|
162
|
+
inset-inline-start: 0.5rem;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
165
|
// sm persistent icon spacing
|
|
166
166
|
.#{$prefix}--table-toolbar
|
|
167
167
|
.#{$prefix}--toolbar-search-container-persistent.#{$prefix}--search--sm
|
|
168
168
|
.#{$prefix}--search-magnifier-icon {
|
|
169
|
-
|
|
169
|
+
inset-inline-start: 0.5rem;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
.#{$prefix}--toolbar-search-container-expandable
|
|
173
173
|
.#{$prefix}--search-magnifier-icon {
|
|
174
|
-
width: $spacing-09;
|
|
175
|
-
height: $spacing-09;
|
|
176
174
|
padding: $spacing-05;
|
|
175
|
+
block-size: $spacing-09;
|
|
176
|
+
inline-size: $spacing-09;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
.#{$prefix}--toolbar-search-container-expandable.#{$prefix}--search--disabled
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
//-------------------------------------------------
|
|
200
200
|
|
|
201
201
|
.#{$prefix}--toolbar-search-container-active.#{$prefix}--search {
|
|
202
|
-
|
|
202
|
+
inline-size: 100%;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
.#{$prefix}--toolbar-search-container-active .#{$prefix}--search-input {
|
|
@@ -250,10 +250,10 @@
|
|
|
250
250
|
@include button-reset.reset;
|
|
251
251
|
|
|
252
252
|
display: flex;
|
|
253
|
-
width: $spacing-09;
|
|
254
|
-
height: $spacing-09;
|
|
255
253
|
padding: $spacing-05;
|
|
254
|
+
block-size: $spacing-09;
|
|
256
255
|
cursor: pointer;
|
|
256
|
+
inline-size: $spacing-09;
|
|
257
257
|
transition: background $duration-fast-02 motion(entrance, productive);
|
|
258
258
|
}
|
|
259
259
|
|
|
@@ -262,9 +262,9 @@
|
|
|
262
262
|
@include button-reset.reset;
|
|
263
263
|
|
|
264
264
|
display: flex;
|
|
265
|
-
|
|
266
|
-
height: $spacing-09;
|
|
265
|
+
block-size: $spacing-09;
|
|
267
266
|
cursor: pointer;
|
|
267
|
+
inline-size: $spacing-09;
|
|
268
268
|
transition: background $duration-fast-02 motion(entrance, productive);
|
|
269
269
|
}
|
|
270
270
|
|
|
@@ -296,23 +296,23 @@
|
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
.#{$prefix}--toolbar-action ~ .#{$prefix}--btn {
|
|
299
|
-
max-width: none;
|
|
300
299
|
margin: 0;
|
|
300
|
+
max-inline-size: none;
|
|
301
301
|
white-space: nowrap;
|
|
302
302
|
}
|
|
303
303
|
|
|
304
304
|
.#{$prefix}--overflow-menu--data-table {
|
|
305
|
-
|
|
305
|
+
block-size: $spacing-09;
|
|
306
306
|
}
|
|
307
307
|
|
|
308
308
|
//-------------------------------------------------
|
|
309
309
|
//TOOLBAR BUTTON ICONS
|
|
310
310
|
//-------------------------------------------------
|
|
311
311
|
.#{$prefix}--toolbar-action__icon {
|
|
312
|
-
|
|
313
|
-
max-width: $spacing-05;
|
|
314
|
-
height: $spacing-05;
|
|
312
|
+
block-size: $spacing-05;
|
|
315
313
|
fill: $icon-primary;
|
|
314
|
+
inline-size: auto;
|
|
315
|
+
max-inline-size: $spacing-05;
|
|
316
316
|
}
|
|
317
317
|
|
|
318
318
|
//-------------------------------------------------
|
|
@@ -320,15 +320,15 @@
|
|
|
320
320
|
//-------------------------------------------------
|
|
321
321
|
.#{$prefix}--toolbar-search-container-persistent {
|
|
322
322
|
position: relative;
|
|
323
|
-
|
|
324
|
-
|
|
323
|
+
block-size: $spacing-09;
|
|
324
|
+
inline-size: 100%;
|
|
325
325
|
opacity: 1;
|
|
326
326
|
}
|
|
327
327
|
|
|
328
328
|
.#{$prefix}--toolbar-search-container-persistent
|
|
329
329
|
+ .#{$prefix}--toolbar-content {
|
|
330
330
|
position: relative;
|
|
331
|
-
|
|
331
|
+
inline-size: auto;
|
|
332
332
|
}
|
|
333
333
|
|
|
334
334
|
.#{$prefix}--toolbar-search-container-persistent .#{$prefix}--search {
|
|
@@ -337,13 +337,13 @@
|
|
|
337
337
|
|
|
338
338
|
.#{$prefix}--toolbar-search-container-persistent
|
|
339
339
|
.#{$prefix}--search-magnifier-icon {
|
|
340
|
-
|
|
340
|
+
inset-inline-start: $spacing-05;
|
|
341
341
|
}
|
|
342
342
|
|
|
343
343
|
.#{$prefix}--toolbar-search-container-persistent .#{$prefix}--search-input {
|
|
344
|
-
height: $spacing-09;
|
|
345
344
|
padding: 0 $spacing-09;
|
|
346
345
|
border: none;
|
|
346
|
+
block-size: $spacing-09;
|
|
347
347
|
}
|
|
348
348
|
|
|
349
349
|
.#{$prefix}--toolbar-search-container-persistent
|
|
@@ -364,8 +364,8 @@
|
|
|
364
364
|
}
|
|
365
365
|
|
|
366
366
|
.#{$prefix}--toolbar-search-container-persistent .#{$prefix}--search-close {
|
|
367
|
-
|
|
368
|
-
|
|
367
|
+
block-size: $spacing-09;
|
|
368
|
+
inline-size: $spacing-09;
|
|
369
369
|
}
|
|
370
370
|
|
|
371
371
|
.#{$prefix}--batch-actions--active ~ .#{$prefix}--toolbar-search-container,
|
|
@@ -381,14 +381,14 @@
|
|
|
381
381
|
//-------------------------------------------------
|
|
382
382
|
.#{$prefix}--batch-actions {
|
|
383
383
|
position: absolute;
|
|
384
|
-
right: 0;
|
|
385
|
-
bottom: 0;
|
|
386
|
-
left: 0;
|
|
387
384
|
display: flex;
|
|
388
385
|
align-items: center;
|
|
389
386
|
justify-content: space-between;
|
|
390
387
|
background-color: $background-brand;
|
|
391
388
|
clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
|
|
389
|
+
inset-block-end: 0;
|
|
390
|
+
inset-inline-end: 0;
|
|
391
|
+
inset-inline-start: 0;
|
|
392
392
|
opacity: 0;
|
|
393
393
|
pointer-events: none;
|
|
394
394
|
transform: translate3d(0, 48px, 0);
|
|
@@ -416,10 +416,11 @@
|
|
|
416
416
|
align-items: center;
|
|
417
417
|
}
|
|
418
418
|
|
|
419
|
-
.#{$prefix}--action-list .#{$prefix}--btn
|
|
420
|
-
|
|
421
|
-
padding-left: $spacing-05;
|
|
419
|
+
.#{$prefix}--action-list .#{$prefix}--btn,
|
|
420
|
+
.#{$prefix}--batch-summary .#{$prefix}--btn {
|
|
422
421
|
color: $text-on-color;
|
|
422
|
+
padding-inline-end: $spacing-05;
|
|
423
|
+
padding-inline-start: $spacing-05;
|
|
423
424
|
white-space: nowrap;
|
|
424
425
|
}
|
|
425
426
|
|
|
@@ -432,8 +433,8 @@
|
|
|
432
433
|
|
|
433
434
|
.#{$prefix}--action-list .#{$prefix}--btn .#{$prefix}--btn__icon {
|
|
434
435
|
position: static;
|
|
435
|
-
margin-left: $spacing-03;
|
|
436
436
|
fill: $icon-on-color;
|
|
437
|
+
margin-inline-start: $spacing-03;
|
|
437
438
|
}
|
|
438
439
|
|
|
439
440
|
.#{$prefix}--action-list .#{$prefix}--btn .#{$prefix}--btn__icon .st0 {
|
|
@@ -453,7 +454,8 @@
|
|
|
453
454
|
display: none;
|
|
454
455
|
}
|
|
455
456
|
|
|
456
|
-
.#{$prefix}--action-list .#{$prefix}--btn--primary:focus
|
|
457
|
+
.#{$prefix}--action-list .#{$prefix}--btn--primary:focus,
|
|
458
|
+
.#{$prefix}--batch-summary .#{$prefix}--btn--primary:focus {
|
|
457
459
|
outline: 2px solid $layer;
|
|
458
460
|
outline-offset: convert.to-rem(-2px);
|
|
459
461
|
}
|
|
@@ -470,15 +472,15 @@
|
|
|
470
472
|
|
|
471
473
|
.#{$prefix}--btn--primary.#{$prefix}--batch-summary__cancel::before {
|
|
472
474
|
position: absolute;
|
|
473
|
-
//visually 16px spacing is 1px too low
|
|
474
|
-
top: convert.to-rem(15px);
|
|
475
|
-
left: 0;
|
|
476
475
|
display: block;
|
|
477
|
-
width: convert.to-rem(1px);
|
|
478
|
-
height: $spacing-05;
|
|
479
476
|
border: none;
|
|
480
477
|
background-color: $text-on-color;
|
|
478
|
+
block-size: $spacing-05;
|
|
481
479
|
content: '';
|
|
480
|
+
inline-size: convert.to-rem(1px);
|
|
481
|
+
//visually 16px spacing is 1px too low
|
|
482
|
+
inset-block-start: convert.to-rem(15px);
|
|
483
|
+
inset-inline-start: 0;
|
|
482
484
|
opacity: 1;
|
|
483
485
|
transition: opacity $duration-fast-02 motion(standard, productive);
|
|
484
486
|
}
|
|
@@ -492,14 +494,14 @@
|
|
|
492
494
|
.#{$prefix}--batch-summary {
|
|
493
495
|
position: sticky;
|
|
494
496
|
z-index: 100000;
|
|
495
|
-
left: 0;
|
|
496
497
|
display: flex;
|
|
497
|
-
min-height: 3rem;
|
|
498
498
|
align-items: center;
|
|
499
499
|
padding: 0 $spacing-05;
|
|
500
500
|
background-color: $background-brand;
|
|
501
501
|
|
|
502
502
|
color: $text-on-color;
|
|
503
|
+
inset-inline-start: 0;
|
|
504
|
+
min-block-size: 3rem;
|
|
503
505
|
}
|
|
504
506
|
|
|
505
507
|
.#{$prefix}--batch-summary__scroll {
|
|
@@ -511,7 +513,7 @@
|
|
|
511
513
|
}
|
|
512
514
|
|
|
513
515
|
.#{$prefix}--batch-summary__divider {
|
|
514
|
-
padding-
|
|
516
|
+
padding-inline-start: $spacing-03;
|
|
515
517
|
}
|
|
516
518
|
|
|
517
519
|
//-------------------------------------------------
|
|
@@ -519,41 +521,41 @@
|
|
|
519
521
|
//-------------------------------------------------
|
|
520
522
|
|
|
521
523
|
.#{$prefix}--table-toolbar--sm {
|
|
522
|
-
|
|
523
|
-
min-
|
|
524
|
+
block-size: convert.to-rem(32px);
|
|
525
|
+
min-block-size: convert.to-rem(32px);
|
|
524
526
|
|
|
525
527
|
.#{$prefix}--toolbar-search-container-expandable,
|
|
526
528
|
.#{$prefix}--toolbar-search-container-persistent {
|
|
527
|
-
|
|
529
|
+
block-size: convert.to-rem(32px);
|
|
528
530
|
}
|
|
529
531
|
|
|
530
532
|
.#{$prefix}--toolbar-search-container-expandable .#{$prefix}--search-input,
|
|
531
533
|
.#{$prefix}--toolbar-search-container-persistent .#{$prefix}--search-input {
|
|
532
|
-
|
|
534
|
+
block-size: convert.to-rem(32px);
|
|
533
535
|
}
|
|
534
536
|
|
|
535
537
|
.#{$prefix}--toolbar-search-container-expandable .#{$prefix}--search-close,
|
|
536
538
|
.#{$prefix}--toolbar-search-container-persistent .#{$prefix}--search-close {
|
|
537
|
-
|
|
538
|
-
|
|
539
|
+
block-size: convert.to-rem(32px);
|
|
540
|
+
inline-size: convert.to-rem(32px);
|
|
539
541
|
}
|
|
540
542
|
|
|
541
543
|
.#{$prefix}--toolbar-search-container-expandable
|
|
542
544
|
.#{$prefix}--search-magnifier-icon,
|
|
543
545
|
.#{$prefix}--toolbar-search-container-persistent
|
|
544
546
|
.#{$prefix}--search-magnifier-icon {
|
|
545
|
-
width: convert.to-rem(32px);
|
|
546
|
-
height: convert.to-rem(32px);
|
|
547
547
|
padding: $spacing-03;
|
|
548
|
+
block-size: convert.to-rem(32px);
|
|
549
|
+
inline-size: convert.to-rem(32px);
|
|
548
550
|
}
|
|
549
551
|
|
|
550
552
|
.#{$prefix}--toolbar-action.#{$prefix}--toolbar-search-container-persistent {
|
|
551
|
-
|
|
553
|
+
inline-size: 100%;
|
|
552
554
|
}
|
|
553
555
|
|
|
554
556
|
//hidden
|
|
555
557
|
.#{$prefix}--toolbar-search-container-expandable {
|
|
556
|
-
|
|
558
|
+
inline-size: convert.to-rem(32px);
|
|
557
559
|
}
|
|
558
560
|
|
|
559
561
|
.#{$prefix}--toolbar-search-container-expandable
|
|
@@ -598,19 +600,19 @@
|
|
|
598
600
|
}
|
|
599
601
|
|
|
600
602
|
.#{$prefix}--overflow-menu.#{$prefix}--toolbar-action {
|
|
601
|
-
|
|
603
|
+
block-size: convert.to-rem(32px);
|
|
604
|
+
inline-size: convert.to-rem(32px);
|
|
602
605
|
//:after element is 2rem but w/o this trigger button is for some reason 28px
|
|
603
|
-
min-
|
|
604
|
-
height: convert.to-rem(32px);
|
|
606
|
+
min-inline-size: convert.to-rem(32px);
|
|
605
607
|
}
|
|
606
608
|
|
|
607
609
|
.#{$prefix}--toolbar-content {
|
|
608
|
-
|
|
610
|
+
block-size: convert.to-rem(32px);
|
|
609
611
|
}
|
|
610
612
|
|
|
611
613
|
.#{$prefix}--toolbar-content .#{$prefix}--overflow-menu {
|
|
612
|
-
|
|
613
|
-
|
|
614
|
+
block-size: 2rem;
|
|
615
|
+
inline-size: 2rem;
|
|
614
616
|
}
|
|
615
617
|
}
|
|
616
618
|
|
|
@@ -625,35 +627,35 @@
|
|
|
625
627
|
.#{$prefix}--table-toolbar--sm
|
|
626
628
|
.#{$prefix}--batch-actions
|
|
627
629
|
.#{$prefix}--action-list {
|
|
628
|
-
|
|
630
|
+
block-size: convert.to-rem(32px);
|
|
629
631
|
}
|
|
630
632
|
|
|
631
633
|
.#{$prefix}--table-toolbar--sm .#{$prefix}--toolbar-action {
|
|
632
|
-
width: convert.to-rem(32px);
|
|
633
|
-
height: convert.to-rem(32px);
|
|
634
634
|
padding: $spacing-03 0;
|
|
635
|
+
block-size: convert.to-rem(32px);
|
|
636
|
+
inline-size: convert.to-rem(32px);
|
|
635
637
|
}
|
|
636
638
|
|
|
637
639
|
.#{$prefix}--table-toolbar--sm .#{$prefix}--btn--primary {
|
|
638
|
-
|
|
639
|
-
min-
|
|
640
|
-
padding-
|
|
641
|
-
padding-
|
|
640
|
+
block-size: convert.to-rem(32px);
|
|
641
|
+
min-block-size: auto;
|
|
642
|
+
padding-block-end: 0.375rem;
|
|
643
|
+
padding-block-start: 0.375rem;
|
|
642
644
|
}
|
|
643
645
|
|
|
644
646
|
.#{$prefix}--table-toolbar--sm
|
|
645
647
|
.#{$prefix}--btn--primary.#{$prefix}--batch-summary__cancel::before {
|
|
646
|
-
|
|
648
|
+
inset-block-start: convert.to-rem(8px);
|
|
647
649
|
}
|
|
648
650
|
|
|
649
651
|
.#{$prefix}--table-toolbar--sm
|
|
650
652
|
.#{$prefix}--toolbar-action
|
|
651
653
|
~ .#{$prefix}--btn {
|
|
652
654
|
overflow: hidden;
|
|
653
|
-
|
|
655
|
+
block-size: convert.to-rem(32px);
|
|
654
656
|
}
|
|
655
657
|
|
|
656
658
|
.#{$prefix}--table-toolbar--sm .#{$prefix}--batch-summary {
|
|
657
|
-
min-
|
|
659
|
+
min-block-size: 2rem;
|
|
658
660
|
}
|
|
659
661
|
}
|