@patternfly/patternfly 6.0.0-alpha.33 → 6.0.0-alpha.38
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/CODE_OF_CONDUCT.md +1 -2
- package/assets/images/PF-HorizontalLogo-Color.svg +29 -0
- package/assets/images/PF-HorizontalLogo-Reverse.svg +28 -0
- package/assets/images/PF-IconLogo-color.svg +17 -0
- package/base/patternfly-variables.css +2 -0
- package/base/tokens/_tokens-default.scss +2 -0
- package/components/Backdrop/backdrop.css +6 -2
- package/components/Backdrop/backdrop.scss +5 -2
- package/components/Banner/banner.css +4 -0
- package/components/Banner/banner.scss +5 -0
- package/components/Card/card.css +3 -0
- package/components/Card/card.scss +8 -0
- package/components/EmptyState/empty-state.css +57 -34
- package/components/EmptyState/empty-state.scss +63 -34
- package/components/ExpandableSection/expandable-section.css +10 -17
- package/components/ExpandableSection/expandable-section.scss +13 -20
- package/components/Form/form.css +6 -0
- package/components/Form/form.scss +4 -1
- package/components/MenuToggle/menu-toggle.css +1 -0
- package/components/MenuToggle/menu-toggle.scss +2 -0
- package/components/Popover/popover.css +0 -2
- package/components/Popover/popover.scss +2 -2
- package/components/SimpleList/simple-list.css +35 -52
- package/components/SimpleList/simple-list.scss +41 -51
- package/components/Table/table.scss +1 -0
- package/components/Tooltip/tooltip.css +0 -2
- package/components/Tooltip/tooltip.scss +3 -3
- package/components/Truncate/truncate.css +4 -0
- package/components/Truncate/truncate.scss +3 -0
- package/docs/components/Accordion/examples/Accordion.md +6 -6
- package/docs/components/Alert/examples/Alert.md +2 -2
- package/docs/components/Brand/examples/Brand.md +9 -33
- package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
- package/docs/components/Card/examples/Card.md +18 -20
- package/docs/components/Check/examples/Check.md +1 -0
- package/docs/components/CodeBlock/examples/CodeBlock.md +4 -4
- package/docs/components/Content/examples/Content.md +5 -5
- package/docs/components/EmptyState/examples/EmptyState.md +45 -1
- package/docs/components/ExpandableSection/examples/ExpandableSection.md +2 -4
- package/docs/components/InlineEdit/examples/InlineEdit.md +3 -1
- package/docs/components/Label/examples/Label.md +11 -11
- package/docs/components/Nav/examples/Navigation.css +18 -2
- package/docs/components/Nav/examples/Navigation.md +1 -1
- package/docs/components/Radio/examples/Radio.md +1 -1
- package/docs/components/SimpleList/examples/SimpleList.md +3 -3
- package/docs/components/Table/examples/Table.md +8 -8
- package/docs/components/Truncate/examples/Truncate.css +2 -2
- package/docs/layouts/Flex/examples/Flex.md +11 -11
- package/package.json +32 -32
- package/patternfly-base-no-globals-theme-dark-unversioned.css +2 -0
- package/patternfly-base-no-globals.css +2 -0
- package/patternfly-base-theme-dark-unversioned.css +2 -0
- package/patternfly-base.css +2 -0
- package/patternfly-no-globals.css +128 -113
- package/patternfly-theme-dark-unversioned.css +128 -113
- package/patternfly.css +128 -113
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/components/SimpleList/themes/dark/simple-list.scss +0 -14
|
@@ -499,6 +499,7 @@ html .ws-preview {
|
|
|
499
499
|
--pf-t--global--border--width--300: 3px;
|
|
500
500
|
--pf-t--global--border--width--200: 2px;
|
|
501
501
|
--pf-t--global--border--width--100: 1px;
|
|
502
|
+
--pf-t--global--icon--size--500: 96px;
|
|
502
503
|
--pf-t--global--icon--size--400: 56px;
|
|
503
504
|
--pf-t--global--icon--size--300: 22px;
|
|
504
505
|
--pf-t--global--icon--size--250: 16px;
|
|
@@ -615,6 +616,7 @@ html .ws-preview {
|
|
|
615
616
|
--pf-t--global--icon--color--300: var(--pf-t--color--white);
|
|
616
617
|
--pf-t--global--icon--color--200: var(--pf-t--color--gray--50);
|
|
617
618
|
--pf-t--global--icon--color--100: var(--pf-t--color--gray--90);
|
|
619
|
+
--pf-t--global--icon--size--3xl: var(--pf-t--global--icon--size--500);
|
|
618
620
|
--pf-t--global--icon--size--2xl: var(--pf-t--global--icon--size--400);
|
|
619
621
|
--pf-t--global--icon--size--xl: var(--pf-t--global--icon--size--300);
|
|
620
622
|
--pf-t--global--icon--size--lg: var(--pf-t--global--icon--size--250);
|
|
@@ -7454,10 +7456,14 @@ button) {
|
|
|
7454
7456
|
}
|
|
7455
7457
|
}
|
|
7456
7458
|
|
|
7459
|
+
:root,
|
|
7457
7460
|
.pf-v5-c-backdrop {
|
|
7458
7461
|
--pf-v5-c-backdrop--Position: fixed;
|
|
7459
|
-
--pf-v5-c-backdrop--ZIndex: var(--pf-
|
|
7460
|
-
--pf-v5-c-backdrop--BackgroundColor: var(--pf-
|
|
7462
|
+
--pf-v5-c-backdrop--ZIndex: var(--pf-t--global--Zindex--lg);
|
|
7463
|
+
--pf-v5-c-backdrop--BackgroundColor: var(--pf-t--global--background--color--backdrop--default);
|
|
7464
|
+
}
|
|
7465
|
+
|
|
7466
|
+
.pf-v5-c-backdrop {
|
|
7461
7467
|
position: var(--pf-v5-c-backdrop--Position);
|
|
7462
7468
|
inset-block-start: 0;
|
|
7463
7469
|
inset-inline-start: 0;
|
|
@@ -7656,6 +7662,10 @@ button) {
|
|
|
7656
7662
|
--pf-v5-c-banner--BackgroundColor: var(--pf-v5-c-banner--m-info--BackgroundColor);
|
|
7657
7663
|
--pf-v5-c-banner--Color: var(--pf-v5-c-banner--m-info--Color);
|
|
7658
7664
|
}
|
|
7665
|
+
.pf-v5-c-banner.pf-m-custom {
|
|
7666
|
+
--pf-v5-c-banner--BackgroundColor: var(--pf-v5-c-banner--m-custom--BackgroundColor);
|
|
7667
|
+
--pf-v5-c-banner--Color: var(--pf-v5-c-banner--m-custom--Color);
|
|
7668
|
+
}
|
|
7659
7669
|
.pf-v5-c-banner.pf-m-red {
|
|
7660
7670
|
--pf-v5-c-banner--BackgroundColor: var(--pf-v5-c-banner--m-red--BackgroundColor);
|
|
7661
7671
|
--pf-v5-c-banner--Color: var(--pf-v5-c-banner--m-red--Color);
|
|
@@ -8745,6 +8755,9 @@ button.pf-v5-c-breadcrumb__link {
|
|
|
8745
8755
|
background-color: var(--pf-v5-c-card--BackgroundColor);
|
|
8746
8756
|
box-shadow: var(--pf-v5-c-card--BoxShadow);
|
|
8747
8757
|
}
|
|
8758
|
+
.pf-v5-c-card.pf-m-selectable .pf-v5-c-card__selectable-actions :is(.pf-v5-c-check, .pf-v5-c-radio) {
|
|
8759
|
+
gap: 0;
|
|
8760
|
+
}
|
|
8748
8761
|
.pf-v5-c-card.pf-m-selectable, .pf-v5-c-card.pf-m-clickable {
|
|
8749
8762
|
isolation: isolate;
|
|
8750
8763
|
box-shadow: none;
|
|
@@ -14908,44 +14921,52 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
14908
14921
|
background: transparent;
|
|
14909
14922
|
}
|
|
14910
14923
|
|
|
14911
|
-
|
|
14912
|
-
--pf-v5-c-empty-state--PaddingTop: var(--pf-
|
|
14913
|
-
--pf-v5-c-empty-state--PaddingRight: var(--pf-
|
|
14914
|
-
--pf-v5-c-empty-state--PaddingBottom: var(--pf-
|
|
14915
|
-
--pf-v5-c-empty-state--PaddingLeft: var(--pf-
|
|
14916
|
-
--pf-v5-c-empty-state--m-xs--PaddingTop: var(--pf-
|
|
14917
|
-
--pf-v5-c-empty-state--m-xs--PaddingRight: var(--pf-
|
|
14918
|
-
--pf-v5-c-empty-state--m-xs--PaddingBottom: var(--pf-
|
|
14919
|
-
--pf-v5-c-empty-state--m-xs--PaddingLeft: var(--pf-
|
|
14924
|
+
:root {
|
|
14925
|
+
--pf-v5-c-empty-state--PaddingTop: var(--pf-t--global--spacer--xl);
|
|
14926
|
+
--pf-v5-c-empty-state--PaddingRight: var(--pf-t--global--spacer--xl);
|
|
14927
|
+
--pf-v5-c-empty-state--PaddingBottom: var(--pf-t--global--spacer--xl);
|
|
14928
|
+
--pf-v5-c-empty-state--PaddingLeft: var(--pf-t--global--spacer--xl);
|
|
14929
|
+
--pf-v5-c-empty-state--m-xs--PaddingTop: var(--pf-t--global--spacer--md);
|
|
14930
|
+
--pf-v5-c-empty-state--m-xs--PaddingRight: var(--pf-t--global--spacer--md);
|
|
14931
|
+
--pf-v5-c-empty-state--m-xs--PaddingBottom: var(--pf-t--global--spacer--md);
|
|
14932
|
+
--pf-v5-c-empty-state--m-xs--PaddingLeft: var(--pf-t--global--spacer--md);
|
|
14920
14933
|
--pf-v5-c-empty-state__content--MaxWidth: none;
|
|
14921
14934
|
--pf-v5-c-empty-state--m-xs__content--MaxWidth: 21.875rem;
|
|
14922
14935
|
--pf-v5-c-empty-state--m-sm__content--MaxWidth: 25rem;
|
|
14923
14936
|
--pf-v5-c-empty-state--m-lg__content--MaxWidth: 37.5rem;
|
|
14924
|
-
--pf-v5-c-empty-state__icon--MarginBottom: var(--pf-
|
|
14925
|
-
--pf-v5-c-empty-state__icon--FontSize: var(--pf-
|
|
14926
|
-
--pf-v5-c-empty-state__icon--Color: var(--pf-
|
|
14927
|
-
--pf-v5-c-empty-state--m-xs__icon--MarginBottom: var(--pf-
|
|
14928
|
-
--pf-v5-c-empty-state--m-xl__icon--MarginBottom: var(--pf-
|
|
14929
|
-
--pf-v5-c-empty-state--m-xl__icon--FontSize:
|
|
14930
|
-
--pf-v5-c-empty-
|
|
14931
|
-
--pf-v5-c-empty-
|
|
14932
|
-
--pf-v5-c-empty-
|
|
14933
|
-
--pf-v5-c-empty-
|
|
14934
|
-
--pf-v5-c-empty-state--m-
|
|
14935
|
-
--pf-v5-c-empty-
|
|
14936
|
-
--pf-v5-c-empty-
|
|
14937
|
-
--pf-v5-c-empty-
|
|
14938
|
-
--pf-v5-c-empty-
|
|
14939
|
-
--pf-v5-c-empty-state--
|
|
14940
|
-
--pf-v5-c-empty-state--m-
|
|
14941
|
-
--pf-v5-c-empty-state--m-
|
|
14942
|
-
--pf-v5-c-empty-
|
|
14943
|
-
--pf-v5-c-empty-
|
|
14944
|
-
--pf-v5-c-empty-
|
|
14945
|
-
--pf-v5-c-empty-
|
|
14946
|
-
--pf-v5-c-empty-state--m-
|
|
14947
|
-
--pf-v5-c-empty-
|
|
14948
|
-
--pf-v5-c-empty-
|
|
14937
|
+
--pf-v5-c-empty-state__icon--MarginBottom: var(--pf-t--global--spacer--lg);
|
|
14938
|
+
--pf-v5-c-empty-state__icon--FontSize: var(--pf-t--global--icon--size--2xl);
|
|
14939
|
+
--pf-v5-c-empty-state__icon--Color: var(--pf-t--global--icon--color--subtle);
|
|
14940
|
+
--pf-v5-c-empty-state--m-xs__icon--MarginBottom: var(--pf-t--global--spacer--lg);
|
|
14941
|
+
--pf-v5-c-empty-state--m-xl__icon--MarginBottom: var(--pf-t--global--spacer--xl);
|
|
14942
|
+
--pf-v5-c-empty-state--m-xl__icon--FontSize: var(--pf-t--global--icon--size--3xl);
|
|
14943
|
+
--pf-v5-c-empty-state--m-danger__icon--Color: var(--pf-t--global--icon--color--status--danger--default);
|
|
14944
|
+
--pf-v5-c-empty-state--m-warning__icon--Color: var(--pf-t--global--icon--color--status--warning--default);
|
|
14945
|
+
--pf-v5-c-empty-state--m-success__icon--Color: var(--pf-t--global--icon--color--status--success--default);
|
|
14946
|
+
--pf-v5-c-empty-state--m-info__icon--Color: var(--pf-t--global--icon--color--status--info--default);
|
|
14947
|
+
--pf-v5-c-empty-state--m-custom__icon--Color: var(--pf-t--global--icon--color--status--custom--default);
|
|
14948
|
+
--pf-v5-c-empty-state__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
|
14949
|
+
--pf-v5-c-empty-state__title-text--FontSize: var(--pf-t--global--font--size--heading--md);
|
|
14950
|
+
--pf-v5-c-empty-state__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
|
14951
|
+
--pf-v5-c-empty-state__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
14952
|
+
--pf-v5-c-empty-state--m-xs__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
14953
|
+
--pf-v5-c-empty-state--m-xl__title-text--FontSize: var(--pf-t--global--font--size--heading--2xl);
|
|
14954
|
+
--pf-v5-c-empty-state--m-xl__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
14955
|
+
--pf-v5-c-empty-state__body--MarginTop: var(--pf-t--global--spacer--md);
|
|
14956
|
+
--pf-v5-c-empty-state__body--Color: var(--pf-t--global--text--color--subtle);
|
|
14957
|
+
--pf-v5-c-empty-state--body--FontSize: var(--pf-t--global--font--size--body--lg);
|
|
14958
|
+
--pf-v5-c-empty-state--m-xs__body--FontSize: var(--pf-t--global--font--size--body--lg);
|
|
14959
|
+
--pf-v5-c-empty-state--m-xs__body--MarginTop: var(--pf-t--global--spacer--md);
|
|
14960
|
+
--pf-v5-c-empty-state--m-xl__body--FontSize: var(--pf-t--global--font--size--body--lg);
|
|
14961
|
+
--pf-v5-c-empty-state--m-xl__body--MarginTop: var(--pf-t--global--spacer--xl);
|
|
14962
|
+
--pf-v5-c-empty-state__footer--RowGap: var(--pf-t--global--spacer--sm);
|
|
14963
|
+
--pf-v5-c-empty-state__footer--MarginTop: var(--pf-t--global--spacer--xl);
|
|
14964
|
+
--pf-v5-c-empty-state--m-xs__footer--MarginTop: var(--pf-t--global--spacer--md);
|
|
14965
|
+
--pf-v5-c-empty-state__actions--RowGap: var(--pf-t--global--spacer--sm);
|
|
14966
|
+
--pf-v5-c-empty-state__actions--ColumnGap: var(--pf-t--global--spacer--md);
|
|
14967
|
+
}
|
|
14968
|
+
|
|
14969
|
+
.pf-v5-c-empty-state {
|
|
14949
14970
|
display: flex;
|
|
14950
14971
|
align-items: center;
|
|
14951
14972
|
justify-content: center;
|
|
@@ -14984,6 +15005,21 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
14984
15005
|
.pf-v5-c-empty-state.pf-m-full-height {
|
|
14985
15006
|
height: 100%;
|
|
14986
15007
|
}
|
|
15008
|
+
.pf-v5-c-empty-state.pf-m-danger {
|
|
15009
|
+
--pf-v5-c-empty-state__icon--Color: var(--pf-v5-c-empty-state--m-danger__icon--Color);
|
|
15010
|
+
}
|
|
15011
|
+
.pf-v5-c-empty-state.pf-m-warning {
|
|
15012
|
+
--pf-v5-c-empty-state__icon--Color: var(--pf-v5-c-empty-state--m-warning__icon--Color);
|
|
15013
|
+
}
|
|
15014
|
+
.pf-v5-c-empty-state.pf-m-success {
|
|
15015
|
+
--pf-v5-c-empty-state__icon--Color: var(--pf-v5-c-empty-state--m-success__icon--Color);
|
|
15016
|
+
}
|
|
15017
|
+
.pf-v5-c-empty-state.pf-m-info {
|
|
15018
|
+
--pf-v5-c-empty-state__icon--Color: var(--pf-v5-c-empty-state--m-info__icon--Color);
|
|
15019
|
+
}
|
|
15020
|
+
.pf-v5-c-empty-state.pf-m-custom {
|
|
15021
|
+
--pf-v5-c-empty-state__icon--Color: var(--pf-v5-c-empty-state--m-custom__icon--Color);
|
|
15022
|
+
}
|
|
14987
15023
|
|
|
14988
15024
|
.pf-v5-c-empty-state__content {
|
|
14989
15025
|
max-width: var(--pf-v5-c-empty-state__content--MaxWidth);
|
|
@@ -15029,11 +15065,6 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
15029
15065
|
--pf-v5-c-expandable-section__toggle--PaddingRight: var(--pf-t--global--spacer--md);
|
|
15030
15066
|
--pf-v5-c-expandable-section__toggle--PaddingBottom: var(--pf-t--global--spacer--sm);
|
|
15031
15067
|
--pf-v5-c-expandable-section__toggle--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
15032
|
-
--pf-v5-c-expandable-section__toggle--Color: var(--pf-t--global--color--brand--default);
|
|
15033
|
-
--pf-v5-c-expandable-section__toggle--hover--Color: var(--pf-t--global--color--brand--hover);
|
|
15034
|
-
--pf-v5-c-expandable-section__toggle--active--Color: var(--pf-t--global--color--brand--hover);
|
|
15035
|
-
--pf-v5-c-expandable-section__toggle--focus--Color: var(--pf-t--global--color--brand--hover);
|
|
15036
|
-
--pf-v5-c-expandable-section__toggle--m-expanded--Color: var(--pf-t--global--color--brand--hover);
|
|
15037
15068
|
--pf-v5-c-expandable-section__toggle--BackgroundColor: transparent;
|
|
15038
15069
|
--pf-v5-c-expandable-section__toggle--ColumnGap: calc(var(--pf-t--global--spacer--xs) + var(--pf-t--global--spacer--sm));
|
|
15039
15070
|
--pf-v5-c-expandable-section__toggle-icon--MinWidth: 1em;
|
|
@@ -15043,6 +15074,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
15043
15074
|
--pf-v5-c-expandable-section__toggle-icon--m-expand-top--Rotate: 0;
|
|
15044
15075
|
--pf-v5-c-expandable-section--m-expanded__toggle-icon--Rotate: 90deg;
|
|
15045
15076
|
--pf-v5-c-expandable-section--m-expanded__toggle-icon--m-expand-top--Rotate: -90deg;
|
|
15077
|
+
--pf-v5-c-expandable-section__toggle-text--Color: var(--pf-t--global--color--brand--default);
|
|
15078
|
+
--pf-v5-c-expandable-section__toggle-text--hover--Color: var(--pf-t--global--color--brand--hover);
|
|
15079
|
+
--pf-v5-c-expandable-section--m-expanded__toggle-text--Color: var(--pf-t--global--color--brand--hover);
|
|
15046
15080
|
--pf-v5-c-expandable-section__content--PaddingTop: var(--pf-t--global--spacer--sm);
|
|
15047
15081
|
--pf-v5-c-expandable-section__content--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
15048
15082
|
--pf-v5-c-expandable-section__content--PaddingBottom: var(--pf-t--global--spacer--sm);
|
|
@@ -15077,7 +15111,7 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
15077
15111
|
}
|
|
15078
15112
|
|
|
15079
15113
|
.pf-v5-c-expandable-section.pf-m-expanded {
|
|
15080
|
-
--pf-v5-c-expandable-section__toggle--Color: var(--pf-v5-c-expandable-
|
|
15114
|
+
--pf-v5-c-expandable-section__toggle-text--Color: var(--pf-v5-c-expandable-section--m-expanded__toggle-text--Color);
|
|
15081
15115
|
--pf-v5-c-expandable-section__toggle-icon--Rotate: var(--pf-v5-c-expandable-section--m-expanded__toggle-icon--Rotate);
|
|
15082
15116
|
--pf-v5-c-expandable-section__toggle-icon--m-expand-top--Rotate: var(--pf-v5-c-expandable-section--m-expanded__toggle-icon--m-expand-top--Rotate);
|
|
15083
15117
|
--pf-v5-c-expandable-section--m-display-lg--after--BackgroundColor: var(--pf-v5-c-expandable-section--m-display-lg--m-expanded--after--BackgroundColor);
|
|
@@ -15132,23 +15166,14 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
15132
15166
|
padding-block-end: var(--pf-v5-c-expandable-section__toggle--PaddingBottom);
|
|
15133
15167
|
padding-inline-start: var(--pf-v5-c-expandable-section__toggle--PaddingLeft);
|
|
15134
15168
|
padding-inline-end: var(--pf-v5-c-expandable-section__toggle--PaddingRight);
|
|
15135
|
-
color: var(--pf-v5-c-expandable-section__toggle--Color);
|
|
15136
15169
|
background-color: var(--pf-v5-c-expandable-section__toggle--BackgroundColor);
|
|
15137
15170
|
border: none;
|
|
15138
15171
|
border-radius: var(--pf-v5-c-expandable-section__toggle--BorderRadius, 0);
|
|
15139
15172
|
}
|
|
15140
|
-
.pf-v5-c-expandable-section__toggle:hover {
|
|
15141
|
-
--pf-v5-c-expandable-section__toggle--Color: var(--pf-v5-c-expandable-section__toggle--hover--Color);
|
|
15173
|
+
.pf-v5-c-expandable-section__toggle:is(:hover, :focus) {
|
|
15174
|
+
--pf-v5-c-expandable-section__toggle-text--Color: var(--pf-v5-c-expandable-section__toggle-text--hover--Color);
|
|
15142
15175
|
--pf-v5-c-expandable-section__toggle--BackgroundColor: var(--pf-v5-c-expandable-section__toggle--hover--BackgroundColor, initial);
|
|
15143
15176
|
}
|
|
15144
|
-
.pf-v5-c-expandable-section__toggle:active, .pf-v5-c-expandable-section__toggle.pf-m-active {
|
|
15145
|
-
--pf-v5-c-expandable-section__toggle--Color: var(--pf-v5-c-expandable-section__toggle--active--Color);
|
|
15146
|
-
--pf-v5-c-expandable-section__toggle--BackgroundColor: var(--pf-v5-c-expandable-section__toggle--active--BackgroundColor, initial);
|
|
15147
|
-
}
|
|
15148
|
-
.pf-v5-c-expandable-section__toggle:focus {
|
|
15149
|
-
--pf-v5-c-expandable-section__toggle--Color: var(--pf-v5-c-expandable-section__toggle--focus--Color);
|
|
15150
|
-
--pf-v5-c-expandable-section__toggle--BackgroundColor: var(--pf-v5-c-expandable-section__toggle--focus--BackgroundColor, initial);
|
|
15151
|
-
}
|
|
15152
15177
|
|
|
15153
15178
|
.pf-v5-c-expandable-section__toggle-icon {
|
|
15154
15179
|
min-width: var(--pf-v5-c-expandable-section__toggle-icon--MinWidth);
|
|
@@ -15164,6 +15189,10 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
15164
15189
|
--pf-v5-c-expandable-section__toggle-icon--Rotate: var(--pf-v5-c-expandable-section__toggle-icon--m-expand-top--Rotate);
|
|
15165
15190
|
}
|
|
15166
15191
|
|
|
15192
|
+
.pf-v5-c-expandable-section__toggle-text {
|
|
15193
|
+
color: var(--pf-v5-c-expandable-section__toggle-text--Color);
|
|
15194
|
+
}
|
|
15195
|
+
|
|
15167
15196
|
.pf-v5-c-expandable-section__content {
|
|
15168
15197
|
max-width: var(--pf-v5-c-expandable-section__content--MaxWidth);
|
|
15169
15198
|
padding-block-start: var(--pf-v5-c-expandable-section__content--PaddingTop);
|
|
@@ -15485,6 +15514,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
15485
15514
|
max-width: var(--pf-v5-c-form--m-limit-width--MaxWidth);
|
|
15486
15515
|
}
|
|
15487
15516
|
|
|
15517
|
+
.pf-v5-c-form__group {
|
|
15518
|
+
min-width: 0;
|
|
15519
|
+
}
|
|
15488
15520
|
.pf-v5-c-form__group.pf-m-action {
|
|
15489
15521
|
margin-block-start: var(--pf-v5-c-form__group--m-action--MarginTop);
|
|
15490
15522
|
overflow: hidden;
|
|
@@ -15573,6 +15605,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
15573
15605
|
--pf-v5-c-form__group-label-help--Color: var(--pf-v5-c-form__group-label-help--focus--Color);
|
|
15574
15606
|
}
|
|
15575
15607
|
|
|
15608
|
+
.pf-v5-c-form__group-control {
|
|
15609
|
+
min-width: 0;
|
|
15610
|
+
}
|
|
15576
15611
|
.pf-v5-c-form__group-control.pf-m-inline {
|
|
15577
15612
|
display: flex;
|
|
15578
15613
|
flex-flow: row wrap;
|
|
@@ -19365,6 +19400,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
19365
19400
|
align-self: stretch;
|
|
19366
19401
|
}
|
|
19367
19402
|
.pf-v5-c-menu-toggle.pf-m-split-button > .pf-v5-c-check .pf-v5-c-check__input {
|
|
19403
|
+
--pf-v5-c-check__input--TranslateY: 0;
|
|
19368
19404
|
align-self: center;
|
|
19369
19405
|
}
|
|
19370
19406
|
.pf-v5-c-menu-toggle.pf-m-split-button.pf-m-action:where(:not(.pf-m-primary, .pf-m-secondary, .pf-m-disabled)) > *::after {
|
|
@@ -23140,12 +23176,10 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
23140
23176
|
|
|
23141
23177
|
.pf-v5-c-popover__arrow {
|
|
23142
23178
|
position: absolute;
|
|
23143
|
-
/* stylelint-disable liberty/use-logical-spec */
|
|
23144
23179
|
top: var(--pf-v5-c-popover__arrow--Top, auto);
|
|
23145
23180
|
right: var(--pf-v5-c-popover__arrow--Right, auto);
|
|
23146
23181
|
bottom: var(--pf-v5-c-popover__arrow--Bottom, auto);
|
|
23147
23182
|
left: var(--pf-v5-c-popover__arrow--Left, auto);
|
|
23148
|
-
/* stylelint-enable */
|
|
23149
23183
|
width: var(--pf-v5-c-popover__arrow--Width);
|
|
23150
23184
|
height: var(--pf-v5-c-popover__arrow--Height);
|
|
23151
23185
|
pointer-events: none;
|
|
@@ -24968,34 +25002,31 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
24968
25002
|
--pf-v5-c-sidebar__panel--FlexBasis: 100%;
|
|
24969
25003
|
}
|
|
24970
25004
|
}
|
|
24971
|
-
.pf-v5-c-simple-list {
|
|
24972
|
-
--pf-v5-c-simple-list__item-link--PaddingTop: var(--pf-
|
|
24973
|
-
--pf-v5-c-simple-list__item-link--PaddingRight: var(--pf-
|
|
24974
|
-
--pf-v5-c-simple-list__item-link--PaddingBottom: var(--pf-
|
|
24975
|
-
--pf-v5-c-simple-list__item-link--PaddingLeft: var(--pf-
|
|
24976
|
-
--pf-v5-c-simple-list__item-link--BackgroundColor: var(--pf-
|
|
24977
|
-
--pf-v5-c-simple-list__item-link--Color: var(--pf-
|
|
24978
|
-
--pf-v5-c-simple-list__item-link--FontSize: var(--pf-
|
|
24979
|
-
--pf-v5-c-simple-list__item-link--
|
|
24980
|
-
--pf-v5-c-simple-list__item-link--m-current--
|
|
24981
|
-
--pf-v5-c-simple-list__item-link--
|
|
24982
|
-
--pf-v5-c-simple-list__item-link--
|
|
24983
|
-
--pf-v5-c-simple-list__item-link--
|
|
24984
|
-
--pf-v5-c-simple-list__item-link--
|
|
24985
|
-
--pf-v5-c-simple-list__item-link--
|
|
24986
|
-
--pf-v5-c-simple-list__item-link--
|
|
24987
|
-
--pf-v5-c-simple-list__item-link--
|
|
24988
|
-
--pf-v5-c-simple-
|
|
24989
|
-
--pf-v5-c-simple-
|
|
24990
|
-
--pf-v5-c-simple-
|
|
24991
|
-
--pf-v5-c-simple-list__title--
|
|
24992
|
-
--pf-v5-c-simple-list__title--
|
|
24993
|
-
--pf-v5-c-simple-list__title--
|
|
24994
|
-
--pf-v5-c-simple-list__title--
|
|
24995
|
-
--pf-v5-c-simple-
|
|
24996
|
-
--pf-v5-c-simple-list__title--Color: var(--pf-v5-global--Color--dark-200);
|
|
24997
|
-
--pf-v5-c-simple-list__title--FontWeight: var(--pf-v5-global--FontWeight--bold);
|
|
24998
|
-
--pf-v5-c-simple-list__section--section--MarginTop: var(--pf-v5-global--spacer--sm);
|
|
25005
|
+
:root, .pf-v5-c-simple-list {
|
|
25006
|
+
--pf-v5-c-simple-list__item-link--PaddingTop: var(--pf-t--global--spacer--xs);
|
|
25007
|
+
--pf-v5-c-simple-list__item-link--PaddingRight: var(--pf-t--global--spacer--md);
|
|
25008
|
+
--pf-v5-c-simple-list__item-link--PaddingBottom: var(--pf-t--global--spacer--xs);
|
|
25009
|
+
--pf-v5-c-simple-list__item-link--PaddingLeft: var(--pf-t--global--spacer--md);
|
|
25010
|
+
--pf-v5-c-simple-list__item-link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
|
25011
|
+
--pf-v5-c-simple-list__item-link--Color: var(--pf-t--global--text--color--subtle);
|
|
25012
|
+
--pf-v5-c-simple-list__item-link--FontSize: var(--pf-t--global--font--size--body);
|
|
25013
|
+
--pf-v5-c-simple-list__item-link--m-current--Color: var(--pf-t--global--text--color--regular);
|
|
25014
|
+
--pf-v5-c-simple-list__item-link--m-current--BackgroundColor: var(--pf-t--global--background--color--action--plain--selected);
|
|
25015
|
+
--pf-v5-c-simple-list__item-link--hover--Color: var(--pf-t--global--text--color--subtle);
|
|
25016
|
+
--pf-v5-c-simple-list__item-link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
25017
|
+
--pf-v5-c-simple-list__item-link--MixBlendMode: var(--pf-t--global--background--color--action--plain--hover--blend);
|
|
25018
|
+
--pf-v5-c-simple-list__item-link--BorderRadius: var(--pf-t--global--border--radius--tiny);
|
|
25019
|
+
--pf-v5-c-simple-list__item-link--m-link--Color: var(--pf-t--global--text--color--link--default);
|
|
25020
|
+
--pf-v5-c-simple-list__item-link--m-link--m-current--Color: var(--pf-t--global--text--color--link--hover);
|
|
25021
|
+
--pf-v5-c-simple-list__item-link--m-link--hover--Color: var(--pf-t--global--text--color--link--hover);
|
|
25022
|
+
--pf-v5-c-simple-list__title--PaddingTop: var(--pf-t--global--spacer--sm);
|
|
25023
|
+
--pf-v5-c-simple-list__title--PaddingRight: var(--pf-t--global--spacer--md);
|
|
25024
|
+
--pf-v5-c-simple-list__title--PaddingBottom: var(--pf-t--global--spacer--sm);
|
|
25025
|
+
--pf-v5-c-simple-list__title--PaddingLeft: var(--pf-t--global--spacer--md);
|
|
25026
|
+
--pf-v5-c-simple-list__title--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
25027
|
+
--pf-v5-c-simple-list__title--Color: var(--pf-t--global--text--color--regular);
|
|
25028
|
+
--pf-v5-c-simple-list__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
25029
|
+
--pf-v5-c-simple-list__section--section--MarginTop: var(--pf-t--global--spacer--sm);
|
|
24999
25030
|
}
|
|
25000
25031
|
|
|
25001
25032
|
.pf-v5-c-simple-list__item-link {
|
|
@@ -25006,31 +25037,28 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
25006
25037
|
padding-inline-start: var(--pf-v5-c-simple-list__item-link--PaddingLeft);
|
|
25007
25038
|
padding-inline-end: var(--pf-v5-c-simple-list__item-link--PaddingRight);
|
|
25008
25039
|
font-size: var(--pf-v5-c-simple-list__item-link--FontSize);
|
|
25009
|
-
font-weight: var(--pf-v5-c-simple-list__item-link--FontWeight);
|
|
25010
25040
|
color: var(--pf-v5-c-simple-list__item-link--Color);
|
|
25011
25041
|
text-align: start;
|
|
25042
|
+
text-decoration: none;
|
|
25012
25043
|
background-color: var(--pf-v5-c-simple-list__item-link--BackgroundColor);
|
|
25013
25044
|
border: none;
|
|
25045
|
+
border-radius: var(--pf-v5-c-simple-list__item-link--BorderRadius);
|
|
25046
|
+
}
|
|
25047
|
+
.pf-v5-c-simple-list__item-link.pf-m-link {
|
|
25048
|
+
--pf-v5-c-simple-list__item-link--Color: var(--pf-v5-c-simple-list__item-link--m-link--Color);
|
|
25049
|
+
--pf-v5-c-simple-list__item-link--hover--Color: var(--pf-v5-c-simple-list__item-link--m-link--m-current--Color);
|
|
25050
|
+
--pf-v5-c-simple-list__item-link--m-current--Color: var(--pf-v5-c-simple-list__item-link--m-link--hover--Color);
|
|
25014
25051
|
}
|
|
25015
|
-
.pf-v5-c-simple-list__item-link:hover {
|
|
25052
|
+
.pf-v5-c-simple-list__item-link:hover, .pf-v5-c-simple-list__item-link:focus {
|
|
25016
25053
|
--pf-v5-c-simple-list__item-link--BackgroundColor: var(--pf-v5-c-simple-list__item-link--hover--BackgroundColor);
|
|
25017
25054
|
--pf-v5-c-simple-list__item-link--Color: var(--pf-v5-c-simple-list__item-link--hover--Color);
|
|
25018
25055
|
text-decoration: none;
|
|
25019
|
-
|
|
25020
|
-
.pf-v5-c-simple-list__item-link:focus {
|
|
25021
|
-
--pf-v5-c-simple-list__item-link--FontWeight: var(--pf-v5-c-simple-list__item-link--focus--FontWeight);
|
|
25022
|
-
--pf-v5-c-simple-list__item-link--BackgroundColor: var(--pf-v5-c-simple-list__item-link--focus--BackgroundColor);
|
|
25023
|
-
--pf-v5-c-simple-list__item-link--Color: var(--pf-v5-c-simple-list__item-link--focus--Color);
|
|
25024
|
-
}
|
|
25025
|
-
.pf-v5-c-simple-list__item-link:active {
|
|
25026
|
-
--pf-v5-c-simple-list__item-link--FontWeight: var(--pf-v5-c-simple-list__item-link--active--FontWeight);
|
|
25027
|
-
--pf-v5-c-simple-list__item-link--BackgroundColor: var(--pf-v5-c-simple-list__item-link--active--BackgroundColor);
|
|
25028
|
-
--pf-v5-c-simple-list__item-link--Color: var(--pf-v5-c-simple-list__item-link--active--Color);
|
|
25056
|
+
mix-blend-mode: var(--pf-v5-c-simple-list__item-link--MixBlendMode);
|
|
25029
25057
|
}
|
|
25030
25058
|
.pf-v5-c-simple-list__item-link.pf-m-current {
|
|
25031
|
-
--pf-v5-c-simple-list__item-link--FontWeight: var(--pf-v5-c-simple-list__item-link--m-current--FontWeight);
|
|
25032
25059
|
--pf-v5-c-simple-list__item-link--BackgroundColor: var(--pf-v5-c-simple-list__item-link--m-current--BackgroundColor);
|
|
25033
25060
|
--pf-v5-c-simple-list__item-link--Color: var(--pf-v5-c-simple-list__item-link--m-current--Color);
|
|
25061
|
+
mix-blend-mode: var(--pf-v5-c-simple-list__item-link--MixBlendMode);
|
|
25034
25062
|
}
|
|
25035
25063
|
|
|
25036
25064
|
.pf-v5-c-simple-list__title {
|
|
@@ -25047,21 +25075,6 @@ label.pf-v5-c-radio, .pf-v5-c-radio__label,
|
|
|
25047
25075
|
margin-block-start: var(--pf-v5-c-simple-list__section--section--MarginTop);
|
|
25048
25076
|
}
|
|
25049
25077
|
|
|
25050
|
-
:where(.pf-theme-dark) .pf-v5-c-wizard__header .pf-v5-c-button, :where(.pf-theme-dark) .pf-v5-c-log-viewer.pf-m-dark .pf-v5-c-log-viewer__main .pf-v5-c-button {
|
|
25051
|
-
--pf-v5-c-button--m-primary--BackgroundColor: var(--pf-v5-global--primary-color--300);
|
|
25052
|
-
}
|
|
25053
|
-
|
|
25054
|
-
:where(.pf-theme-dark) .pf-v5-c-simple-list {
|
|
25055
|
-
--pf-v5-c-simple-list__item-link--m-current--Color: var(--pf-v5-global--active-color--100);
|
|
25056
|
-
--pf-v5-c-simple-list__item-link--m-current--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
|
|
25057
|
-
--pf-v5-c-simple-list__item-link--hover--Color: var(--pf-v5-global--Color--100);
|
|
25058
|
-
--pf-v5-c-simple-list__item-link--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
|
|
25059
|
-
--pf-v5-c-simple-list__item-link--focus--Color: var(--pf-v5-global--Color--100);
|
|
25060
|
-
--pf-v5-c-simple-list__item-link--focus--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
|
|
25061
|
-
--pf-v5-c-simple-list__item-link--active--Color: var(--pf-v5-global--Color--100);
|
|
25062
|
-
--pf-v5-c-simple-list__item-link--active--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
|
|
25063
|
-
}
|
|
25064
|
-
|
|
25065
25078
|
.pf-v5-c-skeleton {
|
|
25066
25079
|
--pf-v5-c-skeleton--BackgroundColor: var(--pf-v5-global--palette--black-150);
|
|
25067
25080
|
--pf-v5-c-skeleton--Width: auto;
|
|
@@ -30875,12 +30888,10 @@ svg.pf-v5-c-spinner.pf-m-xl {
|
|
|
30875
30888
|
|
|
30876
30889
|
.pf-v5-c-tooltip__arrow {
|
|
30877
30890
|
position: absolute;
|
|
30878
|
-
/* stylelint-disable liberty/use-logical-spec */
|
|
30879
30891
|
top: var(--pf-v5-c-tooltip__arrow--Top, auto);
|
|
30880
30892
|
right: var(--pf-v5-c-tooltip__arrow--Right, auto);
|
|
30881
30893
|
bottom: var(--pf-v5-c-tooltip__arrow--Bottom, auto);
|
|
30882
30894
|
left: var(--pf-v5-c-tooltip__arrow--Left, auto);
|
|
30883
|
-
/* stylelint-enable */
|
|
30884
30895
|
width: var(--pf-v5-c-tooltip__arrow--Width);
|
|
30885
30896
|
height: var(--pf-v5-c-tooltip__arrow--Height);
|
|
30886
30897
|
pointer-events: none;
|
|
@@ -30889,9 +30900,13 @@ svg.pf-v5-c-spinner.pf-m-xl {
|
|
|
30889
30900
|
transform: translateX(var(--pf-v5-c-tooltip__arrow--TranslateX, 0)) translateY(var(--pf-v5-c-tooltip__arrow--TranslateY, 0)) rotate(var(--pf-v5-c-tooltip__arrow--Rotate, 0));
|
|
30890
30901
|
}
|
|
30891
30902
|
|
|
30903
|
+
:root,
|
|
30892
30904
|
.pf-v5-c-truncate {
|
|
30893
30905
|
--pf-v5-c-truncate--MinWidth: 12ch;
|
|
30894
30906
|
--pf-v5-c-truncate__start--MinWidth: 6ch;
|
|
30907
|
+
}
|
|
30908
|
+
|
|
30909
|
+
.pf-v5-c-truncate {
|
|
30895
30910
|
display: inline-grid;
|
|
30896
30911
|
grid-auto-flow: column;
|
|
30897
30912
|
align-items: baseline;
|