@patternfly/patternfly 6.0.0-alpha.135 → 6.0.0-alpha.137
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/components/Table/table.css +5 -0
- package/components/Table/table.scss +6 -0
- package/components/Toolbar/toolbar.css +159 -55
- package/components/Toolbar/toolbar.scss +7 -2
- package/components/_index.css +164 -55
- package/docs/components/Table/examples/Table.md +6 -8
- package/docs/components/Toolbar/examples/Toolbar.md +6 -3
- package/package.json +1 -1
- package/patternfly-no-globals.css +164 -55
- package/patternfly.css +164 -55
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -74,15 +74,19 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
74
74
|
flex-wrap: wrap;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
+
.#{$toolbar}__content {
|
|
78
|
+
@include pf-v6-hidden-visible(grid);
|
|
79
|
+
}
|
|
80
|
+
|
|
77
81
|
// - Toolbar - Toolbar content
|
|
78
82
|
.#{$toolbar},
|
|
79
83
|
.#{$toolbar}__content {
|
|
80
84
|
position: relative;
|
|
81
|
-
display: grid;
|
|
82
85
|
}
|
|
83
86
|
|
|
84
87
|
// - Toolbar
|
|
85
88
|
.#{$toolbar} {
|
|
89
|
+
display: grid;
|
|
86
90
|
width: var(--#{$toolbar}--Width, auto);
|
|
87
91
|
font-size: var(--#{$toolbar}--FontSize);
|
|
88
92
|
line-height: var(--#{$toolbar}--LineHeight);
|
|
@@ -355,6 +359,7 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
355
359
|
|
|
356
360
|
@each $gap, $gap-value in $pf-v6-c-toolbar--spacer-map {
|
|
357
361
|
&.pf-m-gap-#{$gap}#{$breakpoint-name} {
|
|
362
|
+
row-gap: #{$gap-value};
|
|
358
363
|
column-gap: #{$gap-value};
|
|
359
364
|
}
|
|
360
365
|
}
|
|
@@ -366,7 +371,7 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
366
371
|
}
|
|
367
372
|
|
|
368
373
|
&.pf-m-row-gap-#{$spacer}#{$breakpoint-name} {
|
|
369
|
-
|
|
374
|
+
row-gap: #{$spacer-value};
|
|
370
375
|
}
|
|
371
376
|
|
|
372
377
|
&.pf-m-margin-inline-start#{$spacer}#{$breakpoint-name} {
|