@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
|
@@ -77,6 +77,7 @@
|
|
|
77
77
|
--pf-v6-c-table__expandable-row-content--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
78
78
|
--pf-v6-c-table__expandable-row-content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
79
79
|
--pf-v6-c-table__expandable-row-content--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
80
|
+
--pf-v6-c-table__expandable-row-content--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
80
81
|
--pf-v6-c-table__control-row--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
81
82
|
--pf-v6-c-table__control-row--BorderBlockEndWidth: var(--pf-t--global--border--width--divider--default);
|
|
82
83
|
--pf-v6-c-table__control-row__tbody--BorderBlockEndColor: var(--pf-t--global--border--color--default);
|
|
@@ -405,6 +406,9 @@
|
|
|
405
406
|
background-color: var(--pf-v6-c-table__tbody--m-selected--BackgroundColor);
|
|
406
407
|
outline-offset: var(--pf-v6-c-table__tbody--m-selected--OutlineOffset);
|
|
407
408
|
}
|
|
409
|
+
.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody).pf-m-selected .pf-v6-c-table__tr.pf-m-expanded:not(.pf-v6-c-table__expandable-row) {
|
|
410
|
+
border: none;
|
|
411
|
+
}
|
|
408
412
|
.pf-v6-c-table.pf-m-drag-over {
|
|
409
413
|
overflow-anchor: none;
|
|
410
414
|
}
|
|
@@ -702,6 +706,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
702
706
|
padding-block-end: var(--pf-v6-c-table__expandable-row-content--PaddingBlockEnd);
|
|
703
707
|
padding-inline-start: var(--pf-v6-c-table__expandable-row-content--PaddingInlineStart);
|
|
704
708
|
padding-inline-end: var(--pf-v6-c-table__expandable-row-content--PaddingInlineEnd);
|
|
709
|
+
background-color: var(--pf-v6-c-table__expandable-row-content--BackgroundColor);
|
|
705
710
|
border-radius: var(--pf-v6-c-table__expandable-row-content--BorderRadius);
|
|
706
711
|
}
|
|
707
712
|
.pf-v6-c-table__expandable-row.pf-m-expanded {
|
|
@@ -124,6 +124,7 @@
|
|
|
124
124
|
--#{$table}__expandable-row-content--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
125
125
|
--#{$table}__expandable-row-content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
126
126
|
--#{$table}__expandable-row-content--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
127
|
+
--#{$table}__expandable-row-content--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
127
128
|
|
|
128
129
|
// * Table control row
|
|
129
130
|
--#{$table}__control-row--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
@@ -572,6 +573,10 @@
|
|
|
572
573
|
&.pf-m-selected {
|
|
573
574
|
background-color: var(--#{$table}__tbody--m-selected--BackgroundColor);
|
|
574
575
|
outline-offset: var(--#{$table}__tbody--m-selected--OutlineOffset);
|
|
576
|
+
|
|
577
|
+
.#{$table}__tr.pf-m-expanded:not(.#{$table}__expandable-row) {
|
|
578
|
+
border: none;
|
|
579
|
+
}
|
|
575
580
|
}
|
|
576
581
|
}
|
|
577
582
|
|
|
@@ -959,6 +964,7 @@
|
|
|
959
964
|
padding-block-end: var(--#{$table}__expandable-row-content--PaddingBlockEnd);
|
|
960
965
|
padding-inline-start: var(--#{$table}__expandable-row-content--PaddingInlineStart);
|
|
961
966
|
padding-inline-end: var(--#{$table}__expandable-row-content--PaddingInlineEnd);
|
|
967
|
+
background-color: var(--#{$table}__expandable-row-content--BackgroundColor);
|
|
962
968
|
border-radius: var(--#{$table}__expandable-row-content--BorderRadius);
|
|
963
969
|
}
|
|
964
970
|
|