@patternfly/patternfly 6.2.0-prerelease.1 → 6.2.0-prerelease.11
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/assets/pficon/pficon.scss +1 -1
- package/base/normalize.scss +2 -2
- package/base/patternfly-pf-icons.css +1 -1
- package/components/Banner/banner.css +2 -2
- package/components/Banner/banner.scss +2 -2
- package/components/Breadcrumb/breadcrumb.css +3 -2
- package/components/Breadcrumb/breadcrumb.scss +3 -2
- package/components/Button/button.css +38 -2
- package/components/Button/button.scss +40 -2
- package/components/Content/content.css +2 -1
- package/components/Content/content.scss +2 -1
- package/components/DescriptionList/description-list.css +3 -2
- package/components/DescriptionList/description-list.scss +3 -2
- package/components/Drawer/drawer.css +3 -1
- package/components/Drawer/drawer.scss +3 -1
- package/components/Form/form.css +3 -6
- package/components/Form/form.scss +3 -7
- package/components/JumpLinks/jump-links.css +1 -1
- package/components/JumpLinks/jump-links.scss +1 -1
- package/components/Label/label.css +3 -2
- package/components/Label/label.scss +3 -2
- package/components/Menu/menu.css +11 -2
- package/components/Menu/menu.scss +12 -2
- package/components/MenuToggle/menu-toggle.css +4 -0
- package/components/MenuToggle/menu-toggle.scss +4 -0
- package/components/Nav/nav.css +46 -13
- package/components/Nav/nav.scss +57 -17
- package/components/Popover/popover.css +2 -0
- package/components/Popover/popover.scss +2 -0
- package/components/Progress/progress.css +3 -0
- package/components/Progress/progress.scss +3 -0
- package/components/ProgressStepper/progress-stepper.css +2 -1
- package/components/ProgressStepper/progress-stepper.scss +2 -1
- package/components/SimpleList/simple-list.css +2 -2
- package/components/SimpleList/simple-list.scss +2 -2
- package/components/Tabs/tabs.css +1 -1
- package/components/Tabs/tabs.scss +1 -1
- package/components/Timestamp/timestamp.css +2 -1
- package/components/Timestamp/timestamp.scss +2 -1
- package/components/ToggleGroup/toggle-group.css +1 -1
- package/components/ToggleGroup/toggle-group.scss +1 -1
- package/components/Wizard/wizard.css +1 -1
- package/components/Wizard/wizard.scss +1 -1
- package/components/_index.css +132 -41
- package/docs/components/Avatar/examples/Avatar.md +4 -4
- package/docs/components/Brand/examples/Brand.md +2 -2
- package/docs/components/DataList/examples/DataList.md +3 -3
- package/docs/components/DescriptionList/examples/DescriptionList.md +2 -2
- package/docs/components/Divider/examples/Divider.md +2 -2
- package/docs/components/Drawer/examples/Drawer.md +3 -3
- package/docs/components/JumpLinks/examples/JumpLinks.md +2 -2
- package/docs/components/Masthead/examples/masthead.md +1 -1
- package/docs/components/Menu/examples/Menu.md +2 -2
- package/docs/components/Nav/examples/Navigation.md +3 -0
- package/docs/components/Page/examples/Page.md +2 -2
- package/docs/components/Pagination/examples/Pagination.md +3 -3
- package/docs/components/ProgressStepper/examples/ProgressStepper.md +2 -2
- package/docs/components/Sidebar/examples/Sidebar.md +1 -1
- package/docs/components/Table/examples/Table.md +3 -3
- package/docs/components/Tabs/examples/Tabs.md +3 -3
- package/docs/components/Toolbar/examples/Toolbar.md +7 -7
- package/docs/demos/CardView/examples/CardView.md +2 -0
- package/docs/demos/Nav/examples/Nav.md +2 -0
- package/docs/layouts/Flex/examples/Flex.md +1 -1
- package/docs/layouts/Gallery/examples/Gallery.md +2 -2
- package/docs/layouts/Grid/examples/Grid.md +4 -4
- package/docs/utilities/Accessibility/examples/Accessibility.md +1 -1
- package/docs/utilities/Alignment/examples/Alignment.md +1 -1
- package/docs/utilities/BackgroundColor/examples/BackgroundColor.md +1 -1
- package/docs/utilities/Display/examples/Display.md +1 -1
- package/docs/utilities/Flex/examples/Flex.md +1 -1
- package/docs/utilities/Float/examples/Float.md +1 -1
- package/docs/utilities/Sizing/examples/Sizing.md +6 -6
- package/docs/utilities/Spacing/examples/Spacing.md +1 -1
- package/docs/utilities/Text/examples/Text.md +1 -1
- package/package.json +5 -5
- package/patternfly-base-no-globals.css +1 -1
- package/patternfly-base.css +3 -3
- package/patternfly-charts.css +83 -0
- package/patternfly-charts.scss +126 -0
- package/patternfly-no-globals.css +133 -42
- package/patternfly.css +135 -44
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/patternfly.css
CHANGED
|
@@ -118,12 +118,12 @@ pre) {
|
|
|
118
118
|
|
|
119
119
|
:where(a) {
|
|
120
120
|
color: var(--pf-t--global--text--color--link--default);
|
|
121
|
-
text-decoration: var(--pf-t--global--text-decoration--link--line--default);
|
|
121
|
+
text-decoration-line: var(--pf-t--global--text-decoration--link--line--default);
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
:where(a:hover, a:focus) {
|
|
125
125
|
color: var(--pf-t--global--text--color--link--hover);
|
|
126
|
-
text-decoration: var(--pf-t--global--text-decoration--link--line--hover);
|
|
126
|
+
text-decoration-line: var(--pf-t--global--text-decoration--link--line--hover);
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
:where(a,
|
|
@@ -5802,7 +5802,7 @@ button) {
|
|
|
5802
5802
|
font-style: normal;
|
|
5803
5803
|
font-variant: normal;
|
|
5804
5804
|
font-weight: normal;
|
|
5805
|
-
text-decoration: none;
|
|
5805
|
+
text-decoration-line: none;
|
|
5806
5806
|
text-transform: none;
|
|
5807
5807
|
}
|
|
5808
5808
|
|
|
@@ -8795,7 +8795,7 @@ button) {
|
|
|
8795
8795
|
}
|
|
8796
8796
|
.pf-v6-c-banner a {
|
|
8797
8797
|
color: var(--pf-v6-c-banner--link--Color);
|
|
8798
|
-
text-decoration: var(--pf-v6-c-banner--link--TextDecoration);
|
|
8798
|
+
text-decoration-line: var(--pf-v6-c-banner--link--TextDecoration);
|
|
8799
8799
|
}
|
|
8800
8800
|
.pf-v6-c-banner a:hover:not(.pf-m-disabled) {
|
|
8801
8801
|
--pf-v6-c-banner--link--Color: var(--pf-v6-c-banner--link--hover--Color);
|
|
@@ -8808,7 +8808,7 @@ button) {
|
|
|
8808
8808
|
--pf-v6-c-button--m-link--Color: var(--pf-v6-c-banner--link--Color);
|
|
8809
8809
|
--pf-v6-c-button--m-link--hover--Color: var(--pf-v6-c-banner--link--hover--Color);
|
|
8810
8810
|
--pf-v6-c-button--disabled--Color: var(--pf-v6-c-banner--link--disabled--Color);
|
|
8811
|
-
text-decoration: var(--pf-v6-c-banner--link--TextDecoration);
|
|
8811
|
+
text-decoration-line: var(--pf-v6-c-banner--link--TextDecoration);
|
|
8812
8812
|
}
|
|
8813
8813
|
.pf-v6-c-banner .pf-v6-c-button.pf-m-inline:disabled, .pf-v6-c-banner .pf-v6-c-button.pf-m-inline.pf-m-disabled {
|
|
8814
8814
|
cursor: not-allowed;
|
|
@@ -8947,7 +8947,8 @@ button) {
|
|
|
8947
8947
|
font-weight: var(--pf-v6-c-breadcrumb__link--FontWeight);
|
|
8948
8948
|
line-height: inherit;
|
|
8949
8949
|
color: var(--pf-v6-c-breadcrumb__link--Color);
|
|
8950
|
-
text-decoration: var(--pf-v6-c-breadcrumb__link--TextDecorationLine)
|
|
8950
|
+
text-decoration-line: var(--pf-v6-c-breadcrumb__link--TextDecorationLine);
|
|
8951
|
+
text-decoration-style: var(--pf-v6-c-breadcrumb__link--TextDecorationStyle);
|
|
8951
8952
|
word-break: break-word;
|
|
8952
8953
|
background-color: var(--pf-v6-c-breadcrumb__link--BackgroundColor);
|
|
8953
8954
|
}
|
|
@@ -8961,7 +8962,7 @@ button) {
|
|
|
8961
8962
|
}
|
|
8962
8963
|
.pf-v6-c-breadcrumb__link.pf-m-current, .pf-v6-c-breadcrumb__link.pf-m-current:is(:hover, :focus) {
|
|
8963
8964
|
color: var(--pf-v6-c-breadcrumb__link--m-current--Color);
|
|
8964
|
-
text-decoration: none;
|
|
8965
|
+
text-decoration-line: none;
|
|
8965
8966
|
}
|
|
8966
8967
|
button.pf-v6-c-breadcrumb__link {
|
|
8967
8968
|
border: none;
|
|
@@ -9008,6 +9009,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
9008
9009
|
--pf-v6-c-button--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
9009
9010
|
--pf-v6-c-button--TextDecorationLine: none;
|
|
9010
9011
|
--pf-v6-c-button--TextDecorationStyle: none;
|
|
9012
|
+
--pf-v6-c-button--TextDecorationColor: currentcolor;
|
|
9011
9013
|
--pf-v6-c-button--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
9012
9014
|
--pf-v6-c-button--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
9013
9015
|
--pf-v6-c-button--TransitionProperty: color, background-color, border-width, border-color, padding;
|
|
@@ -9016,6 +9018,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
9016
9018
|
--pf-v6-c-button--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
|
|
9017
9019
|
--pf-v6-c-button--hover--TextDecorationLine: none;
|
|
9018
9020
|
--pf-v6-c-button--hover--TextDecorationStyle: none;
|
|
9021
|
+
--pf-v6-c-button--hover--TextDecorationColor: currentcolor;
|
|
9019
9022
|
--pf-v6-c-button--m-clicked--BackgroundColor: transparent;
|
|
9020
9023
|
--pf-v6-c-button--m-clicked--BorderColor: transparent;
|
|
9021
9024
|
--pf-v6-c-button--m-clicked--BorderWidth: var(--pf-t--global--border--width--action--clicked);
|
|
@@ -9100,6 +9103,12 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
9100
9103
|
--pf-v6-c-button--span--m-link--m-inline--Display: inline;
|
|
9101
9104
|
--pf-v6-c-button--span--m-link--m-inline__icon--m-start--MarginInlineEnd: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
9102
9105
|
--pf-v6-c-button--span--m-link--m-inline__icon--m-end--MarginInlineStart: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
9106
|
+
--pf-v6-c-button--m-link--m-inline--Color: var(--pf-t--global--text--color--brand--default);
|
|
9107
|
+
--pf-v6-c-button--m-link--m-inline__icon--Color: var(--pf-t--global--icon--color--brand--default);
|
|
9108
|
+
--pf-v6-c-button--m-link--m-inline--TextDecorationColor: currentcolor;
|
|
9109
|
+
--pf-v6-c-button--m-link--m-inline--hover--Color: var(--pf-t--global--text--color--brand--hover);
|
|
9110
|
+
--pf-v6-c-button--m-link--m-inline--hover__icon--Color: var(--pf-t--global--icon--color--brand--hover);
|
|
9111
|
+
--pf-v6-c-button--m-link--m-inline--hover--TextDecorationColor: currentcolor;
|
|
9103
9112
|
--pf-v6-c-button--m-plain--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
9104
9113
|
--pf-v6-c-button--m-plain--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--plain--default);
|
|
9105
9114
|
--pf-v6-c-button--m-plain--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--plain--default);
|
|
@@ -9207,6 +9216,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
9207
9216
|
--pf-v6-c-button--m-small--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--compact);
|
|
9208
9217
|
--pf-v6-c-button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
|
9209
9218
|
--pf-v6-c-button--disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
|
|
9219
|
+
--pf-v6-c-button--disabled--TextDecorationColor: currentcolor;
|
|
9210
9220
|
--pf-v6-c-button--disabled--BorderColor: transparent;
|
|
9211
9221
|
--pf-v6-c-button--disabled__icon--Color: var(--pf-t--global--icon--color--on-disabled);
|
|
9212
9222
|
--pf-v6-c-button__icon--Color: var(--pf-t--global--icon--color--regular);
|
|
@@ -9216,6 +9226,8 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
9216
9226
|
--pf-v6-c-button__icon--MarginInlineEnd: 0;
|
|
9217
9227
|
--pf-v6-c-button__icon--m-start--MarginInlineEnd: 0;
|
|
9218
9228
|
--pf-v6-c-button__icon--m-end--MarginInlineStart: 0;
|
|
9229
|
+
--pf-v6-c-button--m-notify__icon--AnimationDuration--notify: var(--pf-t--global--motion--duration--3xl);
|
|
9230
|
+
--pf-v6-c-button--m-notify__icon--AnimationTimingFunction--notify: var(--pf-t--global--motion--timing-function--default);
|
|
9219
9231
|
--pf-v6-c-button__progress--width: calc(var(--pf-t--global--icon--size--lg) + var(--pf-t--global--spacer--sm));
|
|
9220
9232
|
--pf-v6-c-button__progress--Opacity: 0;
|
|
9221
9233
|
--pf-v6-c-button__progress--TranslateY: -50%;
|
|
@@ -9251,7 +9263,9 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
9251
9263
|
line-height: var(--pf-v6-c-button--LineHeight, inherit);
|
|
9252
9264
|
color: var(--pf-v6-c-button--Color);
|
|
9253
9265
|
text-align: center;
|
|
9254
|
-
text-decoration: var(--pf-v6-c-button--TextDecorationLine)
|
|
9266
|
+
text-decoration-line: var(--pf-v6-c-button--TextDecorationLine);
|
|
9267
|
+
text-decoration-style: var(--pf-v6-c-button--TextDecorationStyle);
|
|
9268
|
+
text-decoration-color: var(--pf-v6-c-button--TextDecorationColor);
|
|
9255
9269
|
white-space: nowrap;
|
|
9256
9270
|
cursor: pointer;
|
|
9257
9271
|
user-select: none;
|
|
@@ -9364,6 +9378,12 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
9364
9378
|
--pf-v6-c-button--disabled--BackgroundColor: transparent;
|
|
9365
9379
|
--pf-v6-c-button--disabled--Color: var(--pf-v6-c-button--m-link--m-inline--disabled--Color);
|
|
9366
9380
|
--pf-v6-c-button--disabled__icon--Color: var(--pf-v6-c-button--m-link--m-inline--disabled__icon--Color);
|
|
9381
|
+
--pf-v6-c-button--m-link--Color: var(--pf-v6-c-button--m-link--m-inline--Color);
|
|
9382
|
+
--pf-v6-c-button--m-link__icon--Color: var(--pf-v6-c-button--m-link--m-inline__icon--Color);
|
|
9383
|
+
--pf-v6-c-button--TextDecorationColor: var(--pf-v6-c-button--m-link--m-inline--TextDecorationColor);
|
|
9384
|
+
--pf-v6-c-button--hover--TextDecorationColor: var(--pf-v6-c-button--m-link--m-inline--hover--TextDecorationColor);
|
|
9385
|
+
--pf-v6-c-button--m-link--hover--Color: var(--pf-v6-c-button--m-link--m-inline--hover--Color);
|
|
9386
|
+
--pf-v6-c-button--m-link--hover__icon--Color: var(--pf-v6-c-button--m-link--m-inline--hover__icon--Color);
|
|
9367
9387
|
text-align: start;
|
|
9368
9388
|
white-space: normal;
|
|
9369
9389
|
outline-offset: 0.125rem;
|
|
@@ -9524,7 +9544,9 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
9524
9544
|
--pf-v6-c-button--BorderWidth: var(--pf-v6-c-button--hover--BorderWidth);
|
|
9525
9545
|
--pf-v6-c-button--m-plain--m-no-padding__icon--Color: var(--pf-v6-c-button--m-plain--m-no-padding--hover__icon--Color);
|
|
9526
9546
|
--pf-v6-c-button__icon--Color: var(--pf-v6-c-button--hover__icon--Color);
|
|
9527
|
-
text-decoration: var(--pf-v6-c-button--hover--TextDecorationLine)
|
|
9547
|
+
text-decoration-line: var(--pf-v6-c-button--hover--TextDecorationLine);
|
|
9548
|
+
text-decoration-style: var(--pf-v6-c-button--hover--TextDecorationStyle);
|
|
9549
|
+
text-decoration-color: var(--pf-v6-c-button--hover--TextDecorationColor);
|
|
9528
9550
|
}
|
|
9529
9551
|
.pf-v6-c-button.pf-m-clicked {
|
|
9530
9552
|
--pf-v6-c-button--Color: var(--pf-v6-c-button--m-clicked--Color);
|
|
@@ -9538,6 +9560,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
9538
9560
|
}
|
|
9539
9561
|
.pf-v6-c-button:disabled, .pf-v6-c-button.pf-m-disabled, .pf-v6-c-button.pf-m-aria-disabled {
|
|
9540
9562
|
color: var(--pf-v6-c-button--disabled--Color);
|
|
9563
|
+
text-decoration-color: var(--pf-v6-c-button--disabled--TextDecorationColor);
|
|
9541
9564
|
background-color: var(--pf-v6-c-button--disabled--BackgroundColor);
|
|
9542
9565
|
}
|
|
9543
9566
|
.pf-v6-c-button:disabled::after, .pf-v6-c-button.pf-m-disabled::after, .pf-v6-c-button.pf-m-aria-disabled::after {
|
|
@@ -9569,6 +9592,11 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
9569
9592
|
.pf-v6-c-button.pf-m-in-progress.pf-m-plain > :not(.pf-v6-c-button__progress) {
|
|
9570
9593
|
opacity: 0;
|
|
9571
9594
|
}
|
|
9595
|
+
.pf-v6-c-button.pf-m-notify .pf-v6-c-button__icon {
|
|
9596
|
+
animation-name: pf-v6-c-button-icon-notify;
|
|
9597
|
+
animation-duration: var(--pf-v6-c-button--m-notify__icon--AnimationDuration--notify);
|
|
9598
|
+
animation-timing-function: var(--pf-v6-c-button--m-notify__icon--AnimationTimingFunction--notify);
|
|
9599
|
+
}
|
|
9572
9600
|
|
|
9573
9601
|
.pf-v6-c-button__icon {
|
|
9574
9602
|
margin-inline-start: var(--pf-v6-c-button__icon--MarginInlineStart);
|
|
@@ -9599,6 +9627,14 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
9599
9627
|
align-items: center;
|
|
9600
9628
|
}
|
|
9601
9629
|
|
|
9630
|
+
@keyframes pf-v6-c-button-icon-notify {
|
|
9631
|
+
33% {
|
|
9632
|
+
transform: rotate(30deg);
|
|
9633
|
+
}
|
|
9634
|
+
66% {
|
|
9635
|
+
transform: rotate(-60deg);
|
|
9636
|
+
}
|
|
9637
|
+
}
|
|
9602
9638
|
.pf-v6-c-calendar-month {
|
|
9603
9639
|
--pf-v6-c-calendar-month--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
9604
9640
|
--pf-v6-c-calendar-month--PaddingBlockStart: var(--pf-t--global--spacer--lg);
|
|
@@ -10643,7 +10679,8 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
10643
10679
|
|
|
10644
10680
|
:is(.pf-v6-c-content--a, .pf-v6-c-content a) {
|
|
10645
10681
|
color: var(--pf-v6-c-content--a--Color);
|
|
10646
|
-
text-decoration: var(--pf-v6-c-content--a--TextDecorationLine)
|
|
10682
|
+
text-decoration-line: var(--pf-v6-c-content--a--TextDecorationLine);
|
|
10683
|
+
text-decoration-style: var(--pf-v6-c-content--a--TextDecorationStyle);
|
|
10647
10684
|
}
|
|
10648
10685
|
:is(.pf-v6-c-content--a, .pf-v6-c-content a):is(:hover, :focus) {
|
|
10649
10686
|
--pf-v6-c-content--a--Color: var(--pf-v6-c-content--a--hover--Color);
|
|
@@ -11681,7 +11718,7 @@ ul) {
|
|
|
11681
11718
|
--pf-v6-c-description-list__term--Display: inline;
|
|
11682
11719
|
--pf-v6-c-description-list__term--sm--Display: flex;
|
|
11683
11720
|
--pf-v6-c-description-list__term--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
11684
|
-
--pf-v6-c-description-list__term--FontSize: var(--pf-t--global--font--size--body--
|
|
11721
|
+
--pf-v6-c-description-list__term--FontSize: var(--pf-t--global--font--size--body--default);
|
|
11685
11722
|
--pf-v6-c-description-list__term--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
11686
11723
|
--pf-v6-c-description-list__term-icon--MinWidth: var(--pf-t--global--font--size--body--sm);
|
|
11687
11724
|
--pf-v6-c-description-list__term-icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
@@ -11863,7 +11900,8 @@ ul) {
|
|
|
11863
11900
|
min-width: 0;
|
|
11864
11901
|
}
|
|
11865
11902
|
.pf-v6-c-description-list__text.pf-m-help-text {
|
|
11866
|
-
text-decoration: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationLine)
|
|
11903
|
+
text-decoration-line: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationLine);
|
|
11904
|
+
text-decoration-style: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationStyle);
|
|
11867
11905
|
text-underline-offset: var(--pf-v6-c-description-list__text--m-help-text--TextUnderlineOffset);
|
|
11868
11906
|
cursor: pointer;
|
|
11869
11907
|
}
|
|
@@ -12766,7 +12804,8 @@ ul) {
|
|
|
12766
12804
|
--pf-v6-c-drawer__panel--RowGap: var(--pf-t--global--spacer--sm);
|
|
12767
12805
|
--pf-v6-c-drawer__panel--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
12768
12806
|
--pf-v6-c-drawer__panel--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
12769
|
-
--pf-v6-c-drawer__panel--
|
|
12807
|
+
--pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
|
12808
|
+
--pf-v6-c-drawer__panel--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--short);
|
|
12770
12809
|
--pf-v6-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis;
|
|
12771
12810
|
--pf-v6-c-drawer__panel--FlexBasis: 100%;
|
|
12772
12811
|
--pf-v6-c-drawer__panel--md--FlexBasis--min: 1.5rem;
|
|
@@ -12980,6 +13019,7 @@ ul) {
|
|
|
12980
13019
|
overflow: auto;
|
|
12981
13020
|
background-color: var(--pf-v6-c-drawer__panel--BackgroundColor);
|
|
12982
13021
|
box-shadow: var(--pf-v6-c-drawer__panel--BoxShadow);
|
|
13022
|
+
transition-timing-function: var(--pf-v6-c-drawer__panel--TransitionTimingFunction);
|
|
12983
13023
|
transition-duration: var(--pf-v6-c-drawer__panel--TransitionDuration);
|
|
12984
13024
|
transition-property: var(--pf-v6-c-drawer__panel--TransitionProperty);
|
|
12985
13025
|
-webkit-overflow-scrolling: touch;
|
|
@@ -13876,16 +13916,16 @@ ul) {
|
|
|
13876
13916
|
--pf-v6-c-form__group-label--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
13877
13917
|
--pf-v6-c-form--m-horizontal__group-label--m-no-padding--md--PaddingBlockStart: 0;
|
|
13878
13918
|
--pf-v6-c-form--m-horizontal__group-label--m-no-padding--md--TranslateY: calc(((((var(--pf-t--global--font--size--body--sm) * var(--pf-t--global--font--line-height--body)) - var(--pf-t--global--font--size--body--sm)) / 2) + var(--pf-t--global--font--size--body--sm)) - ((((var(--pf-t--global--font--size--body--default) * var(--pf-t--global--font--line-height--body)) - var(--pf-t--global--font--size--body--default)) / 2) + var(--pf-t--global--font--size--body--default)));
|
|
13879
|
-
--pf-v6-c-form__label--FontSize: var(--pf-t--global--font--size--body--
|
|
13919
|
+
--pf-v6-c-form__label--FontSize: var(--pf-t--global--font--size--body--default);
|
|
13880
13920
|
--pf-v6-c-form__label--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
13881
13921
|
--pf-v6-c-form__label--m-disabled--Color: var(--pf-t--global--text--color--disabled);
|
|
13882
13922
|
--pf-v6-c-form__label--hover--Cursor: pointer;
|
|
13883
13923
|
--pf-v6-c-form__label--m-disabled--hover--Cursor: not-allowed;
|
|
13884
13924
|
--pf-v6-c-form__label-text--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
13885
13925
|
--pf-v6-c-form__label-required--MarginInlineStart: var(--pf-t--global--spacer--xs);
|
|
13886
|
-
--pf-v6-c-form__label-required--FontSize: var(--pf-t--global--font--size--body--
|
|
13926
|
+
--pf-v6-c-form__label-required--FontSize: var(--pf-t--global--font--size--body--default);
|
|
13887
13927
|
--pf-v6-c-form__label-required--Color: var(--pf-t--global--color--status--danger--default);
|
|
13888
|
-
--pf-v6-c-form__group-label-help--FontSize: var(--pf-t--global--font--size--body--
|
|
13928
|
+
--pf-v6-c-form__group-label-help--FontSize: var(--pf-t--global--font--size--body--default);
|
|
13889
13929
|
--pf-v6-c-form__group-label--m-info--Gap: var(--pf-t--global--spacer--gap--horizontal);
|
|
13890
13930
|
--pf-v6-c-form__group-label-info--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
13891
13931
|
--pf-v6-c-form--m-horizontal__group-label--m-info--Gap: var(--pf-t--global--spacer--gap--group--vertical);
|
|
@@ -14199,9 +14239,6 @@ ul) {
|
|
|
14199
14239
|
font-size: var(--pf-v6-c-form__label--FontSize);
|
|
14200
14240
|
line-height: var(--pf-v6-c-form__label--LineHeight);
|
|
14201
14241
|
}
|
|
14202
|
-
.pf-v6-c-form__label::selection {
|
|
14203
|
-
background-color: none;
|
|
14204
|
-
}
|
|
14205
14242
|
.pf-v6-c-form__label:not(.pf-m-disabled):hover {
|
|
14206
14243
|
cursor: var(--pf-v6-c-form__label--hover--Cursor);
|
|
14207
14244
|
}
|
|
@@ -15416,7 +15453,7 @@ label.pf-v6-c-input-group__text {
|
|
|
15416
15453
|
padding-block-end: var(--pf-v6-c-jump-links__link--PaddingBlockEnd);
|
|
15417
15454
|
padding-inline-start: var(--pf-v6-c-jump-links__link--PaddingInlineStart);
|
|
15418
15455
|
padding-inline-end: var(--pf-v6-c-jump-links__link--PaddingInlineEnd);
|
|
15419
|
-
text-decoration: none;
|
|
15456
|
+
text-decoration-line: none;
|
|
15420
15457
|
outline-offset: var(--pf-v6-c-jump-links__link--OutlineOffset);
|
|
15421
15458
|
}
|
|
15422
15459
|
.pf-v6-c-jump-links__link:is(:hover, :focus) {
|
|
@@ -15857,7 +15894,8 @@ label.pf-v6-c-input-group__text {
|
|
|
15857
15894
|
--pf-v6-c-label--m-editable--TextDecorationStyle: var(--pf-v6-c-label--m-editable--hover--TextDecorationStyle);
|
|
15858
15895
|
}
|
|
15859
15896
|
.pf-v6-c-label.pf-m-editable .pf-v6-c-label__text {
|
|
15860
|
-
text-decoration: var(--pf-v6-c-label--m-editable--TextDecorationLine)
|
|
15897
|
+
text-decoration-line: var(--pf-v6-c-label--m-editable--TextDecorationLine);
|
|
15898
|
+
text-decoration-style: var(--pf-v6-c-label--m-editable--TextDecorationStyle);
|
|
15861
15899
|
text-underline-offset: var(--pf-v6-c-label--m-editable--TextUnderlineOffset);
|
|
15862
15900
|
}
|
|
15863
15901
|
.pf-v6-c-label.pf-m-editable-active {
|
|
@@ -15890,7 +15928,7 @@ label.pf-v6-c-input-group__text {
|
|
|
15890
15928
|
--pf-v6-c-label__content--Cursor: var(--pf-v6-c-label--m-clickable__content--Cursor);
|
|
15891
15929
|
}
|
|
15892
15930
|
.pf-v6-c-label.pf-m-clickable .pf-v6-c-label__content, .pf-v6-c-label.pf-m-clickable .pf-v6-c-label__content:is(:hover, :focus) {
|
|
15893
|
-
text-decoration: none;
|
|
15931
|
+
text-decoration-line: none;
|
|
15894
15932
|
}
|
|
15895
15933
|
.pf-v6-c-label.pf-m-clickable .pf-v6-c-label__content:is(:hover, :focus) {
|
|
15896
15934
|
--pf-v6-c-label--Color: var(--pf-v6-c-label--m-clickable--hover--Color);
|
|
@@ -17157,11 +17195,20 @@ ul.pf-v6-c-list {
|
|
|
17157
17195
|
.pf-v6-c-menu__item-action:is(.pf-m-disabled, :disabled, .pf-m-aria-disabled, [aria-disabled=true]) {
|
|
17158
17196
|
--pf-v6-c-menu__item--Color: var(--pf-v6-c-menu__item--m-disabled--Color);
|
|
17159
17197
|
--pf-v6-c-menu__item-toggle-icon--Color: var(--pf-v6-c-menu--icon--disabled--Color);
|
|
17160
|
-
--pf-v6-c-menu__item-external
|
|
17198
|
+
--pf-v6-c-menu__item-external--Color: transparent;
|
|
17199
|
+
--pf-v6-c-menu__item-select-icon--Color: transparent;
|
|
17161
17200
|
--pf-v6-c-menu__item-description--Color: var(--pf-v6-c-menu--icon--disabled--Color);
|
|
17162
17201
|
--pf-v6-c-menu__list-item--BackgroundColor: transparent;
|
|
17202
|
+
--pf-v6-c-menu__list-item--hover--BackgroundColor: transparent;
|
|
17203
|
+
}
|
|
17204
|
+
.pf-v6-c-menu__list-item:is(.pf-m-disabled, :disabled),
|
|
17205
|
+
.pf-v6-c-menu__item-action:is(.pf-m-disabled, :disabled) {
|
|
17163
17206
|
pointer-events: none;
|
|
17164
17207
|
}
|
|
17208
|
+
.pf-v6-c-menu__list-item.pf-m-aria-disabled .pf-v6-c-menu__item,
|
|
17209
|
+
.pf-v6-c-menu__item-action.pf-m-aria-disabled .pf-v6-c-menu__item {
|
|
17210
|
+
cursor: default;
|
|
17211
|
+
}
|
|
17165
17212
|
|
|
17166
17213
|
[class*=pf-v6-c-menu]:is([hidden]) {
|
|
17167
17214
|
display: none;
|
|
@@ -17409,7 +17456,7 @@ ul.pf-v6-c-list {
|
|
|
17409
17456
|
line-height: var(--pf-v6-c-menu__item--LineHeight);
|
|
17410
17457
|
color: var(--pf-v6-c-menu__item--Color);
|
|
17411
17458
|
text-align: start;
|
|
17412
|
-
text-decoration: none;
|
|
17459
|
+
text-decoration-line: none;
|
|
17413
17460
|
background-color: var(--pf-v6-c-menu__item--BackgroundColor);
|
|
17414
17461
|
border: 0;
|
|
17415
17462
|
outline-offset: var(--pf-v6-c-menu--OutlineOffset);
|
|
@@ -17619,6 +17666,7 @@ ul.pf-v6-c-list {
|
|
|
17619
17666
|
--pf-v6-c-menu-toggle--m-primary--m-small--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--compact);
|
|
17620
17667
|
--pf-v6-c-menu-toggle--m-secondary--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--default);
|
|
17621
17668
|
--pf-v6-c-menu-toggle--m-secondary--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--default);
|
|
17669
|
+
--pf-v6-c-menu-toggle--m-secondary--BackgroundColor: transparent;
|
|
17622
17670
|
--pf-v6-c-menu-toggle--m-secondary--Color: var(--pf-t--global--text--color--brand--default);
|
|
17623
17671
|
--pf-v6-c-menu-toggle--m-secondary--BorderColor: var(--pf-t--global--border--color--brand--default);
|
|
17624
17672
|
--pf-v6-c-menu-toggle--m-secondary--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
@@ -17626,6 +17674,7 @@ ul.pf-v6-c-list {
|
|
|
17626
17674
|
--pf-v6-c-menu-toggle--m-secondary--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
|
|
17627
17675
|
--pf-v6-c-menu-toggle--m-secondary--hover--BorderColor: var(--pf-t--global--border--color--brand--hover);
|
|
17628
17676
|
--pf-v6-c-menu-toggle--m-secondary--expanded--Color: var(--pf-t--global--text--color--brand--clicked);
|
|
17677
|
+
--pf-v6-c-menu-toggle--m-secondary--expanded--BackgroundColor: transparent;
|
|
17629
17678
|
--pf-v6-c-menu-toggle--m-secondary--expanded--BorderWidth: var(--pf-t--global--border--width--action--clicked);
|
|
17630
17679
|
--pf-v6-c-menu-toggle--m-secondary--expanded--BorderColor: var(--pf-t--global--border--color--brand--clicked);
|
|
17631
17680
|
--pf-v6-c-menu-toggle--m-secondary__toggle-icon--Color: var(--pf-t--global--icon--color--brand--default);
|
|
@@ -17751,12 +17800,14 @@ ul.pf-v6-c-list {
|
|
|
17751
17800
|
--pf-v6-c-menu-toggle--PaddingInlineStart: var(--pf-v6-c-menu-toggle--m-secondary--PaddingInlineStart);
|
|
17752
17801
|
--pf-v6-c-menu-toggle--PaddingInlineEnd: var(--pf-v6-c-menu-toggle--m-secondary--PaddingInlineEnd);
|
|
17753
17802
|
--pf-v6-c-menu-toggle--Color: var(--pf-v6-c-menu-toggle--m-secondary--Color);
|
|
17803
|
+
--pf-v6-c-menu-toggle--BackgroundColor: var(--pf-v6-c-menu-toggle--m-secondary--BackgroundColor);
|
|
17754
17804
|
--pf-v6-c-menu-toggle--BorderColor: var(--pf-v6-c-menu-toggle--m-secondary--BorderColor);
|
|
17755
17805
|
--pf-v6-c-menu-toggle--BorderRadius: var(--pf-v6-c-menu-toggle--m-secondary--BorderRadius);
|
|
17756
17806
|
--pf-v6-c-menu-toggle--hover--Color: var(--pf-v6-c-menu-toggle--m-secondary--hover--Color);
|
|
17757
17807
|
--pf-v6-c-menu-toggle--hover--BorderWidth: var(--pf-v6-c-menu-toggle--m-secondary--hover--BorderWidth);
|
|
17758
17808
|
--pf-v6-c-menu-toggle--hover--BorderColor: var(--pf-v6-c-menu-toggle--m-secondary--hover--BorderColor);
|
|
17759
17809
|
--pf-v6-c-menu-toggle--expanded--Color: var(--pf-v6-c-menu-toggle--m-secondary--expanded--Color);
|
|
17810
|
+
--pf-v6-c-menu-toggle--expanded--BackgroundColor: var(--pf-v6-c-menu-toggle--m-secondary--expanded--BackgroundColor);
|
|
17760
17811
|
--pf-v6-c-menu-toggle--expanded--BorderWidth: var(--pf-v6-c-menu-toggle--m-secondary--expanded--BorderWidth);
|
|
17761
17812
|
--pf-v6-c-menu-toggle--hover__toggle-icon--Color: var(--pf-v6-c-menu-toggle--m-secondary--hover__toggle-icon--Color);
|
|
17762
17813
|
--pf-v6-c-menu-toggle--expanded__toggle-icon--Color: var(--pf-v6-c-menu-toggle--m-secondary--expanded__toggle-icon--Color);
|
|
@@ -18437,13 +18488,15 @@ ul.pf-v6-c-list {
|
|
|
18437
18488
|
--pf-v6-c-nav__item--ScrollSnapAlign: end;
|
|
18438
18489
|
--pf-v6-c-nav__section-title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
18439
18490
|
--pf-v6-c-nav__section-title--Color: var(--pf-t--global--text--color--regular);
|
|
18440
|
-
--pf-v6-c-nav__section-title--PaddingBlockStart:
|
|
18441
|
-
--pf-v6-c-nav__section-title--PaddingBlockEnd:
|
|
18491
|
+
--pf-v6-c-nav__section-title--PaddingBlockStart: 0;
|
|
18492
|
+
--pf-v6-c-nav__section-title--PaddingBlockEnd: 0;
|
|
18442
18493
|
--pf-v6-c-nav__section-title--PaddingInlineStart: var(--pf-v6-c-nav__link--PaddingInlineStart);
|
|
18443
18494
|
--pf-v6-c-nav__section-title--PaddingInlineEnd: var(--pf-v6-c-nav__link--PaddingInlineEnd);
|
|
18444
18495
|
--pf-v6-c-nav__item--RowGap: var(--pf-v6-c-nav__list--RowGap);
|
|
18445
18496
|
--pf-v6-c-nav__item__toggle-icon--Rotate: 0;
|
|
18446
18497
|
--pf-v6-c-nav__item--m-expanded__toggle-icon--Rotate: 90deg;
|
|
18498
|
+
--pf-v6-c-nav__item__toggle-icon--TransitionDuration--transform: var(--pf-t--global--motion--duration--icon--default);
|
|
18499
|
+
--pf-v6-c-nav__item__toggle-icon--TransitionTimingFunction--transform: var(--pf-t--global--motion--timing-function--default);
|
|
18447
18500
|
--pf-v6-c-nav__link--ColumnGap: var(--pf-t--global--spacer--sm);
|
|
18448
18501
|
--pf-v6-c-nav__link--AlignItems: baseline;
|
|
18449
18502
|
--pf-v6-c-nav__link--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
@@ -18454,10 +18507,19 @@ ul.pf-v6-c-list {
|
|
|
18454
18507
|
--pf-v6-c-nav__link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--alt--hover);
|
|
18455
18508
|
--pf-v6-c-nav__link--m-current--BackgroundColor: var(--pf-t--global--background--color--action--plain--alt--clicked);
|
|
18456
18509
|
--pf-v6-c-nav__link--m-current--Color: var(--pf-t--global--text--color--regular);
|
|
18510
|
+
--pf-v6-c-nav__link--TransitionDuration--background-color: var(--pf-t--global--motion--duration--fade--default);
|
|
18511
|
+
--pf-v6-c-nav__link--TransitionTimingFunction--background-color: var(--pf-t--global--motion--timing-function--default);
|
|
18512
|
+
--pf-v6-c-nav__link--m-current--TransitionDuration--color: var(--pf-t--global--motion--duration--fade--short);
|
|
18513
|
+
--pf-v6-c-nav__link--m-current--TransitionTimingFunction--color: var(--pf-t--global--motion--timing-function--default);
|
|
18457
18514
|
--pf-v6-c-nav__link-icon--Color: var(--pf-t--global--icon--color--subtle);
|
|
18458
18515
|
--pf-v6-c-nav__link--m-current__link-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
18459
18516
|
--pf-v6-c-nav__subnav--RowGap: var(--pf-t--global--border--width--extra-strong);
|
|
18517
|
+
--pf-v6-c-nav__subnav--PaddingBlockStart: var(--pf-v6-c-nav__item--RowGap);
|
|
18518
|
+
--pf-v6-c-nav__subnav--PaddingBlockEnd: var(--pf-v6-c-nav__item--RowGap);
|
|
18460
18519
|
--pf-v6-c-nav__subnav--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
18520
|
+
--pf-v6-c-nav__subnav--TransitionDuration--expansion: 0s;
|
|
18521
|
+
--pf-v6-c-nav__subnav--hidden--TransitionDuration--expansion: 0s;
|
|
18522
|
+
--pf-v6-c-nav__subnav--TransitionTimingFunction--expansion: var(--pf-t--global--motion--timing-function--default);
|
|
18461
18523
|
--pf-v6-c-nav__scroll-button--BorderColor: var(--pf-t--global--border--color--default);
|
|
18462
18524
|
--pf-v6-c-nav__scroll-button--BorderWidth: var(--pf-t--global--border--width--divider--default);
|
|
18463
18525
|
--pf-v6-c-nav__scroll-button--first-of-type--c-button--BorderStartStartRadius: var(--pf-t--global--border--radius--pill);
|
|
@@ -18486,6 +18548,12 @@ ul.pf-v6-c-list {
|
|
|
18486
18548
|
--pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
18487
18549
|
--pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
18488
18550
|
}
|
|
18551
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
18552
|
+
.pf-v6-c-nav {
|
|
18553
|
+
--pf-v6-c-nav__subnav--TransitionDuration--expansion: var(--pf-t--global--motion--duration--slide-in--default);
|
|
18554
|
+
--pf-v6-c-nav__subnav--hidden--TransitionDuration--expansion: var(--pf-t--global--motion--duration--slide-in--short);
|
|
18555
|
+
}
|
|
18556
|
+
}
|
|
18489
18557
|
|
|
18490
18558
|
.pf-v6-c-nav,
|
|
18491
18559
|
.pf-v6-c-nav__section,
|
|
@@ -18537,7 +18605,7 @@ ul.pf-v6-c-list {
|
|
|
18537
18605
|
}
|
|
18538
18606
|
|
|
18539
18607
|
[class^=pf-v6-c-nav][hidden] {
|
|
18540
|
-
|
|
18608
|
+
visibility: hidden;
|
|
18541
18609
|
}
|
|
18542
18610
|
|
|
18543
18611
|
.pf-v6-c-nav__nav,
|
|
@@ -18546,30 +18614,43 @@ ul.pf-v6-c-list {
|
|
|
18546
18614
|
--pf-v6-c-nav__item--RowGap--row-offset: calc(var(--pf-v6-c-nav__list--RowGap) / 2 * -1);
|
|
18547
18615
|
--pf-v6-c-nav__link--clickable-inset--Block: var(--pf-v6-c-nav__item--RowGap--row-offset);
|
|
18548
18616
|
--pf-v6-c-nav__button--RowGap--row-offset: calc(var(--pf-v6-c-nav__item--RowGap) * -1);
|
|
18617
|
+
visibility: visible;
|
|
18549
18618
|
}
|
|
18550
18619
|
|
|
18551
18620
|
.pf-v6-c-nav__list {
|
|
18552
18621
|
row-gap: var(--pf-v6-c-nav__list--RowGap);
|
|
18553
18622
|
column-gap: var(--pf-v6-c-nav__list--ColumnGap);
|
|
18623
|
+
min-height: 0;
|
|
18554
18624
|
}
|
|
18555
18625
|
|
|
18556
18626
|
.pf-v6-c-nav__subnav {
|
|
18557
18627
|
--pf-v6-c-nav__list--RowGap: var(--pf-v6-c-nav__subnav--RowGap);
|
|
18628
|
+
grid-template-rows: 1fr;
|
|
18629
|
+
min-height: 0;
|
|
18630
|
+
padding-block-start: var(--pf-v6-c-nav__subnav--PaddingBlockStart);
|
|
18631
|
+
padding-block-end: var(--pf-v6-c-nav__subnav--PaddingBlockEnd);
|
|
18558
18632
|
padding-inline-start: var(--pf-v6-c-nav__subnav--PaddingInlineStart);
|
|
18633
|
+
overflow-y: clip;
|
|
18634
|
+
transition-timing-function: var(--pf-v6-c-nav__subnav--TransitionTimingFunction--expansion);
|
|
18635
|
+
transition-duration: var(--pf-v6-c-nav__subnav--TransitionDuration--expansion);
|
|
18636
|
+
transition-property: grid-template-rows, padding-block-start, padding-block-end, opacity;
|
|
18637
|
+
}
|
|
18638
|
+
.pf-v6-c-nav__subnav[hidden] {
|
|
18639
|
+
--pf-v6-c-nav__subnav--TransitionDuration--expansion: var(--pf-v6-c-nav__subnav--hidden--TransitionDuration--expansion);
|
|
18640
|
+
--pf-v6-c-nav__subnav--PaddingBlockStart: 0;
|
|
18641
|
+
--pf-v6-c-nav__subnav--PaddingBlockEnd: 0;
|
|
18642
|
+
grid-template-rows: 0fr;
|
|
18643
|
+
opacity: 0;
|
|
18559
18644
|
}
|
|
18560
18645
|
|
|
18561
18646
|
.pf-v6-c-nav__item {
|
|
18562
|
-
row-gap: var(--pf-v6-c-nav__item--RowGap);
|
|
18563
18647
|
scroll-snap-align: var(--pf-v6-c-nav__item--ScrollSnapAlign);
|
|
18564
18648
|
}
|
|
18565
18649
|
.pf-v6-c-nav__item > .pf-v6-c-nav__link[button] {
|
|
18566
18650
|
margin-block-end: var(--pf-v6-c-nav__button--RowGap--row-offset);
|
|
18567
18651
|
}
|
|
18568
|
-
.pf-v6-c-nav__item.pf-m-expanded:
|
|
18569
|
-
margin-block-end: var(--pf-v6-c-
|
|
18570
|
-
}
|
|
18571
|
-
.pf-v6-c-nav__item.pf-m-expanded:is(:not(:only-child, :last-child)) + .pf-v6-c-nav__item > .pf-v6-c-nav__link::before {
|
|
18572
|
-
inset-block-start: calc(var(--pf-v6-c-nav__item--RowGap) * -1 - var(--pf-v6-c-nav__list--RowGap));
|
|
18652
|
+
.pf-v6-c-nav__item.pf-m-expanded:last-child > .pf-v6-c-nav__subnav {
|
|
18653
|
+
margin-block-end: calc(var(--pf-v6-c-nav__subnav--PaddingBlockEnd) * -1);
|
|
18573
18654
|
}
|
|
18574
18655
|
|
|
18575
18656
|
.pf-v6-c-nav__section {
|
|
@@ -18600,13 +18681,13 @@ ul.pf-v6-c-list {
|
|
|
18600
18681
|
line-height: var(--pf-v6-c-nav__link--LineHeight, inherit);
|
|
18601
18682
|
color: var(--pf-v6-c-nav__link--Color);
|
|
18602
18683
|
text-align: start;
|
|
18603
|
-
text-decoration: none;
|
|
18684
|
+
text-decoration-line: none;
|
|
18604
18685
|
background-color: var(--pf-v6-c-nav__link--BackgroundColor);
|
|
18605
18686
|
border: none;
|
|
18606
18687
|
border-radius: var(--pf-v6-c-nav__link--BorderRadius);
|
|
18607
|
-
|
|
18608
|
-
|
|
18609
|
-
|
|
18688
|
+
transition-timing-function: var(--pf-v6-c-nav__link--TransitionTimingFunction--background-color), var(--pf-v6-c-nav__link--m-current--TransitionTimingFunction--color);
|
|
18689
|
+
transition-duration: var(--pf-v6-c-nav__link--TransitionDuration--background-color), var(--pf-v6-c-nav__link--m-current--TransitionDuration--color);
|
|
18690
|
+
transition-property: background-color, color;
|
|
18610
18691
|
}
|
|
18611
18692
|
.pf-v6-c-nav__link:hover, .pf-v6-c-nav__link.pf-m-hover, .pf-v6-c-nav__link:focus {
|
|
18612
18693
|
color: var(--pf-v6-c-nav__link--hover--Color);
|
|
@@ -18631,6 +18712,9 @@ ul.pf-v6-c-list {
|
|
|
18631
18712
|
|
|
18632
18713
|
.pf-v6-c-nav__toggle-icon {
|
|
18633
18714
|
display: inline-block;
|
|
18715
|
+
transition-timing-function: var(--pf-v6-c-nav__item__toggle-icon--TransitionTimingFunction--transform);
|
|
18716
|
+
transition-duration: var(--pf-v6-c-nav__item__toggle-icon--TransitionDuration--transform);
|
|
18717
|
+
transition-property: transform;
|
|
18634
18718
|
transform: rotate(var(--pf-v6-c-nav__item__toggle-icon--Rotate));
|
|
18635
18719
|
}
|
|
18636
18720
|
:where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-nav__toggle-icon {
|
|
@@ -20303,9 +20387,11 @@ ul.pf-v6-c-list {
|
|
|
20303
20387
|
}
|
|
20304
20388
|
|
|
20305
20389
|
.pf-v6-c-popover__title-text {
|
|
20390
|
+
min-width: 0;
|
|
20306
20391
|
font-size: var(--pf-v6-c-popover__title-text--FontSize);
|
|
20307
20392
|
font-weight: var(--pf-v6-c-popover__title-text--FontWeight);
|
|
20308
20393
|
color: var(--pf-v6-c-popover__title-text--Color);
|
|
20394
|
+
overflow-wrap: break-word;
|
|
20309
20395
|
}
|
|
20310
20396
|
|
|
20311
20397
|
.pf-v6-c-popover__body {
|
|
@@ -20320,6 +20406,7 @@ ul.pf-v6-c-list {
|
|
|
20320
20406
|
--pf-v6-c-progress--GridGap: var(--pf-t--global--spacer--md);
|
|
20321
20407
|
--pf-v6-c-progress__bar--Height: var(--pf-t--global--spacer--md);
|
|
20322
20408
|
--pf-v6-c-progress__bar--BackgroundColor: var(--pf-t--global--color--nonstatus--gray--default);
|
|
20409
|
+
--pf-v6-c-progress__bar--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
20323
20410
|
--pf-v6-c-progress__measure--m-static-width--MinWidth: 4.5ch;
|
|
20324
20411
|
--pf-v6-c-progress__status--Gap: var(--pf-t--global--spacer--sm);
|
|
20325
20412
|
--pf-v6-c-progress__status-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
@@ -20461,7 +20548,9 @@ ul.pf-v6-c-list {
|
|
|
20461
20548
|
grid-column: 1/3;
|
|
20462
20549
|
align-self: center;
|
|
20463
20550
|
height: var(--pf-v6-c-progress__bar--Height);
|
|
20551
|
+
overflow: hidden;
|
|
20464
20552
|
background-color: var(--pf-v6-c-progress__bar--BackgroundColor);
|
|
20553
|
+
border-radius: var(--pf-v6-c-progress__bar--BorderRadius);
|
|
20465
20554
|
}
|
|
20466
20555
|
|
|
20467
20556
|
.pf-v6-c-progress__indicator {
|
|
@@ -20798,7 +20887,8 @@ ul.pf-v6-c-list {
|
|
|
20798
20887
|
.pf-v6-c-progress-stepper__step-title.pf-m-help-text {
|
|
20799
20888
|
padding-inline-start: var(--pf-v6-c-progress-stepper__step-title--m-help-text--PaddingInlineStart);
|
|
20800
20889
|
padding-inline-end: var(--pf-v6-c-progress-stepper__step-title--m-help-text--PaddingInlineEnd);
|
|
20801
|
-
text-decoration: var(--pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationLine)
|
|
20890
|
+
text-decoration-line: var(--pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationLine);
|
|
20891
|
+
text-decoration-style: var(--pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationStyle);
|
|
20802
20892
|
text-underline-offset: var(--pf-v6-c-progress-stepper__step-title--m-help-text--TextUnderlineOffset);
|
|
20803
20893
|
cursor: pointer;
|
|
20804
20894
|
}
|
|
@@ -21551,7 +21641,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
21551
21641
|
font-size: var(--pf-v6-c-simple-list__item-link--FontSize);
|
|
21552
21642
|
color: var(--pf-v6-c-simple-list__item-link--Color);
|
|
21553
21643
|
text-align: start;
|
|
21554
|
-
text-decoration: none;
|
|
21644
|
+
text-decoration-line: none;
|
|
21555
21645
|
background-color: var(--pf-v6-c-simple-list__item-link--BackgroundColor);
|
|
21556
21646
|
border: none;
|
|
21557
21647
|
border-radius: var(--pf-v6-c-simple-list__item-link--BorderRadius);
|
|
@@ -21564,7 +21654,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
21564
21654
|
.pf-v6-c-simple-list__item-link:is(:hover, :focus) {
|
|
21565
21655
|
--pf-v6-c-simple-list__item-link--BackgroundColor: var(--pf-v6-c-simple-list__item-link--hover--BackgroundColor);
|
|
21566
21656
|
--pf-v6-c-simple-list__item-link--Color: var(--pf-v6-c-simple-list__item-link--hover--Color);
|
|
21567
|
-
text-decoration: none;
|
|
21657
|
+
text-decoration-line: none;
|
|
21568
21658
|
}
|
|
21569
21659
|
.pf-v6-c-simple-list__item-link.pf-m-current {
|
|
21570
21660
|
--pf-v6-c-simple-list__item-link--BackgroundColor: var(--pf-v6-c-simple-list__item-link--m-current--BackgroundColor);
|
|
@@ -26076,7 +26166,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
26076
26166
|
padding-inline-end: var(--pf-v6-c-tabs__link--PaddingInlineEnd);
|
|
26077
26167
|
font-size: var(--pf-v6-c-tabs__link--FontSize);
|
|
26078
26168
|
color: var(--pf-v6-c-tabs__link--Color);
|
|
26079
|
-
text-decoration: none;
|
|
26169
|
+
text-decoration-line: none;
|
|
26080
26170
|
background-color: var(--pf-v6-c-tabs__link--BackgroundColor);
|
|
26081
26171
|
border-radius: var(--pf-v6-c-tabs__link--BorderRadius);
|
|
26082
26172
|
}
|
|
@@ -26716,7 +26806,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
26716
26806
|
}
|
|
26717
26807
|
.pf-v6-c-timestamp.pf-m-help-text {
|
|
26718
26808
|
--pf-v6-c-timestamp--Color: var(--pf-v6-c-timestamp--m-help-text--Color);
|
|
26719
|
-
text-decoration: var(--pf-v6-c-timestamp--m-help-text--TextDecorationLine)
|
|
26809
|
+
text-decoration-line: var(--pf-v6-c-timestamp--m-help-text--TextDecorationLine);
|
|
26810
|
+
text-decoration-style: var(--pf-v6-c-timestamp--m-help-text--TextDecorationStyle);
|
|
26720
26811
|
text-underline-offset: var(--pf-v6-c-timestamp--m-help-text--TextUnderlineOffset);
|
|
26721
26812
|
cursor: pointer;
|
|
26722
26813
|
}
|
|
@@ -26929,7 +27020,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
26929
27020
|
--pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--hover--BackgroundColor);
|
|
26930
27021
|
--pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--hover--ZIndex);
|
|
26931
27022
|
--pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--hover--before--BorderColor);
|
|
26932
|
-
text-decoration: none;
|
|
27023
|
+
text-decoration-line: none;
|
|
26933
27024
|
}
|
|
26934
27025
|
.pf-v6-c-toggle-group__button.pf-m-selected {
|
|
26935
27026
|
--pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--m-selected--BackgroundColor);
|
|
@@ -29880,7 +29971,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
29880
29971
|
padding-inline: 0;
|
|
29881
29972
|
color: var(--pf-v6-c-wizard__nav-link--Color);
|
|
29882
29973
|
text-align: start;
|
|
29883
|
-
text-decoration: var(--pf-v6-c-wizard__nav-link--TextDecoration);
|
|
29974
|
+
text-decoration-line: var(--pf-v6-c-wizard__nav-link--TextDecoration);
|
|
29884
29975
|
word-break: break-word;
|
|
29885
29976
|
counter-increment: wizard-nav-count;
|
|
29886
29977
|
background-color: transparent;
|