@patternfly/patternfly 6.0.0-alpha.88 → 6.0.0-alpha.89
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/Menu/menu.css +4 -1
- package/components/Menu/menu.scss +6 -1
- package/components/Table/table-tree-view.css +5 -0
- package/components/Table/table-tree-view.scss +9 -0
- package/components/Table/table.css +111 -190
- package/components/Table/table.scss +155 -268
- package/package.json +1 -1
- package/patternfly-no-globals.css +120 -191
- package/patternfly-theme-dark-unversioned.css +120 -191
- package/patternfly.css +120 -191
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/package.json
CHANGED
|
@@ -20010,9 +20010,12 @@ ul.pf-v5-c-list {
|
|
|
20010
20010
|
--pf-v5-c-menu--m-drilldown__content--TransitionDuration--height: var(--pf-v5-global--TransitionDuration);
|
|
20011
20011
|
--pf-v5-c-menu--m-drilldown__content--TransitionDuration--transform: var(--pf-v5-global--TransitionDuration);
|
|
20012
20012
|
--pf-v5-c-menu--m-drilldown__content--Transition: transform var(--pf-v5-c-menu--m-drilldown__content--TransitionDuration--transform), height var(--pf-v5-c-menu--m-drilldown__content--TransitionDuration--height);
|
|
20013
|
+
--pf-v5-c-menu--m-drilldown--c-menu--Top: 0;
|
|
20014
|
+
--pf-v5-c-menu--m-drilldown--c-menu--TransitionDuration--transform: var(--pf-v5-global--TransitionDuration);
|
|
20015
|
+
--pf-v5-c-menu--m-drilldown--c-menu--Transition: transform var(--pf-v5-c-menu--m-drilldown--c-menu--TransitionDuration--transform);
|
|
20013
20016
|
--pf-v5-c-menu--m-drilldown__list--TransitionDuration--transform: var(--pf-v5-global--TransitionDuration);
|
|
20014
20017
|
--pf-v5-c-menu--m-drilldown__list--Transition: transform var(--pf-v5-c-menu--m-drilldown__list--TransitionDuration--transform);
|
|
20015
|
-
--pf-v5-c-menu--m-drilled-in--c-menu__list-item--m-current-path--c-menu--ZIndex: var(--pf-t--global--
|
|
20018
|
+
--pf-v5-c-menu--m-drilled-in--c-menu__list-item--m-current-path--c-menu--ZIndex: var(--pf-t--global--Zindex--xs);
|
|
20016
20019
|
}
|
|
20017
20020
|
|
|
20018
20021
|
.pf-v5-c-menu,
|
|
@@ -27902,7 +27905,8 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
27902
27905
|
}
|
|
27903
27906
|
}
|
|
27904
27907
|
|
|
27905
|
-
|
|
27908
|
+
:where(:root),
|
|
27909
|
+
:where(.pf-v5-c-table) {
|
|
27906
27910
|
--pf-v5-c-table--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
27907
27911
|
--pf-v5-c-table--BorderColor: var(--pf-t--global--border--color--default);
|
|
27908
27912
|
--pf-v5-c-table--border-width--base: var(--pf-t--global--border--width--divider--default);
|
|
@@ -27912,21 +27916,22 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
27912
27916
|
--pf-v5-c-table__caption--PaddingRight: var(--pf-t--global--spacer--lg);
|
|
27913
27917
|
--pf-v5-c-table__caption--PaddingBottom: var(--pf-t--global--spacer--md);
|
|
27914
27918
|
--pf-v5-c-table__caption--PaddingLeft: var(--pf-t--global--spacer--lg);
|
|
27915
|
-
--pf-v5-c-table__thead--cell--FontSize: var(--pf-t--global--font--size--body--
|
|
27919
|
+
--pf-v5-c-table__thead--cell--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
27916
27920
|
--pf-v5-c-table__thead--cell--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
27917
|
-
--pf-v5-c-table__tbody--cell--PaddingTop: var(--pf-
|
|
27918
|
-
--pf-v5-c-table__tbody--cell--PaddingBottom: var(--pf-
|
|
27921
|
+
--pf-v5-c-table__tbody--cell--PaddingTop: var(--pf-v5-c-table--cell--Padding--base);
|
|
27922
|
+
--pf-v5-c-table__tbody--cell--PaddingBottom: var(--pf-v5-c-table--cell--Padding--base);
|
|
27923
|
+
--pf-v5-c-table__tbody--cell--FontSize: var(--pf-t--global--font--size--body--default);
|
|
27919
27924
|
--pf-v5-c-table__tr--BoxShadow--top--base: 0 -0.1875rem 0.25rem -0.125rem rgba(3,3,3,.08);
|
|
27920
27925
|
--pf-v5-c-table--cell--Padding--base: var(--pf-t--global--spacer--md);
|
|
27921
27926
|
--pf-v5-c-table--cell--FontSize: var(--pf-t--global--font--size--body--default);
|
|
27922
27927
|
--pf-v5-c-table--cell--FontWeight: var(--pf-t--global--font--weight--body);
|
|
27928
|
+
--pf-v5-c-table--cell--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
27923
27929
|
--pf-v5-c-table--cell--Color: var(--pf-t--global--text--color--regular);
|
|
27924
27930
|
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table--cell--Padding--base);
|
|
27925
27931
|
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table--cell--Padding--base);
|
|
27926
27932
|
--pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table--cell--Padding--base);
|
|
27927
27933
|
--pf-v5-c-table--cell--PaddingLeft: var(--pf-v5-c-table--cell--Padding--base);
|
|
27928
|
-
--pf-v5-c-table--cell--first-last-child--
|
|
27929
|
-
--pf-v5-c-table--cell--first-last-child--PaddingRight: var(--pf-t--global--spacer--md);
|
|
27934
|
+
--pf-v5-c-table--cell--first-last-child--PaddingInline: var(--pf-t--global--spacer--sm);
|
|
27930
27935
|
--pf-v5-c-table__tr--m-first-cell-offset-reset--cell--PaddingLeft: var(--pf-v5-c-table--cell--Padding--base);
|
|
27931
27936
|
--pf-v5-c-table--cell--MinWidth: 0;
|
|
27932
27937
|
--pf-v5-c-table--cell--MaxWidth: none;
|
|
@@ -27943,29 +27948,33 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
27943
27948
|
--pf-v5-c-table--m-truncate--cell--MaxWidth: 1px;
|
|
27944
27949
|
--pf-v5-c-table--m-truncate--cell--MinWidth: calc(5ch + var(--pf-v5-c-table--cell--PaddingRight) + var(--pf-v5-c-table--cell--PaddingLeft));
|
|
27945
27950
|
--pf-v5-c-table--cell--hidden-visible--Display: table-cell;
|
|
27946
|
-
--pf-v5-c-table__toggle--
|
|
27947
|
-
--pf-v5-c-table__toggle--
|
|
27951
|
+
--pf-v5-c-table__toggle--PaddingTop: var(--pf-t--global--spacer--sm);
|
|
27952
|
+
--pf-v5-c-table__toggle--PaddingBottom: var(--pf-t--global--spacer--sm);
|
|
27953
|
+
--pf-v5-c-table__toggle--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
27954
|
+
--pf-v5-c-table__toggle--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
27948
27955
|
--pf-v5-c-table__toggle--c-button__toggle-icon--Rotate: 270deg;
|
|
27949
27956
|
--pf-v5-c-table__toggle--c-button__toggle-icon--Transition: .2s ease-in 0s;
|
|
27950
27957
|
--pf-v5-c-table__toggle--c-button--m-expanded__toggle-icon--Rotate: 360deg;
|
|
27951
|
-
--pf-v5-c-table__button--
|
|
27958
|
+
--pf-v5-c-table__button--PaddingTop: var(--pf-t--global--spacer--xs);
|
|
27959
|
+
--pf-v5-c-table__button--PaddingBottom: var(--pf-t--global--spacer--xs);
|
|
27960
|
+
--pf-v5-c-table__button--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
27961
|
+
--pf-v5-c-table__button--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
27952
27962
|
--pf-v5-c-table__button--Color: var(--pf-t--global--text--color--regular);
|
|
27963
|
+
--pf-v5-c-table__button--BackgroundColor: transparent;
|
|
27964
|
+
--pf-v5-c-table__button--OutlineOffset: calc(var(--pf-t--global--border--width--strong) * -1);
|
|
27965
|
+
--pf-v5-c-table__button--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
27953
27966
|
--pf-v5-c-table__button--hover--Color: var(--pf-t--global--text--color--regular);
|
|
27954
27967
|
--pf-v5-c-table__button--focus--Color: var(--pf-t--global--text--color--regular);
|
|
27955
27968
|
--pf-v5-c-table__button--active--Color: var(--pf-t--global--text--color--regular);
|
|
27956
27969
|
--pf-v5-c-table__button--OutlineOffset: calc(var(--pf-t--global--border--width--strong) * -1);
|
|
27957
27970
|
--pf-v5-c-table--m-compact__toggle--PaddingTop: 0;
|
|
27958
27971
|
--pf-v5-c-table--m-compact__toggle--PaddingBottom: 0;
|
|
27959
|
-
--pf-v5-c-table__check--
|
|
27960
|
-
--pf-v5-c-
|
|
27961
|
-
--pf-v5-c-
|
|
27962
|
-
--pf-v5-c-
|
|
27963
|
-
--pf-v5-c-table__favorite--c-button--Color: var(--pf-t--global--text--color--subtle);
|
|
27972
|
+
--pf-v5-c-table__check--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
27973
|
+
--pf-v5-c-table__check--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
27974
|
+
--pf-v5-c-table__favorite--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
27975
|
+
--pf-v5-c-table__favorite--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
27964
27976
|
--pf-v5-c-table__favorite--c-button--FontSize: var(--pf-t--global--font--size--body--default);
|
|
27965
|
-
--pf-v5-c-
|
|
27966
|
-
--pf-v5-c-table__favorite--c-button--MarginRight: calc(var(--pf-v5-c-button--PaddingRight) * -1);
|
|
27967
|
-
--pf-v5-c-table__favorite--c-button--MarginBottom: calc(var(--pf-v5-c-button--PaddingBottom) * -1);
|
|
27968
|
-
--pf-v5-c-table__favorite--c-button--MarginLeft: calc(var(--pf-v5-c-button--PaddingLeft) * -1);
|
|
27977
|
+
--pf-v5-c-table--cell--m-favorite--Color: var(--pf-t--global--text--color--subtle);
|
|
27969
27978
|
--pf-v5-c-table__favorite--m-favorited--c-button--Color: var(--pf-t--global--color--favorite--clicked);
|
|
27970
27979
|
--pf-v5-c-table__sort--m-favorite__button__text--Color: var(--pf-t--global--text--color--subtle);
|
|
27971
27980
|
--pf-v5-c-table__sort--m-favorite__button--hover__text--Color: var(--pf-t--global--text--color--regular);
|
|
@@ -27977,19 +27986,16 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
27977
27986
|
--pf-v5-c-table__draggable--c-button--MarginLeft: calc(var(--pf-v5-c-button--PaddingLeft) * -1);
|
|
27978
27987
|
--pf-v5-c-table__tr--m-ghost-row--Opacity: .4;
|
|
27979
27988
|
--pf-v5-c-table__tr--m-ghost-row--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
27980
|
-
--pf-v5-c-table__action--PaddingTop:
|
|
27981
|
-
--pf-v5-c-table__action--
|
|
27982
|
-
--pf-v5-c-
|
|
27983
|
-
--pf-v5-c-
|
|
27984
|
-
--pf-v5-c-table__inline-edit-action--PaddingTop: 0;
|
|
27985
|
-
--pf-v5-c-table__inline-edit-action--PaddingRight: 0;
|
|
27986
|
-
--pf-v5-c-table__inline-edit-action--PaddingBottom: 0;
|
|
27987
|
-
--pf-v5-c-table__inline-edit-action--PaddingLeft: 0;
|
|
27989
|
+
--pf-v5-c-table__action--PaddingTop: var(--pf-t--global--spacer--sm);
|
|
27990
|
+
--pf-v5-c-table__action--PaddingBottom: var(--pf-t--global--spacer--sm);
|
|
27991
|
+
--pf-v5-c-table__inline-edit-action--PaddingTop: var(--pf-t--global--spacer--sm);
|
|
27992
|
+
--pf-v5-c-table__inline-edit-action--PaddingBottom: var(--pf-t--global--spacer--sm);
|
|
27988
27993
|
--pf-v5-c-table__expandable-row--Transition: var(--pf-v5-global--Transition);
|
|
27989
|
-
--pf-v5-c-table__expandable-row--
|
|
27994
|
+
--pf-v5-c-table__expandable-row-content--PaddingTop: var(--pf-t--global--spacer--md);
|
|
27995
|
+
--pf-v5-c-table__expandable-row-content--PaddingBottom: var(--pf-t--global--spacer--md);
|
|
27996
|
+
--pf-v5-c-table__expandable-row-content--PaddingLeft: var(--pf-t--global--spacer--md);
|
|
27997
|
+
--pf-v5-c-table__expandable-row-content--PaddingRight: var(--pf-t--global--spacer--md);
|
|
27990
27998
|
--pf-v5-c-table__expandable-row-content--Transition: var(--pf-v5-global--Transition);
|
|
27991
|
-
--pf-v5-c-table__expandable-row-content--PaddingTop: var(--pf-t--global--spacer--lg);
|
|
27992
|
-
--pf-v5-c-table__expandable-row-content--PaddingBottom: var(--pf-t--global--spacer--lg);
|
|
27993
27999
|
--pf-v5-c-table__expandable-row--after--Top: calc(var(--pf-v5-c-table--border-width--base) * -1);
|
|
27994
28000
|
--pf-v5-c-table__expandable-row--after--Bottom: calc(var(--pf-v5-c-table--border-width--base) * -1);
|
|
27995
28001
|
--pf-v5-c-table__expandable-row--after--border-width--base: var(--pf-t--global--border--width--strong);
|
|
@@ -28011,6 +28017,8 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28011
28017
|
--pf-v5-c-table__sort__button--hover__text--Color: currentcolor;
|
|
28012
28018
|
--pf-v5-c-table__sort__button--focus__text--Color: currentcolor;
|
|
28013
28019
|
--pf-v5-c-table__sort__button--active__text--Color: currentcolor;
|
|
28020
|
+
--pf-v5-c-table__sort--cell--PaddingLeft: var(--pf-t--global--spacer--xs);
|
|
28021
|
+
--pf-v5-c-table__sort--cell--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
28014
28022
|
--pf-v5-c-table__sort-indicator--Color: var(--pf-t--global--icon--color--subtle);
|
|
28015
28023
|
--pf-v5-c-table__sort-indicator--MarginLeft: var(--pf-t--global--spacer--md);
|
|
28016
28024
|
--pf-v5-c-table__sort--m-selected__sort-indicator--Color: var(--pf-t--global--border--color--clicked);
|
|
@@ -28018,8 +28026,7 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28018
28026
|
--pf-v5-c-table__sort__button--active__sort-indicator--Color: var(--pf-t--global--text--color--regular);
|
|
28019
28027
|
--pf-v5-c-table__sort__button--focus__sort-indicator--Color: var(--pf-t--global--text--color--regular);
|
|
28020
28028
|
--pf-v5-c-table__th--m-help--MinWidth: 11ch;
|
|
28021
|
-
--pf-v5-c-table__column-help--MarginLeft: var(--pf-t--global--spacer--
|
|
28022
|
-
--pf-v5-c-table__column-help--TranslateY: 0.125rem;
|
|
28029
|
+
--pf-v5-c-table__column-help--MarginLeft: var(--pf-t--global--spacer--sm);
|
|
28023
28030
|
--pf-v5-c-table__column-help--c-button--MarginTop: calc(var(--pf-v5-c-button--PaddingTop) * -1);
|
|
28024
28031
|
--pf-v5-c-table__column-help--c-button--MarginBottom: calc(var(--pf-v5-c-button--PaddingBottom) * -1);
|
|
28025
28032
|
--pf-v5-c-table__column-help--c-button--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
@@ -28045,15 +28052,8 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28045
28052
|
--pf-v5-c-table--m-compact--cell--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
28046
28053
|
--pf-v5-c-table--m-compact--cell--PaddingBottom: var(--pf-t--global--spacer--sm);
|
|
28047
28054
|
--pf-v5-c-table--m-compact--cell--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
28048
|
-
--pf-v5-c-table--m-
|
|
28049
|
-
--pf-v5-c-table--m-
|
|
28050
|
-
--pf-v5-c-table--m-compact--FontSize: var(--pf-t--global--font--size--body--default);
|
|
28051
|
-
--pf-v5-c-table--m-compact__expandable-row-content--PaddingTop: var(--pf-t--global--spacer--lg);
|
|
28052
|
-
--pf-v5-c-table--m-compact__expandable-row-content--PaddingRight: var(--pf-t--global--spacer--lg);
|
|
28053
|
-
--pf-v5-c-table--m-compact__expandable-row-content--PaddingBottom: var(--pf-t--global--spacer--lg);
|
|
28054
|
-
--pf-v5-c-table--m-compact__expandable-row-content--PaddingLeft: var(--pf-t--global--spacer--lg);
|
|
28055
|
-
--pf-v5-c-table--nested--first-last-child--PaddingRight: var(--pf-v5-c-table--m-compact--cell--first-last-child--PaddingLeft);
|
|
28056
|
-
--pf-v5-c-table--nested--first-last-child--PaddingLeft: var(--pf-v5-c-table--m-compact--cell--first-last-child--PaddingRight);
|
|
28055
|
+
--pf-v5-c-table--m-compact__action--PaddingTop: var(--pf-t--global--spacer--xs);
|
|
28056
|
+
--pf-v5-c-table--m-compact__action--PaddingBottom: var(--pf-t--global--spacer--xs);
|
|
28057
28057
|
--pf-v5-c-table__expandable-row--m-expanded--BorderBottomColor: var(--pf-t--global--border--color--default);
|
|
28058
28058
|
--pf-v5-c-table__tr--m-clickable--BoxShadow--top: var(--pf-v5-c-table__tr--BoxShadow--top--base);
|
|
28059
28059
|
--pf-v5-c-table__tr--m-clickable--BackgroundColor: transparent;
|
|
@@ -28099,9 +28099,14 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28099
28099
|
--pf-v5-c-table__thead--m-nested-column-header--button--OutlineOffset: -0.1875rem;
|
|
28100
28100
|
--pf-v5-c-table__thead--m-nested-column-header__tr--PaddingTop: var(--pf-t--global--spacer--xs);
|
|
28101
28101
|
--pf-v5-c-table__thead--m-nested-column-header__tr--PaddingBottom: var(--pf-t--global--spacer--xs);
|
|
28102
|
+
--pf-v5-c-table__subhead--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
28103
|
+
--pf-v5-c-table__subhead--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
28102
28104
|
--pf-v5-c-table__subhead--Color: var(--pf-t--global--text--color--subtle);
|
|
28103
28105
|
--pf-v5-c-table--m-striped__tr--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
28104
28106
|
--pf-v5-c-table--m-sticky-header--cell--ZIndex: var(--pf-t--global--Zindex--xs);
|
|
28107
|
+
}
|
|
28108
|
+
|
|
28109
|
+
.pf-v5-c-table {
|
|
28105
28110
|
color: var(--pf-v5-global--Color--100);
|
|
28106
28111
|
width: 100%;
|
|
28107
28112
|
background-color: var(--pf-v5-c-table--BackgroundColor);
|
|
@@ -28179,16 +28184,17 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28179
28184
|
overflow: var(--pf-v5-c-table--cell--Overflow);
|
|
28180
28185
|
font-size: var(--pf-v5-c-table--cell--FontSize);
|
|
28181
28186
|
font-weight: var(--pf-v5-c-table--cell--FontWeight);
|
|
28187
|
+
line-height: var(--pf-v5-c-table--cell--LineHeight);
|
|
28182
28188
|
color: var(--pf-v5-c-table--cell--Color);
|
|
28183
28189
|
text-overflow: var(--pf-v5-c-table--cell--TextOverflow);
|
|
28184
28190
|
word-break: var(--pf-v5-c-table--cell--WordBreak);
|
|
28185
28191
|
white-space: var(--pf-v5-c-table--cell--WhiteSpace);
|
|
28186
28192
|
}
|
|
28187
28193
|
.pf-v5-c-table tr:where(.pf-v5-c-table__tr) > *:first-child {
|
|
28188
|
-
--pf-v5-c-table--cell--
|
|
28194
|
+
padding-inline-start: calc(var(--pf-v5-c-table--cell--first-last-child--PaddingInline) + var(--pf-v5-c-table--cell--PaddingLeft));
|
|
28189
28195
|
}
|
|
28190
28196
|
.pf-v5-c-table tr:where(.pf-v5-c-table__tr) > *:last-child {
|
|
28191
|
-
--pf-v5-c-table--cell--
|
|
28197
|
+
padding-inline-end: calc(var(--pf-v5-c-table--cell--first-last-child--PaddingInline) + var(--pf-v5-c-table--cell--PaddingRight));
|
|
28192
28198
|
}
|
|
28193
28199
|
.pf-v5-c-table tr:where(.pf-v5-c-table__tr) > *.pf-m-center {
|
|
28194
28200
|
text-align: center;
|
|
@@ -28209,10 +28215,7 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28209
28215
|
}
|
|
28210
28216
|
.pf-v5-c-table tr:where(.pf-v5-c-table__tr) > *.pf-m-border-right::before, .pf-v5-c-table tr:where(.pf-v5-c-table__tr) > *.pf-m-border-left::before {
|
|
28211
28217
|
position: absolute;
|
|
28212
|
-
inset
|
|
28213
|
-
inset-block-end: 0;
|
|
28214
|
-
inset-inline-start: 0;
|
|
28215
|
-
inset-inline-end: 0;
|
|
28218
|
+
inset: 0;
|
|
28216
28219
|
pointer-events: none;
|
|
28217
28220
|
content: "";
|
|
28218
28221
|
}
|
|
@@ -28234,35 +28237,32 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28234
28237
|
.pf-v5-c-table thead:where(.pf-v5-c-table__thead) {
|
|
28235
28238
|
--pf-v5-c-table--cell--FontSize: var(--pf-v5-c-table__thead--cell--FontSize);
|
|
28236
28239
|
--pf-v5-c-table--cell--FontWeight: var(--pf-v5-c-table__thead--cell--FontWeight);
|
|
28237
|
-
vertical-align:
|
|
28240
|
+
vertical-align: baseline;
|
|
28238
28241
|
}
|
|
28239
28242
|
.pf-v5-c-table thead:where(.pf-v5-c-table__thead).pf-m-nested-column-header button:where(.pf-v5-c-button) {
|
|
28240
28243
|
outline-offset: var(--pf-v5-c-table__thead--m-nested-column-header--button--OutlineOffset);
|
|
28241
28244
|
}
|
|
28242
|
-
.pf-v5-c-table thead:where(.pf-v5-c-table__thead).pf-m-nested-column-header th:where(.pf-v5-c-table__th),
|
|
28243
|
-
.pf-v5-c-table thead:where(.pf-v5-c-table__thead).pf-m-nested-column-header td:where(.pf-v5-c-table__td),
|
|
28244
|
-
.pf-v5-c-table thead:where(.pf-v5-c-table__thead).pf-m-nested-column-header input:where(.pf-v5-c-check__input) {
|
|
28245
|
-
vertical-align: middle;
|
|
28246
|
-
}
|
|
28247
|
-
.pf-v5-c-table thead:where(.pf-v5-c-table__thead).pf-m-nested-column-header .pf-v5-c-table__check label {
|
|
28248
|
-
display: flex;
|
|
28249
|
-
align-items: center;
|
|
28250
|
-
}
|
|
28251
28245
|
.pf-v5-c-table thead:where(.pf-v5-c-table__thead).pf-m-nested-column-header tr:where(.pf-v5-c-table__tr):not(:first-child) th:where(.pf-v5-c-table__th):not([rowspan]),
|
|
28252
28246
|
.pf-v5-c-table thead:where(.pf-v5-c-table__thead).pf-m-nested-column-header tr:where(.pf-v5-c-table__tr):not(:first-child) td:where(.pf-v5-c-table__td):not([rowspan]) {
|
|
28253
28247
|
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table__thead--m-nested-column-header__tr--PaddingTop);
|
|
28254
28248
|
}
|
|
28255
28249
|
.pf-v5-c-table thead:where(.pf-v5-c-table__thead) .pf-v5-c-table__subhead {
|
|
28250
|
+
--pf-v5-c-table--cell--PaddingLeft: var(--pf-v5-c-table__subhead--PaddingLeft);
|
|
28251
|
+
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table__subhead--PaddingRight);
|
|
28256
28252
|
--pf-v5-c-table__sort__button__text--Color: var(--pf-v5-c-table__subhead--Color);
|
|
28257
28253
|
color: var(--pf-v5-c-table__subhead--Color);
|
|
28258
28254
|
}
|
|
28255
|
+
.pf-v5-c-table thead:where(.pf-v5-c-table__thead) .pf-v5-c-table__subhead .pf-v5-c-table__button {
|
|
28256
|
+
margin-inline-start: 0;
|
|
28257
|
+
}
|
|
28259
28258
|
.pf-v5-c-table tbody:where(.pf-v5-c-table__tbody) {
|
|
28260
28259
|
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table__tbody--cell--PaddingTop);
|
|
28261
28260
|
--pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table__tbody--cell--PaddingBottom);
|
|
28261
|
+
vertical-align: top;
|
|
28262
|
+
--pf-v5-c-table--cell--FontSize: var(--pf-v5-c-table__tbody--cell--FontSize);
|
|
28262
28263
|
}
|
|
28263
28264
|
.pf-v5-c-table tbody:where(.pf-v5-c-table__tbody) > tr:where(.pf-v5-c-table__tr) > * {
|
|
28264
28265
|
overflow-wrap: break-word;
|
|
28265
|
-
vertical-align: baseline;
|
|
28266
28266
|
}
|
|
28267
28267
|
.pf-v5-c-table tbody:where(.pf-v5-c-table__tbody) > tr:where(.pf-v5-c-table__tr) > :first-child::after {
|
|
28268
28268
|
position: absolute;
|
|
@@ -28273,16 +28273,9 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28273
28273
|
background-color: transparent;
|
|
28274
28274
|
border-inline-start: var(--pf-v5-c-table__expandable-row--after--BorderLeftWidth) solid var(--pf-v5-c-table__expandable-row--after--BorderColor);
|
|
28275
28275
|
}
|
|
28276
|
-
.pf-v5-c-table tbody:where(.pf-v5-c-table__tbody) .pf-v5-c-table__check input:where(.pf-v5-c-check__input) {
|
|
28277
|
-
margin-block-start: var(--pf-v5-c-table__check--input--MarginTop);
|
|
28278
|
-
vertical-align: top;
|
|
28279
|
-
}
|
|
28280
28276
|
.pf-v5-c-table tbody:where(.pf-v5-c-table__tbody).pf-m-expanded > :first-child:not(.pf-v5-c-table__control-row) {
|
|
28281
28277
|
border-block-end-width: 0;
|
|
28282
28278
|
}
|
|
28283
|
-
.pf-v5-c-table .pf-v5-c-table__compound-expansion-toggle, .pf-v5-c-table .pf-v5-c-table__compound-expansion-toggle:first-child, .pf-v5-c-table .pf-v5-c-table__compound-expansion-toggle:last-child {
|
|
28284
|
-
padding: 0;
|
|
28285
|
-
}
|
|
28286
28279
|
.pf-v5-c-table .pf-v5-c-table__sort {
|
|
28287
28280
|
min-width: var(--pf-v5-c-table__sort--MinWidth);
|
|
28288
28281
|
}
|
|
@@ -28419,9 +28412,10 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28419
28412
|
position: relative;
|
|
28420
28413
|
display: block;
|
|
28421
28414
|
width: var(--pf-v5-c-table--cell--Width);
|
|
28422
|
-
min-width: var(--pf-v5-c-table--
|
|
28415
|
+
min-width: var(--pf-v5-c-table--text--MinWidth);
|
|
28423
28416
|
max-width: var(--pf-v5-c-table--cell--MaxWidth);
|
|
28424
28417
|
overflow: var(--pf-v5-c-table--cell--Overflow);
|
|
28418
|
+
line-height: var(--pf-v5-c-table--cell--LineHeight);
|
|
28425
28419
|
text-overflow: var(--pf-v5-c-table--cell--TextOverflow);
|
|
28426
28420
|
word-break: var(--pf-v5-c-table--cell--WordBreak);
|
|
28427
28421
|
white-space: var(--pf-v5-c-table--cell--WhiteSpace);
|
|
@@ -28437,11 +28431,12 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28437
28431
|
|
|
28438
28432
|
.pf-v5-c-table__button {
|
|
28439
28433
|
position: static;
|
|
28440
|
-
width:
|
|
28441
|
-
padding-block-start: var(--pf-v5-c-
|
|
28442
|
-
padding-block-end: var(--pf-v5-c-
|
|
28443
|
-
padding-inline-start: var(--pf-v5-c-
|
|
28444
|
-
padding-inline-end: var(--pf-v5-c-
|
|
28434
|
+
width: auto;
|
|
28435
|
+
padding-block-start: var(--pf-v5-c-table__button--PaddingTop);
|
|
28436
|
+
padding-block-end: var(--pf-v5-c-table__button--PaddingBottom);
|
|
28437
|
+
padding-inline-start: var(--pf-v5-c-table__button--PaddingLeft);
|
|
28438
|
+
padding-inline-end: var(--pf-v5-c-table__button--PaddingRight);
|
|
28439
|
+
margin-inline-start: calc(var(--pf-v5-c-table__button--PaddingLeft) * -1);
|
|
28445
28440
|
font-size: inherit;
|
|
28446
28441
|
font-weight: inherit;
|
|
28447
28442
|
color: var(--pf-v5-c-table__button--Color);
|
|
@@ -28450,6 +28445,10 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28450
28445
|
user-select: text;
|
|
28451
28446
|
background-color: var(--pf-v5-c-table__button--BackgroundColor);
|
|
28452
28447
|
border: 0;
|
|
28448
|
+
border-radius: var(--pf-v5-c-table__button--BorderRadius);
|
|
28449
|
+
}
|
|
28450
|
+
.pf-v5-c-table .pf-v5-c-table .pf-v5-c-table__button {
|
|
28451
|
+
margin-block-end: 0;
|
|
28453
28452
|
}
|
|
28454
28453
|
.pf-v5-c-table__button::before {
|
|
28455
28454
|
position: absolute;
|
|
@@ -28479,15 +28478,11 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28479
28478
|
white-space: var(--pf-v5-c-table--cell--WhiteSpace);
|
|
28480
28479
|
}
|
|
28481
28480
|
|
|
28482
|
-
.pf-v5-c-table__sort .pf-v5-c-table__text {
|
|
28483
|
-
--pf-v5-c-table--cell--MinWidth: 0;
|
|
28484
|
-
}
|
|
28485
|
-
|
|
28486
28481
|
.pf-v5-c-table__button-content,
|
|
28487
28482
|
.pf-v5-c-table__column-help {
|
|
28488
|
-
display: grid;
|
|
28483
|
+
display: inline-grid;
|
|
28489
28484
|
grid-template-columns: auto max-content;
|
|
28490
|
-
align-items:
|
|
28485
|
+
align-items: baseline;
|
|
28491
28486
|
justify-content: start;
|
|
28492
28487
|
}
|
|
28493
28488
|
.pf-v5-c-table__button-content .pf-v5-c-table__text,
|
|
@@ -28516,12 +28511,6 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28516
28511
|
grid-template-columns: auto max-content;
|
|
28517
28512
|
}
|
|
28518
28513
|
|
|
28519
|
-
.pf-v5-c-table .pf-v5-c-table__toggle,
|
|
28520
|
-
.pf-v5-c-table .pf-v5-c-table__action,
|
|
28521
|
-
.pf-v5-c-table .pf-v5-c-table__inline-edit-action {
|
|
28522
|
-
--pf-v5-c-table--cell--PaddingBottom: 0;
|
|
28523
|
-
}
|
|
28524
|
-
|
|
28525
28514
|
.pf-v5-c-table .pf-v5-c-table__check,
|
|
28526
28515
|
.pf-v5-c-table .pf-v5-c-table__toggle,
|
|
28527
28516
|
.pf-v5-c-table .pf-v5-c-table__action,
|
|
@@ -28534,13 +28523,10 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28534
28523
|
}
|
|
28535
28524
|
|
|
28536
28525
|
.pf-v5-c-table__toggle {
|
|
28537
|
-
--pf-v5-c-table--cell--
|
|
28538
|
-
--pf-v5-c-table--cell--
|
|
28539
|
-
|
|
28540
|
-
|
|
28541
|
-
.pf-v5-c-table__toggle .pf-v5-c-button {
|
|
28542
|
-
margin-block-start: var(--pf-v5-c-table__toggle--c-button--MarginTop);
|
|
28543
|
-
margin-block-end: var(--pf-v5-c-table__toggle--c-button--MarginBottom);
|
|
28526
|
+
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table__toggle--PaddingTop);
|
|
28527
|
+
--pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table__toggle--PaddingBottom);
|
|
28528
|
+
--pf-v5-c-table--cell--PaddingLeft: var(--pf-v5-c-table__toggle--PaddingLeft);
|
|
28529
|
+
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table__toggle--PaddingRight);
|
|
28544
28530
|
}
|
|
28545
28531
|
.pf-v5-c-table__toggle .pf-v5-c-button.pf-m-expanded .pf-v5-c-table__toggle-icon {
|
|
28546
28532
|
transform: rotate(var(--pf-v5-c-table__toggle--c-button--m-expanded__toggle-icon--Rotate));
|
|
@@ -28558,41 +28544,34 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28558
28544
|
}
|
|
28559
28545
|
|
|
28560
28546
|
.pf-v5-c-table__check {
|
|
28561
|
-
--pf-v5-c-table--cell--
|
|
28547
|
+
--pf-v5-c-table--cell--PaddingLeft: var(--pf-v5-c-table__check--PaddingLeft);
|
|
28548
|
+
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table__check--PaddingRight);
|
|
28562
28549
|
}
|
|
28563
|
-
.pf-v5-c-table__check
|
|
28564
|
-
.pf-v5-c-table__check input:not([disabled]) {
|
|
28565
|
-
cursor: pointer;
|
|
28566
|
-
}
|
|
28567
|
-
.pf-v5-c-table__check label {
|
|
28550
|
+
.pf-v5-c-table__check .pf-v5-c-check.pf-m-standalone {
|
|
28568
28551
|
display: inline-flex;
|
|
28569
|
-
padding: inherit;
|
|
28570
|
-
margin-block-start: calc(var(--pf-v5-c-table--cell--PaddingTop) * -1);
|
|
28571
|
-
margin-block-end: calc(var(--pf-v5-c-table--cell--PaddingBottom) * -1);
|
|
28572
|
-
margin-inline-start: calc(var(--pf-v5-c-table--cell--PaddingLeft) * -1);
|
|
28573
|
-
margin-inline-end: calc(var(--pf-v5-c-table--cell--PaddingRight) * -1);
|
|
28574
28552
|
}
|
|
28575
|
-
.pf-v5-c-
|
|
28576
|
-
|
|
28553
|
+
thead .pf-v5-c-table__check .pf-v5-c-check.pf-m-standalone {
|
|
28554
|
+
vertical-align: bottom;
|
|
28555
|
+
}
|
|
28556
|
+
tbody .pf-v5-c-table__check .pf-v5-c-check.pf-m-standalone {
|
|
28557
|
+
vertical-align: top;
|
|
28558
|
+
}
|
|
28559
|
+
.pf-v5-c-table__check label {
|
|
28560
|
+
display: contents;
|
|
28577
28561
|
}
|
|
28578
28562
|
|
|
28563
|
+
.pf-v5-c-table__favorite {
|
|
28564
|
+
--pf-v5-c-table--cell--PaddingLeft: var(--pf-v5-c-table__favorite--PaddingLeft);
|
|
28565
|
+
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table__favorite--PaddingRight);
|
|
28566
|
+
}
|
|
28579
28567
|
.pf-v5-c-table__favorite .pf-v5-c-button {
|
|
28580
|
-
--pf-v5-c-button--m-plain--Color: var(--pf-v5-c-table__favorite--c-button--Color);
|
|
28581
28568
|
--pf-v5-c-button--FontSize: var(--pf-v5-c-table__favorite--c-button--FontSize);
|
|
28582
|
-
margin-block-start: var(--pf-v5-c-table__favorite--c-button--MarginTop);
|
|
28583
|
-
margin-block-end: var(--pf-v5-c-table__favorite--c-button--MarginBottom);
|
|
28584
|
-
margin-inline-start: var(--pf-v5-c-table__favorite--c-button--MarginLeft);
|
|
28585
|
-
margin-inline-end: var(--pf-v5-c-table__favorite--c-button--MarginRight);
|
|
28586
28569
|
}
|
|
28587
28570
|
.pf-m-favorited.pf-v5-c-table__favorite .pf-v5-c-button {
|
|
28588
28571
|
--pf-v5-c-button--m-plain--Color: var(--pf-v5-c-table__favorite--m-favorited--c-button--Color);
|
|
28589
28572
|
}
|
|
28590
28573
|
|
|
28591
28574
|
.pf-v5-c-table__draggable .pf-v5-c-button {
|
|
28592
|
-
margin-block-start: var(--pf-v5-c-table__draggable--c-button--MarginTop);
|
|
28593
|
-
margin-block-end: var(--pf-v5-c-table__draggable--c-button--MarginBottom);
|
|
28594
|
-
margin-inline-start: var(--pf-v5-c-table__draggable--c-button--MarginLeft);
|
|
28595
|
-
margin-inline-end: var(--pf-v5-c-table__draggable--c-button--MarginRight);
|
|
28596
28575
|
cursor: grab;
|
|
28597
28576
|
}
|
|
28598
28577
|
.pf-v5-c-table__draggable .pf-v5-c-button:active {
|
|
@@ -28600,23 +28579,14 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28600
28579
|
}
|
|
28601
28580
|
|
|
28602
28581
|
.pf-v5-c-table__action,
|
|
28603
|
-
.pf-v5-c-table__inline-edit-action
|
|
28604
|
-
|
|
28605
|
-
--pf-v5-c-table--cell--
|
|
28606
|
-
--pf-v5-c-table--cell--PaddingBottom:
|
|
28607
|
-
--pf-v5-c-table--cell--PaddingLeft: var(--pf-v5-c-table__action--PaddingLeft);
|
|
28608
|
-
padding-block-start: 0;
|
|
28609
|
-
padding-block-end: 0;
|
|
28610
|
-
vertical-align: middle;
|
|
28611
|
-
}
|
|
28612
|
-
|
|
28613
|
-
.pf-v5-c-table__action {
|
|
28614
|
-
text-align: end;
|
|
28582
|
+
.pf-v5-c-table__inline-edit-action,
|
|
28583
|
+
.pf-v5-c-table__draggable {
|
|
28584
|
+
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table__action--PaddingTop);
|
|
28585
|
+
--pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table__action--PaddingBottom);
|
|
28615
28586
|
}
|
|
28616
28587
|
|
|
28617
|
-
.pf-v5-c-
|
|
28618
|
-
|
|
28619
|
-
--pf-v5-c-table--cell--PaddingRight: 0;
|
|
28588
|
+
.pf-v5-c-table__action:last-child,
|
|
28589
|
+
.pf-v5-c-table__inline-edit-action:last-child {
|
|
28620
28590
|
text-align: end;
|
|
28621
28591
|
}
|
|
28622
28592
|
|
|
@@ -28626,12 +28596,16 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28626
28596
|
--pf-v5-c-table__button--focus--Color: var(--pf-v5-c-table__compound-expansion-toggle__button--focus--Color);
|
|
28627
28597
|
--pf-v5-c-table__button--active--Color: var(--pf-v5-c-table__compound-expansion-toggle__button--active--Color);
|
|
28628
28598
|
position: relative;
|
|
28599
|
+
padding: 0;
|
|
28629
28600
|
}
|
|
28630
28601
|
.pf-v5-c-table__compound-expansion-toggle.pf-m-truncate {
|
|
28631
28602
|
overflow: visible;
|
|
28632
28603
|
}
|
|
28633
28604
|
.pf-v5-c-table__compound-expansion-toggle .pf-v5-c-table__button {
|
|
28605
|
+
position: static;
|
|
28634
28606
|
min-width: 100%;
|
|
28607
|
+
padding: 0;
|
|
28608
|
+
margin: 0;
|
|
28635
28609
|
overflow: hidden;
|
|
28636
28610
|
}
|
|
28637
28611
|
.pf-v5-c-table__compound-expansion-toggle .pf-v5-c-table__button:hover, .pf-v5-c-table__compound-expansion-toggle .pf-v5-c-table__button:focus, .pf-v5-c-table__compound-expansion-toggle .pf-v5-c-table__button:active {
|
|
@@ -28640,7 +28614,7 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28640
28614
|
.pf-v5-c-table__compound-expansion-toggle .pf-v5-c-table__button::before,
|
|
28641
28615
|
.pf-v5-c-table__compound-expansion-toggle .pf-v5-c-table__button::after {
|
|
28642
28616
|
position: absolute;
|
|
28643
|
-
inset
|
|
28617
|
+
inset: 0;
|
|
28644
28618
|
content: "";
|
|
28645
28619
|
border-style: solid;
|
|
28646
28620
|
border-width: 0;
|
|
@@ -28665,10 +28639,6 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28665
28639
|
--pf-v5-c-table__compound-expansion-toggle__button--before--BorderLeftWidth: var(--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base);
|
|
28666
28640
|
--pf-v5-c-table__compound-expansion-toggle__button--after--BorderTopWidth: var(--pf-v5-c-table__compound-expansion-toggle__button--after--border-width--base);
|
|
28667
28641
|
}
|
|
28668
|
-
.pf-v5-c-table__compound-expansion-toggle:first-child {
|
|
28669
|
-
--pf-v5-c-table__compound-expansion-toggle__button--before--Left: 0;
|
|
28670
|
-
--pf-v5-c-table__compound-expansion-toggle__button--after--Left: 0;
|
|
28671
|
-
}
|
|
28672
28642
|
.pf-v5-c-table__compound-expansion-toggle.pf-m-expanded .pf-v5-c-table__button::before {
|
|
28673
28643
|
border-block-end: var(--pf-v5-c-table--BackgroundColor) solid var(--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base);
|
|
28674
28644
|
}
|
|
@@ -28687,28 +28657,8 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28687
28657
|
|
|
28688
28658
|
.pf-v5-c-table__column-help-action {
|
|
28689
28659
|
margin-inline-start: var(--pf-v5-c-table__column-help--MarginLeft);
|
|
28690
|
-
transform: translateY(var(--pf-v5-c-table__column-help--TranslateY));
|
|
28691
|
-
}
|
|
28692
|
-
.pf-v5-c-table__column-help-action .pf-v5-c-button {
|
|
28693
|
-
--pf-v5-c-button--PaddingRight: var(--pf-v5-c-table__column-help--c-button--PaddingRight);
|
|
28694
|
-
--pf-v5-c-button--PaddingLeft: var(--pf-v5-c-table__column-help--c-button--PaddingLeft);
|
|
28695
|
-
margin-block-start: var(--pf-v5-c-table__column-help--c-button--MarginTop);
|
|
28696
|
-
margin-block-end: var(--pf-v5-c-table__column-help--c-button--MarginBottom);
|
|
28697
|
-
font-size: inherit;
|
|
28698
|
-
line-height: 1;
|
|
28699
28660
|
}
|
|
28700
28661
|
|
|
28701
|
-
.pf-v5-c-table__sort .pf-v5-c-table__button {
|
|
28702
|
-
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table__sort__button--PaddingTop);
|
|
28703
|
-
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table__sort__button--PaddingRight);
|
|
28704
|
-
--pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table__sort__button--PaddingBottom);
|
|
28705
|
-
--pf-v5-c-table--cell--PaddingLeft: var(--pf-v5-c-table__sort__button--PaddingLeft);
|
|
28706
|
-
display: flex;
|
|
28707
|
-
width: auto;
|
|
28708
|
-
margin-block-start: var(--pf-v5-c-table__sort__button--MarginTop);
|
|
28709
|
-
margin-block-end: var(--pf-v5-c-table__sort__button--MarginBottom);
|
|
28710
|
-
margin-inline-start: var(--pf-v5-c-table__sort__button--MarginLeft);
|
|
28711
|
-
}
|
|
28712
28662
|
.pf-v5-c-table__sort .pf-v5-c-table__button:hover {
|
|
28713
28663
|
--pf-v5-c-table__sort-indicator--Color: var(--pf-v5-c-table__sort__button--hover__sort-indicator--Color);
|
|
28714
28664
|
--pf-v5-c-table__sort__button__text--Color: var(--pf-v5-c-table__sort__button--hover__text--Color);
|
|
@@ -28744,12 +28694,11 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28744
28694
|
grid-column: 2;
|
|
28745
28695
|
margin-inline-start: var(--pf-v5-c-table__sort-indicator--MarginLeft);
|
|
28746
28696
|
color: var(--pf-v5-c-table__sort-indicator--Color);
|
|
28697
|
+
color: var(--pf-v5-c-table__sort-indicator--FontSize);
|
|
28747
28698
|
pointer-events: none;
|
|
28748
28699
|
}
|
|
28749
28700
|
|
|
28750
28701
|
.pf-v5-c-table__expandable-row {
|
|
28751
|
-
--pf-v5-c-table--cell--PaddingTop: 0;
|
|
28752
|
-
--pf-v5-c-table--cell--PaddingBottom: 0;
|
|
28753
28702
|
position: relative;
|
|
28754
28703
|
border-block-end: 0 solid transparent;
|
|
28755
28704
|
box-shadow: 0 0 0 0 transparent;
|
|
@@ -28758,6 +28707,10 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28758
28707
|
.pf-v5-c-table__expandable-row td:where(.pf-v5-c-table__td):first-child::after {
|
|
28759
28708
|
transition: var(--pf-v5-c-table__expandable-row--Transition);
|
|
28760
28709
|
}
|
|
28710
|
+
.pf-v5-c-table__expandable-row > td,
|
|
28711
|
+
.pf-v5-c-table__expandable-row > th {
|
|
28712
|
+
padding-top: 0;
|
|
28713
|
+
}
|
|
28761
28714
|
.pf-v5-c-table__expandable-row td:where(.pf-v5-c-table__td).pf-m-no-padding,
|
|
28762
28715
|
.pf-v5-c-table__expandable-row th:where(.pf-v5-c-table__th).pf-m-no-padding {
|
|
28763
28716
|
padding-block-start: 0;
|
|
@@ -28781,64 +28734,35 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28781
28734
|
.pf-v5-c-table__expandable-row:not(.pf-m-expanded) {
|
|
28782
28735
|
display: none;
|
|
28783
28736
|
}
|
|
28784
|
-
|
|
28785
|
-
|
|
28786
|
-
--pf-v5-c-table--cell--PaddingLeft: var(--pf-v5-c-table--nested--first-last-child--PaddingLeft);
|
|
28787
|
-
}
|
|
28788
|
-
.pf-v5-c-table .pf-v5-c-table tr:where(.pf-v5-c-table__tr) > *:last-child {
|
|
28789
|
-
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table--nested--first-last-child--PaddingRight);
|
|
28737
|
+
.pf-v5-c-table__expandable-row tr:last-child {
|
|
28738
|
+
border-block-end: 0;
|
|
28790
28739
|
}
|
|
28791
28740
|
|
|
28792
28741
|
.pf-v5-c-table.pf-m-compact {
|
|
28793
|
-
--pf-v5-c-table--cell--FontSize: var(--pf-v5-c-table--m-compact--FontSize);
|
|
28794
28742
|
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table--m-compact--cell--PaddingTop);
|
|
28795
28743
|
--pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table--m-compact--cell--PaddingBottom);
|
|
28796
|
-
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table--m-compact--cell--PaddingLeft);
|
|
28797
|
-
}
|
|
28798
|
-
.pf-v5-c-table.pf-m-compact tr:where(.pf-v5-c-table__tr) {
|
|
28799
|
-
--pf-v5-c-table--cell--PaddingLeft: var(--pf-v5-c-table--m-compact--cell--PaddingLeft);
|
|
28800
|
-
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table--m-compact--cell--PaddingRight);
|
|
28801
28744
|
}
|
|
28802
28745
|
.pf-v5-c-table.pf-m-compact tr:where(.pf-v5-c-table__tr):not(.pf-v5-c-table__expandable-row) {
|
|
28803
|
-
--pf-v5-c-table--cell--FontSize: var(--pf-v5-c-table--m-compact--FontSize);
|
|
28804
28746
|
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table--m-compact--cell--PaddingTop);
|
|
28805
28747
|
--pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table--m-compact--cell--PaddingBottom);
|
|
28806
28748
|
}
|
|
28807
|
-
.pf-v5-c-table.pf-m-compact tr:where(.pf-v5-c-table__tr):not(.pf-v5-c-table__expandable-row) > *:first-child {
|
|
28808
|
-
--pf-v5-c-table--cell--PaddingLeft: var(--pf-v5-c-table--m-compact--cell--first-last-child--PaddingLeft);
|
|
28809
|
-
}
|
|
28810
|
-
.pf-v5-c-table.pf-m-compact tr:where(.pf-v5-c-table__tr):not(.pf-v5-c-table__expandable-row) > *:last-child {
|
|
28811
|
-
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table--m-compact--cell--first-last-child--PaddingRight);
|
|
28812
|
-
}
|
|
28813
28749
|
.pf-v5-c-table.pf-m-compact thead:where(.pf-v5-c-table__thead) th:where(.pf-v5-c-table__th),
|
|
28814
28750
|
.pf-v5-c-table.pf-m-compact thead:where(.pf-v5-c-table__thead) .pf-v5-c-table__toggle {
|
|
28815
28751
|
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table--m-compact__th--PaddingTop);
|
|
28816
28752
|
--pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table--m-compact__th--PaddingBottom);
|
|
28817
28753
|
}
|
|
28818
|
-
.pf-v5-c-table.pf-m-compact .pf-v5-c-table__action
|
|
28819
|
-
|
|
28820
|
-
|
|
28821
|
-
|
|
28822
|
-
|
|
28823
|
-
|
|
28824
|
-
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table--m-compact__toggle--PaddingTop);
|
|
28825
|
-
--pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table--m-compact__toggle--PaddingBottom);
|
|
28754
|
+
.pf-v5-c-table.pf-m-compact .pf-v5-c-table__action,
|
|
28755
|
+
.pf-v5-c-table.pf-m-compact .pf-v5-c-table__favorite,
|
|
28756
|
+
.pf-v5-c-table.pf-m-compact .pf-v5-c-table__toggle,
|
|
28757
|
+
.pf-v5-c-table.pf-m-compact .pf-v5-c-table__draggable {
|
|
28758
|
+
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table--m-compact__action--PaddingTop);
|
|
28759
|
+
--pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table--m-compact__action--PaddingBottom);
|
|
28826
28760
|
}
|
|
28827
28761
|
.pf-v5-c-table.pf-m-compact .pf-v5-c-table__icon {
|
|
28828
28762
|
width: auto;
|
|
28829
28763
|
min-width: 0;
|
|
28830
28764
|
text-align: center;
|
|
28831
28765
|
}
|
|
28832
|
-
.pf-v5-c-table .pf-v5-c-table.pf-m-compact tr:where(.pf-v5-c-table__tr) > *:first-child {
|
|
28833
|
-
--pf-v5-c-table--cell--PaddingLeft: var(--pf-v5-c-table--nested--first-last-child--PaddingLeft);
|
|
28834
|
-
}
|
|
28835
|
-
.pf-v5-c-table .pf-v5-c-table.pf-m-compact tr:where(.pf-v5-c-table__tr) > *:last-child {
|
|
28836
|
-
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table--nested--first-last-child--PaddingRight);
|
|
28837
|
-
}
|
|
28838
|
-
.pf-v5-c-table.pf-m-compact .pf-v5-c-table__expandable-row-content {
|
|
28839
|
-
--pf-v5-c-table__expandable-row-content--PaddingTop: var(--pf-v5-c-table--m-compact__expandable-row-content--PaddingTop);
|
|
28840
|
-
--pf-v5-c-table__expandable-row-content--PaddingBottom: var(--pf-v5-c-table--m-compact__expandable-row-content--PaddingBottom);
|
|
28841
|
-
}
|
|
28842
28766
|
|
|
28843
28767
|
.pf-v5-c-table__icon-inline {
|
|
28844
28768
|
display: flex;
|
|
@@ -28979,6 +28903,7 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
28979
28903
|
:where(.pf-v5-c-table) {
|
|
28980
28904
|
--pf-v5-c-table__tree-view-main--indent--base: calc(var(--pf-t--global--spacer--md) * 2 + var(--pf-v5-c-table__tree-view-icon--MinWidth));
|
|
28981
28905
|
--pf-v5-c-table__tree-view-main--nested-indent--base: calc(var(--pf-v5-c-table__tree-view-main--indent--base) - var(--pf-t--global--spacer--md));
|
|
28906
|
+
--pf-v5-c-table__tree-view-main--c-button--MarginRight: var(--pf-t--global--spacer--sm);
|
|
28982
28907
|
--pf-v5-c-table__tree-view-main--PaddingLeft: var(--pf-v5-c-table__tree-view-main--indent--base);
|
|
28983
28908
|
--pf-v5-c-table__tree-view-main--MarginLeft: calc(var(--pf-v5-c-table--cell--PaddingLeft) * -1);
|
|
28984
28909
|
--pf-v5-c-table__tree-view-main--c-table__check--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
@@ -29055,6 +28980,10 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
29055
28980
|
.pf-v5-c-table__tree-view-main > .pf-v5-c-table__toggle .pf-v5-c-table__toggle-icon {
|
|
29056
28981
|
min-width: var(--pf-v5-c-table--m-tree-view__toggle__toggle-icon--MinWidth);
|
|
29057
28982
|
}
|
|
28983
|
+
.pf-v5-c-table__tree-view-main > .pf-v5-c-table__toggle .pf-v5-c-button {
|
|
28984
|
+
margin-block-start: -50%;
|
|
28985
|
+
margin-inline-end: var(--pf-v5-c-table__tree-view-main--c-button--MarginRight);
|
|
28986
|
+
}
|
|
29058
28987
|
.pf-v5-c-table__tree-view-main > .pf-v5-c-table__check {
|
|
29059
28988
|
margin-inline-end: var(--pf-v5-c-table__tree-view-main--c-table__check--MarginRight);
|
|
29060
28989
|
}
|