@patternfly/react-styles 6.0.0-alpha.29 → 6.0.0-alpha.30
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +6 -0
- package/css/components/Accordion/accordion.css +2 -4
- package/css/components/Button/button.css +1 -1
- package/css/components/CalendarMonth/calendar-month.css +1 -1
- package/css/components/Card/card.css +1 -1
- package/css/components/Check/check.css +1 -1
- package/css/components/Content/content.css +7 -7
- package/css/components/EmptyState/empty-state.css +1 -1
- package/css/components/Form/form.css +1 -1
- package/css/components/HelperText/helper-text.css +1 -1
- package/css/components/Menu/menu.css +1 -1
- package/css/components/ModalBox/modal-box.css +1 -1
- package/css/components/MultipleFileUpload/multiple-file-upload.css +3 -3
- package/css/components/Nav/nav.css +1 -1
- package/css/components/NotificationDrawer/notification-drawer.css +1 -1
- package/css/components/Page/page.css +6 -6
- package/css/components/ProgressStepper/progress-stepper.css +1 -1
- package/css/components/Radio/radio.css +1 -1
- package/css/components/Table/table.css +1 -1
- package/css/components/Title/title.css +12 -12
- package/css/components/Wizard/wizard.css +1 -1
- package/css/components/_index.css +45 -47
- package/css/docs/components/Page/examples/Page.css +1 -1
- package/css/docs/components/Page/examples/Page.d.ts +1 -2
- package/css/docs/components/Page/examples/Page.js +1 -2
- package/css/docs/components/Page/examples/Page.mjs +1 -2
- package/css/layouts/Flex/flex.css +1 -1
- package/css/layouts/Gallery/gallery.css +1 -1
- package/css/layouts/Grid/grid.css +1 -1
- package/css/layouts/Level/level.css +1 -1
- package/css/layouts/Split/split.css +1 -1
- package/css/layouts/Stack/stack.css +1 -1
- package/css/layouts/_index.css +6 -6
- package/css/utilities/Text/text.css +6 -6
- package/css/utilities/_index.css +6 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,12 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
# [6.0.0-alpha.30](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.0.0-alpha.29...@patternfly/react-styles@6.0.0-alpha.30) (2024-07-22)
|
7
|
+
|
8
|
+
### Features
|
9
|
+
|
10
|
+
- **Page:** support page fill ([#10760](https://github.com/patternfly/patternfly-react/issues/10760)) ([850bd46](https://github.com/patternfly/patternfly-react/commit/850bd4631d4f5845c627ebb2cb86a6b1524d6ffc))
|
11
|
+
|
6
12
|
# [6.0.0-alpha.29](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.0.0-alpha.28...@patternfly/react-styles@6.0.0-alpha.29) (2024-07-15)
|
7
13
|
|
8
14
|
### Bug Fixes
|
@@ -14,7 +14,7 @@
|
|
14
14
|
--pf-v6-c-accordion__toggle--BorderRadius: var(--pf-t--global--border--radius--small);
|
15
15
|
--pf-v6-c-accordion--m-toggle-start__toggle--ColumnGap: var(--pf-t--global--spacer--md);
|
16
16
|
--pf-v6-c-accordion__toggle-text--Color: var(--pf-t--global--text--color--regular);
|
17
|
-
--pf-v6-c-accordion__toggle-text--FontWeight: var(--pf-t--global--font--weight--body);
|
17
|
+
--pf-v6-c-accordion__toggle-text--FontWeight: var(--pf-t--global--font--weight--body--default);
|
18
18
|
--pf-v6-c-accordion__toggle--m-expanded__toggle-text--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
19
19
|
--pf-v6-c-accordion__toggle-icon--Transition: .2s ease-in 0s;
|
20
20
|
--pf-v6-c-accordion__toggle--m-expanded__toggle-icon--Rotate: 90deg;
|
@@ -38,8 +38,7 @@
|
|
38
38
|
--pf-v6-c-accordion--m-display-lg__toggle--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
39
39
|
--pf-v6-c-accordion--m-display-lg__toggle--FontFamily: var(--pf-t--global--font--family--heading);
|
40
40
|
--pf-v6-c-accordion--m-display-lg__toggle--FontSize: var(--pf-t--global--font--size--heading--sm);
|
41
|
-
--pf-v6-c-accordion--m-display-lg__toggle-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
42
|
-
--pf-v6-c-accordion--m-display-lg__toggle--m-expanded__toggle-text--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
41
|
+
--pf-v6-c-accordion--m-display-lg__toggle-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
43
42
|
--pf-v6-c-accordion--m-display-lg__expandable-content--FontSize: var(--pf-t--global--font--size--body--lg);
|
44
43
|
--pf-v6-c-accordion--m-display-lg__expandable-content--Color: var(--pf-t--global--text--color--regular);
|
45
44
|
--pf-v6-c-accordion--m-bordered--RowGap: 0;
|
@@ -65,7 +64,6 @@
|
|
65
64
|
--pf-v6-c-accordion__toggle--FontFamily: var(--pf-v6-c-accordion--m-display-lg__toggle--FontFamily);
|
66
65
|
--pf-v6-c-accordion__toggle--FontSize: var(--pf-v6-c-accordion--m-display-lg__toggle--FontSize);
|
67
66
|
--pf-v6-c-accordion__toggle-text--FontWeight: var(--pf-v6-c-accordion--m-display-lg__toggle-text--FontWeight);
|
68
|
-
--pf-v6-c-accordion__toggle--m-expanded__toggle-text--FontWeight: var(--pf-v6-c-accordion--m-display-lg__toggle--m-expanded__toggle-text--FontWeight);
|
69
67
|
--pf-v6-c-accordion__expandable-content--FontSize: var(--pf-v6-c-accordion--m-display-lg__expandable-content--FontSize);
|
70
68
|
--pf-v6-c-accordion__expandable-content--Color: var(--pf-v6-c-accordion--m-display-lg__expandable-content--Color);
|
71
69
|
}
|
@@ -9,7 +9,7 @@
|
|
9
9
|
--pf-v6-c-button--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
10
10
|
--pf-v6-c-button--Color: var(--pf-t--global--text--color--regular);
|
11
11
|
--pf-v6-c-button--LineHeight: var(--pf-t--global--font--line-height--body);
|
12
|
-
--pf-v6-c-button--FontWeight: var(--pf-t--global--font--weight--body);
|
12
|
+
--pf-v6-c-button--FontWeight: var(--pf-t--global--font--weight--body--default);
|
13
13
|
--pf-v6-c-button--FontSize: var(--pf-t--global--font--size--body--default);
|
14
14
|
--pf-v6-c-button--BackgroundColor: transparent;
|
15
15
|
--pf-v6-c-button--BorderColor: transparent;
|
@@ -13,7 +13,7 @@
|
|
13
13
|
--pf-v6-c-calendar-month__days--BorderBlockEndWidth: var(--pf-t--global--border--width--divider--default);
|
14
14
|
--pf-v6-c-calendar-month__days--BorderBlockEndColor: var(--pf-t--global--border--color--default);
|
15
15
|
--pf-v6-c-calendar-month__day--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
16
|
-
--pf-v6-c-calendar-month__day--FontWeight: var(--pf-t--global--font--weight--body);
|
16
|
+
--pf-v6-c-calendar-month__day--FontWeight: var(--pf-t--global--font--weight--body--default);
|
17
17
|
--pf-v6-c-calendar-month__day--Color: var(--pf-t--global--text--color--regular);
|
18
18
|
--pf-v6-c-calendar-month__dates-cell--PaddingBlockStart: 0.125rem;
|
19
19
|
--pf-v6-c-calendar-month__dates-cell--PaddingInlineEnd: 0.125rem;
|
@@ -13,7 +13,7 @@
|
|
13
13
|
--pf-v6-c-card__title-text--Color: var(--pf-t--global--text--color--regular);
|
14
14
|
--pf-v6-c-card__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
15
15
|
--pf-v6-c-card__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
|
16
|
-
--pf-v6-c-card__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
16
|
+
--pf-v6-c-card__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
17
17
|
--pf-v6-c-card__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
18
18
|
--pf-v6-c-card--c-button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
19
19
|
--pf-v6-c-card__body--FontSize: var(--pf-t--global--font--size--body--default);
|
@@ -4,7 +4,7 @@
|
|
4
4
|
--pf-v6-c-check--MinHeight: calc(var(--pf-v6-c-check__label--FontSize) * var(--pf-v6-c-check__label--LineHeight));
|
5
5
|
--pf-v6-c-check__label--disabled--Color: var(--pf-t--global--text--color--disabled);
|
6
6
|
--pf-v6-c-check__label--Color: var(--pf-t--global--text--color--regular);
|
7
|
-
--pf-v6-c-check__label--FontWeight: var(--pf-t--global--font--weight--body);
|
7
|
+
--pf-v6-c-check__label--FontWeight: var(--pf-t--global--font--weight--body--default);
|
8
8
|
--pf-v6-c-check__label--FontSize: var(--pf-t--global--font--size--body--default);
|
9
9
|
--pf-v6-c-check__label--LineHeight: var(--pf-t--global--font--line-height--body);
|
10
10
|
--pf-v6-c-check__description--FontSize: var(--pf-t--global--font--size--body--sm);
|
@@ -2,39 +2,39 @@
|
|
2
2
|
--pf-v6-c-content--MarginBlockEnd: var(--pf-t--global--spacer--md);
|
3
3
|
--pf-v6-c-content--LineHeight: var(--pf-t--global--font--line-height--body);
|
4
4
|
--pf-v6-c-content--FontSize: var(--pf-t--global--font--size--body--default);
|
5
|
-
--pf-v6-c-content--FontWeight: var(--pf-t--global--font--weight--body);
|
5
|
+
--pf-v6-c-content--FontWeight: var(--pf-t--global--font--weight--body--default);
|
6
6
|
--pf-v6-c-content--Color: var(--pf-t--global--text--color--regular);
|
7
7
|
--pf-v6-c-content--heading--FontFamily: var(--pf-t--global--font--family--heading);
|
8
8
|
--pf-v6-c-content--h1--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
9
9
|
--pf-v6-c-content--h1--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
10
10
|
--pf-v6-c-content--h1--LineHeight: var(--pf-t--global--font--line-height--heading);
|
11
11
|
--pf-v6-c-content--h1--FontSize: var(--pf-t--global--font--size--heading--h1);
|
12
|
-
--pf-v6-c-content--h1--FontWeight: var(--pf-t--global--font--weight--heading);
|
12
|
+
--pf-v6-c-content--h1--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
13
13
|
--pf-v6-c-content--h2--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
14
14
|
--pf-v6-c-content--h2--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
15
15
|
--pf-v6-c-content--h2--LineHeight: var(--pf-t--global--font--line-height--heading);
|
16
16
|
--pf-v6-c-content--h2--FontSize: var(--pf-t--global--font--size--heading--h2);
|
17
|
-
--pf-v6-c-content--h2--FontWeight: var(--pf-t--global--font--weight--heading);
|
17
|
+
--pf-v6-c-content--h2--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
18
18
|
--pf-v6-c-content--h3--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
19
19
|
--pf-v6-c-content--h3--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
20
20
|
--pf-v6-c-content--h3--LineHeight: var(--pf-t--global--font--line-height--heading);
|
21
21
|
--pf-v6-c-content--h3--FontSize: var(--pf-t--global--font--size--heading--h3);
|
22
|
-
--pf-v6-c-content--h3--FontWeight: var(--pf-t--global--font--weight--heading);
|
22
|
+
--pf-v6-c-content--h3--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
23
23
|
--pf-v6-c-content--h4--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
24
24
|
--pf-v6-c-content--h4--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
25
25
|
--pf-v6-c-content--h4--LineHeight: var(--pf-t--global--font--line-height--heading);
|
26
26
|
--pf-v6-c-content--h4--FontSize: var(--pf-t--global--font--size--heading--h4);
|
27
|
-
--pf-v6-c-content--h4--FontWeight: var(--pf-t--global--font--weight--heading);
|
27
|
+
--pf-v6-c-content--h4--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
28
28
|
--pf-v6-c-content--h5--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
29
29
|
--pf-v6-c-content--h5--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
30
30
|
--pf-v6-c-content--h5--LineHeight: var(--pf-t--global--font--line-height--heading);
|
31
31
|
--pf-v6-c-content--h5--FontSize: var(--pf-t--global--font--size--heading--h5);
|
32
|
-
--pf-v6-c-content--h5--FontWeight: var(--pf-t--global--font--weight--heading);
|
32
|
+
--pf-v6-c-content--h5--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
33
33
|
--pf-v6-c-content--h6--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
34
34
|
--pf-v6-c-content--h6--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
35
35
|
--pf-v6-c-content--h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
36
36
|
--pf-v6-c-content--h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
37
|
-
--pf-v6-c-content--h6--FontWeight: var(--pf-t--global--font--weight--heading);
|
37
|
+
--pf-v6-c-content--h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
38
38
|
--pf-v6-c-content--small--MarginBlockEnd: var(--pf-t--global--spacer--md);
|
39
39
|
--pf-v6-c-content--small--LineHeight: var(--pf-t--global--font--line-height--body);
|
40
40
|
--pf-v6-c-content--small--FontSize: var(--pf-t--global--font--size--body--sm);
|
@@ -24,7 +24,7 @@
|
|
24
24
|
--pf-v6-c-empty-state--m-custom__icon--Color: var(--pf-t--global--icon--color--status--custom--default);
|
25
25
|
--pf-v6-c-empty-state__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
26
26
|
--pf-v6-c-empty-state__title-text--FontSize: var(--pf-t--global--font--size--heading--md);
|
27
|
-
--pf-v6-c-empty-state__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
27
|
+
--pf-v6-c-empty-state__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
28
28
|
--pf-v6-c-empty-state__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
29
29
|
--pf-v6-c-empty-state--m-xs__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
|
30
30
|
--pf-v6-c-empty-state--m-xl__title-text--FontSize: var(--pf-t--global--font--size--heading--2xl);
|
@@ -41,7 +41,7 @@
|
|
41
41
|
--pf-v6-c-form__section--MarginBlockStart: var(--pf-t--global--spacer--xl);
|
42
42
|
--pf-v6-c-form__section--Gap: var(--pf-t--global--spacer--md);
|
43
43
|
--pf-v6-c-form__section-title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
44
|
-
--pf-v6-c-form__section-title--FontWeight: var(--pf-t--global--font--weight--heading);
|
44
|
+
--pf-v6-c-form__section-title--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
45
45
|
--pf-v6-c-form__section-title--MarginBlockEnd: calc(var(--pf-t--global--spacer--sm) * -1);
|
46
46
|
--pf-v6-c-form__field-group--border-width-base: var(--pf-t--global--border--width--divider--default);
|
47
47
|
--pf-v6-c-form__field-group--BorderBlockStartWidth: var(--pf-v6-c-form__field-group--border-width-base);
|
@@ -3,7 +3,7 @@
|
|
3
3
|
--pf-v6-c-helper-text--FontSize: var(--pf-t--global--font--size--body--sm);
|
4
4
|
--pf-v6-c-helper-text__item-icon--Color: var(--pf-t--global--icon--color--regular);
|
5
5
|
--pf-v6-c-helper-text__item-text--Color: var(--pf-t--global--text--color--regular);
|
6
|
-
--pf-v6-c-helper-text__item-text--FontWeight: var(--pf-t--global--font--weight--body);
|
6
|
+
--pf-v6-c-helper-text__item-text--FontWeight: var(--pf-t--global--font--weight--body--default);
|
7
7
|
--pf-v6-c-helper-text__item-icon--m-indeterminate--Color: var(--pf-t--global--icon--color--subtle);
|
8
8
|
--pf-v6-c-helper-text__item-text--m-indeterminate--Color: var(--pf-t--global--text--color--subtle);
|
9
9
|
--pf-v6-c-helper-text__item-icon--m-warning--Color: var(--pf-t--global--icon--color--status--warning--default);
|
@@ -42,7 +42,7 @@
|
|
42
42
|
--pf-v6-c-menu__item--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
43
43
|
--pf-v6-c-menu__item--FontSize: var(--pf-t--global--font--size--body--default);
|
44
44
|
--pf-v6-c-menu__item--LineHeight: var(--pf-t--global--font--line-height--body);
|
45
|
-
--pf-v6-c-menu__item--FontWeight: var(--pf-t--global--font--weight--body);
|
45
|
+
--pf-v6-c-menu__item--FontWeight: var(--pf-t--global--font--weight--body--default);
|
46
46
|
--pf-v6-c-menu__item--Color: var(--pf-t--global--text--color--regular);
|
47
47
|
--pf-v6-c-menu__item--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
48
48
|
--pf-v6-c-menu__item--m-disabled--Color: var(--pf-t--global--text--color--disabled);
|
@@ -27,7 +27,7 @@
|
|
27
27
|
--pf-v6-c-modal-box__header-main--Gap: var(--pf-t--global--spacer--md);
|
28
28
|
--pf-v6-c-modal-box__title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
29
29
|
--pf-v6-c-modal-box__title--FontFamily: var(--pf-t--global--font--family--heading);
|
30
|
-
--pf-v6-c-modal-box__title--FontWeight: var(--pf-t--global--font--weight--heading);
|
30
|
+
--pf-v6-c-modal-box__title--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
31
31
|
--pf-v6-c-modal-box__title--FontSize: var(--pf-t--global--font--size--heading--md);
|
32
32
|
--pf-v6-c-modal-box__title-icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
33
33
|
--pf-v6-c-modal-box__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
@@ -22,7 +22,7 @@
|
|
22
22
|
--pf-v6-c-multiple-file-upload__title-text--Color: var(--pf-t--global--text--color--regular);
|
23
23
|
--pf-v6-c-multiple-file-upload__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
24
24
|
--pf-v6-c-multiple-file-upload__title-text--FontSize: var(--pf-t--global--font--size--heading--sm);
|
25
|
-
--pf-v6-c-multiple-file-upload__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
25
|
+
--pf-v6-c-multiple-file-upload__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
26
26
|
--pf-v6-c-multiple-file-upload__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
27
27
|
--pf-v6-c-multiple-file-upload__title-icon--FontSize: var(--pf-t--global--icon--size--xl);
|
28
28
|
--pf-v6-c-multiple-file-upload__title-text-separator--Display: block;
|
@@ -31,7 +31,7 @@
|
|
31
31
|
--pf-v6-c-multiple-file-upload__title-text-separator--Color: var(--pf-t--global--text--color--regular);
|
32
32
|
--pf-v6-c-multiple-file-upload__title-text-separator--FontFamily: var(--pf-t--global--font--family--body);
|
33
33
|
--pf-v6-c-multiple-file-upload__title-text-separator--FontSize: var(--pf-t--global--font--size--body--lg);
|
34
|
-
--pf-v6-c-multiple-file-upload__title-text-separator--FontWeight: var(--pf-t--global--font--weight--body);
|
34
|
+
--pf-v6-c-multiple-file-upload__title-text-separator--FontWeight: var(--pf-t--global--font--weight--body--default);
|
35
35
|
--pf-v6-c-multiple-file-upload__info--FontSize: var(--pf-t--global--font--size--body--default);
|
36
36
|
--pf-v6-c-multiple-file-upload__info--Color: var(--pf-t--global--text--color--subtle);
|
37
37
|
--pf-v6-c-multiple-file-upload__info--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
@@ -53,7 +53,7 @@
|
|
53
53
|
--pf-v6-c-multiple-file-upload--m-horizontal__title-text-separator--MarginBlockStart: 0;
|
54
54
|
--pf-v6-c-multiple-file-upload--m-horizontal__title-text-separator--FontFamily: var(--pf-t--global--font--family--heading);
|
55
55
|
--pf-v6-c-multiple-file-upload--m-horizontal__title-text-separator--FontSize: var(--pf-t--global--font--size--heading--xs);
|
56
|
-
--pf-v6-c-multiple-file-upload--m-horizontal__title-text-separator--FontWeight: var(--pf-t--global--font--weight--heading);
|
56
|
+
--pf-v6-c-multiple-file-upload--m-horizontal__title-text-separator--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
57
57
|
--pf-v6-c-multiple-file-upload--m-horizontal__info--MarginBlockStart: 0;
|
58
58
|
--pf-v6-c-multiple-file-upload__status--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
59
59
|
--pf-v6-c-multiple-file-upload__status--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
@@ -13,7 +13,7 @@
|
|
13
13
|
--pf-v6-c-nav--ColumnGap: 0;
|
14
14
|
--pf-v6-c-nav--AlignItems: baseline;
|
15
15
|
--pf-v6-c-nav--FontSize: var(--pf-t--global--font--size--body--default);
|
16
|
-
--pf-v6-c-nav--FontWeight: var(--pf-t--global--font--weight--body);
|
16
|
+
--pf-v6-c-nav--FontWeight: var(--pf-t--global--font--weight--body--default);
|
17
17
|
--pf-v6-c-nav--LineHeight: var(--pf-t--global--font--line-height--body);
|
18
18
|
--pf-v6-c-nav--OutlineOffset: calc(var(--pf-t--global--spacer--xs) * -1);
|
19
19
|
--pf-v6-c-nav--BackgroundColor: transparent;
|
@@ -7,7 +7,7 @@
|
|
7
7
|
--pf-v6-c-notification-drawer__header--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
8
8
|
--pf-v6-c-notification-drawer__header--ZIndex: var(--pf-t--global--z-index--sm);
|
9
9
|
--pf-v6-c-notification-drawer__header-title--FontSize: var(--pf-t--global--font--size--heading--md);
|
10
|
-
--pf-v6-c-notification-drawer__header-title--FontWeight: var(--pf-t--global--font--weight--heading--
|
10
|
+
--pf-v6-c-notification-drawer__header-title--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
11
11
|
--pf-v6-c-notification-drawer__header-title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
12
12
|
--pf-v6-c-notification-drawer__header-title--FontFamily: var(--pf-t--global--font--family--heading);
|
13
13
|
--pf-v6-c-notification-drawer__header-status--MarginInlineStart: var(--pf-t--global--spacer--md);
|
@@ -23,7 +23,7 @@
|
|
23
23
|
--pf-v6-c-page__sidebar-title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
24
24
|
--pf-v6-c-page__sidebar-title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
25
25
|
--pf-v6-c-page__sidebar-title--FontFamily: var(--pf-t--global--font--family--heading);
|
26
|
-
--pf-v6-c-page__sidebar-title--FontWeight: var(--pf-t--global--font--weight--heading);
|
26
|
+
--pf-v6-c-page__sidebar-title--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
27
27
|
--pf-v6-c-page__sidebar-body--PaddingInlineEnd: 0;
|
28
28
|
--pf-v6-c-page__sidebar-body--PaddingInlineStart: 0;
|
29
29
|
--pf-v6-c-page__sidebar-body--m-page-insets--PaddingInlineEnd: var(--pf-v6-c-page--inset);
|
@@ -415,6 +415,7 @@
|
|
415
415
|
.pf-v6-c-page__main-container {
|
416
416
|
display: flex;
|
417
417
|
flex-direction: column;
|
418
|
+
align-self: start;
|
418
419
|
max-height: var(--pf-v6-c-page__main-container--MaxHeight);
|
419
420
|
margin-block-start: 0;
|
420
421
|
margin-inline-start: var(--pf-v6-c-page__main-container--MarginInlineStart);
|
@@ -424,6 +425,9 @@
|
|
424
425
|
border: var(--pf-v6-c-page__main-container--BorderWidth) solid var(--pf-v6-c-page__main-container--BorderColor);
|
425
426
|
border-radius: var(--pf-v6-c-page__main-container--BorderRadius);
|
426
427
|
}
|
428
|
+
.pf-v6-c-page__main-container.pf-m-fill, .pf-v6-c-page__main-container:has(.pf-v6-c-page__main-wizard) {
|
429
|
+
align-self: stretch;
|
430
|
+
}
|
427
431
|
|
428
432
|
.pf-v6-c-page__main-container,
|
429
433
|
.pf-v6-c-page__drawer {
|
@@ -543,12 +547,8 @@
|
|
543
547
|
--pf-v6-c-page__main-tabs--PaddingBlockStart: var(--pf-v6-c-page__main-breadcrumb--page__main-tabs--PaddingBlockStart);
|
544
548
|
}
|
545
549
|
|
546
|
-
.pf-v6-c-page__main-section
|
547
|
-
.pf-v6-c-page__main-group:last-child,
|
548
|
-
.pf-v6-c-page__main-group:only-child,
|
550
|
+
.pf-v6-c-page__main-section.pf-m-fill,
|
549
551
|
.pf-v6-c-page__main-group.pf-m-fill,
|
550
|
-
.pf-v6-c-page__main-wizard:last-child,
|
551
|
-
.pf-v6-c-page__main-wizard:only-child,
|
552
552
|
.pf-v6-c-page__main-wizard.pf-m-fill {
|
553
553
|
flex-grow: 1;
|
554
554
|
}
|
@@ -79,7 +79,7 @@
|
|
79
79
|
--pf-v6-c-progress-stepper__step-title--Color: var(--pf-t--global--text--color--regular);
|
80
80
|
--pf-v6-c-progress-stepper__step-title--TextAlign: start;
|
81
81
|
--pf-v6-c-progress-stepper__step-title--FontSize: var(--pf-t--global--font--size--body--lg);
|
82
|
-
--pf-v6-c-progress-stepper__step-title--FontWeight: var(--pf-t--global--font--weight--body);
|
82
|
+
--pf-v6-c-progress-stepper__step-title--FontWeight: var(--pf-t--global--font--weight--body--default);
|
83
83
|
--pf-v6-c-progress-stepper__step--m-current__step-title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
84
84
|
--pf-v6-c-progress-stepper__step--m-current__step-title--Color: var(--pf-t--global--text--color--regular);
|
85
85
|
--pf-v6-c-progress-stepper__step--m-pending__step-title--Color: var(--pf-t--global--text--color--subtle);
|
@@ -4,7 +4,7 @@
|
|
4
4
|
--pf-v6-c-radio--Height: calc(var(--pf-v6-c-radio__label--FontSize) * var(--pf-v6-c-radio__label--LineHeight));
|
5
5
|
--pf-v6-c-radio__label--disabled--Color: var(--pf-t--global--text--color--disabled);
|
6
6
|
--pf-v6-c-radio__label--Color: var(--pf-t--global--text--color--regular);
|
7
|
-
--pf-v6-c-radio__label--FontWeight: var(--pf-t--global--font--weight--body);
|
7
|
+
--pf-v6-c-radio__label--FontWeight: var(--pf-t--global--font--weight--body--default);
|
8
8
|
--pf-v6-c-radio__label--FontSize: var(--pf-t--global--font--size--body--default);
|
9
9
|
--pf-v6-c-radio__label--LineHeight: var(--pf-t--global--font--line-height--body);
|
10
10
|
--pf-v6-c-radio__description--FontSize: var(--pf-t--global--font--size--body--sm);
|
@@ -22,7 +22,7 @@
|
|
22
22
|
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--cell--Padding--base);
|
23
23
|
--pf-v6-c-table--cell--PaddingInlineStart: var(--pf-v6-c-table--cell--Padding--base);
|
24
24
|
--pf-v6-c-table--cell--FontSize: var(--pf-t--global--font--size--body--default);
|
25
|
-
--pf-v6-c-table--cell--FontWeight: var(--pf-t--global--font--weight--body);
|
25
|
+
--pf-v6-c-table--cell--FontWeight: var(--pf-t--global--font--weight--body--default);
|
26
26
|
--pf-v6-c-table--cell--LineHeight: var(--pf-t--global--font--line-height--body);
|
27
27
|
--pf-v6-c-table--cell--Color: var(--pf-t--global--text--color--regular);
|
28
28
|
--pf-v6-c-table--cell--first-last-child--PaddingInline: var(--pf-t--global--spacer--sm);
|
@@ -2,40 +2,40 @@
|
|
2
2
|
--pf-v6-c-title--FontFamily: var(--pf-t--global--font--family--heading);
|
3
3
|
--pf-v6-c-title--m-4xl--LineHeight: var(--pf-t--global--font--line-height--heading);
|
4
4
|
--pf-v6-c-title--m-4xl--FontSize: var(--pf-t--global--font--size--heading--2xl);
|
5
|
-
--pf-v6-c-title--m-4xl--FontWeight: var(--pf-t--global--font--weight--heading);
|
5
|
+
--pf-v6-c-title--m-4xl--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
6
6
|
--pf-v6-c-title--m-3xl--LineHeight: var(--pf-t--global--font--line-height--heading);
|
7
7
|
--pf-v6-c-title--m-3xl--FontSize: var(--pf-t--global--font--size--heading--xl);
|
8
|
-
--pf-v6-c-title--m-3xl--FontWeight: var(--pf-t--global--font--weight--heading);
|
8
|
+
--pf-v6-c-title--m-3xl--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
9
9
|
--pf-v6-c-title--m-2xl--LineHeight: var(--pf-t--global--font--line-height--heading);
|
10
10
|
--pf-v6-c-title--m-2xl--FontSize: var(--pf-t--global--font--size--heading--lg);
|
11
|
-
--pf-v6-c-title--m-2xl--FontWeight: var(--pf-t--global--font--weight--heading);
|
11
|
+
--pf-v6-c-title--m-2xl--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
12
12
|
--pf-v6-c-title--m-xl--LineHeight: var(--pf-t--global--font--line-height--heading);
|
13
13
|
--pf-v6-c-title--m-xl--FontSize: var(--pf-t--global--font--size--heading--md);
|
14
|
-
--pf-v6-c-title--m-xl--FontWeight: var(--pf-t--global--font--weight--heading);
|
14
|
+
--pf-v6-c-title--m-xl--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
15
15
|
--pf-v6-c-title--m-lg--LineHeight: var(--pf-t--global--font--line-height--heading);
|
16
16
|
--pf-v6-c-title--m-lg--FontSize: var(--pf-t--global--font--size--heading--sm);
|
17
|
-
--pf-v6-c-title--m-lg--FontWeight: var(--pf-t--global--font--weight--heading);
|
17
|
+
--pf-v6-c-title--m-lg--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
18
18
|
--pf-v6-c-title--m-md--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19
19
|
--pf-v6-c-title--m-md--FontSize: var(--pf-t--global--font--size--heading--xs);
|
20
|
-
--pf-v6-c-title--m-md--FontWeight: var(--pf-t--global--font--weight--heading);
|
20
|
+
--pf-v6-c-title--m-md--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
21
21
|
--pf-v6-c-title--m-h1--LineHeight: var(--pf-t--global--font--line-height--heading);
|
22
22
|
--pf-v6-c-title--m-h1--FontSize: var(--pf-t--global--font--size--heading--h1);
|
23
|
-
--pf-v6-c-title--m-h1--FontWeight: var(--pf-t--global--font--weight--heading);
|
23
|
+
--pf-v6-c-title--m-h1--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
24
24
|
--pf-v6-c-title--m-h2--LineHeight: var(--pf-t--global--font--line-height--heading);
|
25
25
|
--pf-v6-c-title--m-h2--FontSize: var(--pf-t--global--font--size--heading--h2);
|
26
|
-
--pf-v6-c-title--m-h2--FontWeight: var(--pf-t--global--font--weight--heading);
|
26
|
+
--pf-v6-c-title--m-h2--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
27
27
|
--pf-v6-c-title--m-h3--LineHeight: var(--pf-t--global--font--line-height--heading);
|
28
28
|
--pf-v6-c-title--m-h3--FontSize: var(--pf-t--global--font--size--heading--h3);
|
29
|
-
--pf-v6-c-title--m-h3--FontWeight: var(--pf-t--global--font--weight--heading);
|
29
|
+
--pf-v6-c-title--m-h3--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
30
30
|
--pf-v6-c-title--m-h4--LineHeight: var(--pf-t--global--font--line-height--heading);
|
31
31
|
--pf-v6-c-title--m-h4--FontSize: var(--pf-t--global--font--size--heading--h4);
|
32
|
-
--pf-v6-c-title--m-h4--FontWeight: var(--pf-t--global--font--weight--heading);
|
32
|
+
--pf-v6-c-title--m-h4--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
33
33
|
--pf-v6-c-title--m-h5--LineHeight: var(--pf-t--global--font--line-height--heading);
|
34
34
|
--pf-v6-c-title--m-h5--FontSize: var(--pf-t--global--font--size--heading--h5);
|
35
|
-
--pf-v6-c-title--m-h5--FontWeight: var(--pf-t--global--font--weight--heading);
|
35
|
+
--pf-v6-c-title--m-h5--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
36
36
|
--pf-v6-c-title--m-h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
37
37
|
--pf-v6-c-title--m-h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
38
|
-
--pf-v6-c-title--m-h6--FontWeight: var(--pf-t--global--font--weight--heading);
|
38
|
+
--pf-v6-c-title--m-h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
39
39
|
}
|
40
40
|
|
41
41
|
.pf-v6-c-title {
|
@@ -16,7 +16,7 @@
|
|
16
16
|
--pf-v6-c-wizard__title--PaddingInlineEnd: var(--pf-t--global--spacer--2xl);
|
17
17
|
--pf-v6-c-wizard__title-text--FontSize: var(--pf-t--global--font--size--3xl);
|
18
18
|
--pf-v6-c-wizard__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
19
|
-
--pf-v6-c-wizard__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
19
|
+
--pf-v6-c-wizard__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
20
20
|
--pf-v6-c-wizard__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
21
21
|
--pf-v6-c-wizard__title-text--Color: var(--pf-t--global--text--color--regular);
|
22
22
|
--pf-v6-c-wizard__description--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
@@ -209,7 +209,7 @@
|
|
209
209
|
--pf-v6-c-accordion__toggle--BorderRadius: var(--pf-t--global--border--radius--small);
|
210
210
|
--pf-v6-c-accordion--m-toggle-start__toggle--ColumnGap: var(--pf-t--global--spacer--md);
|
211
211
|
--pf-v6-c-accordion__toggle-text--Color: var(--pf-t--global--text--color--regular);
|
212
|
-
--pf-v6-c-accordion__toggle-text--FontWeight: var(--pf-t--global--font--weight--body);
|
212
|
+
--pf-v6-c-accordion__toggle-text--FontWeight: var(--pf-t--global--font--weight--body--default);
|
213
213
|
--pf-v6-c-accordion__toggle--m-expanded__toggle-text--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
214
214
|
--pf-v6-c-accordion__toggle-icon--Transition: .2s ease-in 0s;
|
215
215
|
--pf-v6-c-accordion__toggle--m-expanded__toggle-icon--Rotate: 90deg;
|
@@ -233,8 +233,7 @@
|
|
233
233
|
--pf-v6-c-accordion--m-display-lg__toggle--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
234
234
|
--pf-v6-c-accordion--m-display-lg__toggle--FontFamily: var(--pf-t--global--font--family--heading);
|
235
235
|
--pf-v6-c-accordion--m-display-lg__toggle--FontSize: var(--pf-t--global--font--size--heading--sm);
|
236
|
-
--pf-v6-c-accordion--m-display-lg__toggle-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
237
|
-
--pf-v6-c-accordion--m-display-lg__toggle--m-expanded__toggle-text--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
236
|
+
--pf-v6-c-accordion--m-display-lg__toggle-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
238
237
|
--pf-v6-c-accordion--m-display-lg__expandable-content--FontSize: var(--pf-t--global--font--size--body--lg);
|
239
238
|
--pf-v6-c-accordion--m-display-lg__expandable-content--Color: var(--pf-t--global--text--color--regular);
|
240
239
|
--pf-v6-c-accordion--m-bordered--RowGap: 0;
|
@@ -260,7 +259,6 @@
|
|
260
259
|
--pf-v6-c-accordion__toggle--FontFamily: var(--pf-v6-c-accordion--m-display-lg__toggle--FontFamily);
|
261
260
|
--pf-v6-c-accordion__toggle--FontSize: var(--pf-v6-c-accordion--m-display-lg__toggle--FontSize);
|
262
261
|
--pf-v6-c-accordion__toggle-text--FontWeight: var(--pf-v6-c-accordion--m-display-lg__toggle-text--FontWeight);
|
263
|
-
--pf-v6-c-accordion__toggle--m-expanded__toggle-text--FontWeight: var(--pf-v6-c-accordion--m-display-lg__toggle--m-expanded__toggle-text--FontWeight);
|
264
262
|
--pf-v6-c-accordion__expandable-content--FontSize: var(--pf-v6-c-accordion--m-display-lg__expandable-content--FontSize);
|
265
263
|
--pf-v6-c-accordion__expandable-content--Color: var(--pf-v6-c-accordion--m-display-lg__expandable-content--Color);
|
266
264
|
}
|
@@ -1412,7 +1410,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
1412
1410
|
--pf-v6-c-button--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
1413
1411
|
--pf-v6-c-button--Color: var(--pf-t--global--text--color--regular);
|
1414
1412
|
--pf-v6-c-button--LineHeight: var(--pf-t--global--font--line-height--body);
|
1415
|
-
--pf-v6-c-button--FontWeight: var(--pf-t--global--font--weight--body);
|
1413
|
+
--pf-v6-c-button--FontWeight: var(--pf-t--global--font--weight--body--default);
|
1416
1414
|
--pf-v6-c-button--FontSize: var(--pf-t--global--font--size--body--default);
|
1417
1415
|
--pf-v6-c-button--BackgroundColor: transparent;
|
1418
1416
|
--pf-v6-c-button--BorderColor: transparent;
|
@@ -2002,7 +2000,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
2002
2000
|
--pf-v6-c-calendar-month__days--BorderBlockEndWidth: var(--pf-t--global--border--width--divider--default);
|
2003
2001
|
--pf-v6-c-calendar-month__days--BorderBlockEndColor: var(--pf-t--global--border--color--default);
|
2004
2002
|
--pf-v6-c-calendar-month__day--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
2005
|
-
--pf-v6-c-calendar-month__day--FontWeight: var(--pf-t--global--font--weight--body);
|
2003
|
+
--pf-v6-c-calendar-month__day--FontWeight: var(--pf-t--global--font--weight--body--default);
|
2006
2004
|
--pf-v6-c-calendar-month__day--Color: var(--pf-t--global--text--color--regular);
|
2007
2005
|
--pf-v6-c-calendar-month__dates-cell--PaddingBlockStart: 0.125rem;
|
2008
2006
|
--pf-v6-c-calendar-month__dates-cell--PaddingInlineEnd: 0.125rem;
|
@@ -2207,7 +2205,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
2207
2205
|
--pf-v6-c-card__title-text--Color: var(--pf-t--global--text--color--regular);
|
2208
2206
|
--pf-v6-c-card__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
2209
2207
|
--pf-v6-c-card__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
|
2210
|
-
--pf-v6-c-card__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
2208
|
+
--pf-v6-c-card__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
2211
2209
|
--pf-v6-c-card__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
2212
2210
|
--pf-v6-c-card--c-button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
2213
2211
|
--pf-v6-c-card__body--FontSize: var(--pf-t--global--font--size--body--default);
|
@@ -2525,7 +2523,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
2525
2523
|
--pf-v6-c-check--MinHeight: calc(var(--pf-v6-c-check__label--FontSize) * var(--pf-v6-c-check__label--LineHeight));
|
2526
2524
|
--pf-v6-c-check__label--disabled--Color: var(--pf-t--global--text--color--disabled);
|
2527
2525
|
--pf-v6-c-check__label--Color: var(--pf-t--global--text--color--regular);
|
2528
|
-
--pf-v6-c-check__label--FontWeight: var(--pf-t--global--font--weight--body);
|
2526
|
+
--pf-v6-c-check__label--FontWeight: var(--pf-t--global--font--weight--body--default);
|
2529
2527
|
--pf-v6-c-check__label--FontSize: var(--pf-t--global--font--size--body--default);
|
2530
2528
|
--pf-v6-c-check__label--LineHeight: var(--pf-t--global--font--line-height--body);
|
2531
2529
|
--pf-v6-c-check__description--FontSize: var(--pf-t--global--font--size--body--sm);
|
@@ -2931,39 +2929,39 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
2931
2929
|
--pf-v6-c-content--MarginBlockEnd: var(--pf-t--global--spacer--md);
|
2932
2930
|
--pf-v6-c-content--LineHeight: var(--pf-t--global--font--line-height--body);
|
2933
2931
|
--pf-v6-c-content--FontSize: var(--pf-t--global--font--size--body--default);
|
2934
|
-
--pf-v6-c-content--FontWeight: var(--pf-t--global--font--weight--body);
|
2932
|
+
--pf-v6-c-content--FontWeight: var(--pf-t--global--font--weight--body--default);
|
2935
2933
|
--pf-v6-c-content--Color: var(--pf-t--global--text--color--regular);
|
2936
2934
|
--pf-v6-c-content--heading--FontFamily: var(--pf-t--global--font--family--heading);
|
2937
2935
|
--pf-v6-c-content--h1--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
2938
2936
|
--pf-v6-c-content--h1--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
2939
2937
|
--pf-v6-c-content--h1--LineHeight: var(--pf-t--global--font--line-height--heading);
|
2940
2938
|
--pf-v6-c-content--h1--FontSize: var(--pf-t--global--font--size--heading--h1);
|
2941
|
-
--pf-v6-c-content--h1--FontWeight: var(--pf-t--global--font--weight--heading);
|
2939
|
+
--pf-v6-c-content--h1--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
2942
2940
|
--pf-v6-c-content--h2--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
2943
2941
|
--pf-v6-c-content--h2--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
2944
2942
|
--pf-v6-c-content--h2--LineHeight: var(--pf-t--global--font--line-height--heading);
|
2945
2943
|
--pf-v6-c-content--h2--FontSize: var(--pf-t--global--font--size--heading--h2);
|
2946
|
-
--pf-v6-c-content--h2--FontWeight: var(--pf-t--global--font--weight--heading);
|
2944
|
+
--pf-v6-c-content--h2--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
2947
2945
|
--pf-v6-c-content--h3--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
2948
2946
|
--pf-v6-c-content--h3--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
2949
2947
|
--pf-v6-c-content--h3--LineHeight: var(--pf-t--global--font--line-height--heading);
|
2950
2948
|
--pf-v6-c-content--h3--FontSize: var(--pf-t--global--font--size--heading--h3);
|
2951
|
-
--pf-v6-c-content--h3--FontWeight: var(--pf-t--global--font--weight--heading);
|
2949
|
+
--pf-v6-c-content--h3--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
2952
2950
|
--pf-v6-c-content--h4--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
2953
2951
|
--pf-v6-c-content--h4--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
2954
2952
|
--pf-v6-c-content--h4--LineHeight: var(--pf-t--global--font--line-height--heading);
|
2955
2953
|
--pf-v6-c-content--h4--FontSize: var(--pf-t--global--font--size--heading--h4);
|
2956
|
-
--pf-v6-c-content--h4--FontWeight: var(--pf-t--global--font--weight--heading);
|
2954
|
+
--pf-v6-c-content--h4--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
2957
2955
|
--pf-v6-c-content--h5--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
2958
2956
|
--pf-v6-c-content--h5--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
2959
2957
|
--pf-v6-c-content--h5--LineHeight: var(--pf-t--global--font--line-height--heading);
|
2960
2958
|
--pf-v6-c-content--h5--FontSize: var(--pf-t--global--font--size--heading--h5);
|
2961
|
-
--pf-v6-c-content--h5--FontWeight: var(--pf-t--global--font--weight--heading);
|
2959
|
+
--pf-v6-c-content--h5--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
2962
2960
|
--pf-v6-c-content--h6--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
2963
2961
|
--pf-v6-c-content--h6--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
2964
2962
|
--pf-v6-c-content--h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
2965
2963
|
--pf-v6-c-content--h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
2966
|
-
--pf-v6-c-content--h6--FontWeight: var(--pf-t--global--font--weight--heading);
|
2964
|
+
--pf-v6-c-content--h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
2967
2965
|
--pf-v6-c-content--small--MarginBlockEnd: var(--pf-t--global--spacer--md);
|
2968
2966
|
--pf-v6-c-content--small--LineHeight: var(--pf-t--global--font--line-height--body);
|
2969
2967
|
--pf-v6-c-content--small--FontSize: var(--pf-t--global--font--size--body--sm);
|
@@ -5972,7 +5970,7 @@ ul) {
|
|
5972
5970
|
--pf-v6-c-empty-state--m-custom__icon--Color: var(--pf-t--global--icon--color--status--custom--default);
|
5973
5971
|
--pf-v6-c-empty-state__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
5974
5972
|
--pf-v6-c-empty-state__title-text--FontSize: var(--pf-t--global--font--size--heading--md);
|
5975
|
-
--pf-v6-c-empty-state__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
5973
|
+
--pf-v6-c-empty-state__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
5976
5974
|
--pf-v6-c-empty-state__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
5977
5975
|
--pf-v6-c-empty-state--m-xs__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
|
5978
5976
|
--pf-v6-c-empty-state--m-xl__title-text--FontSize: var(--pf-t--global--font--size--heading--2xl);
|
@@ -6326,7 +6324,7 @@ ul) {
|
|
6326
6324
|
--pf-v6-c-form__section--MarginBlockStart: var(--pf-t--global--spacer--xl);
|
6327
6325
|
--pf-v6-c-form__section--Gap: var(--pf-t--global--spacer--md);
|
6328
6326
|
--pf-v6-c-form__section-title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
6329
|
-
--pf-v6-c-form__section-title--FontWeight: var(--pf-t--global--font--weight--heading);
|
6327
|
+
--pf-v6-c-form__section-title--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
6330
6328
|
--pf-v6-c-form__section-title--MarginBlockEnd: calc(var(--pf-t--global--spacer--sm) * -1);
|
6331
6329
|
--pf-v6-c-form__field-group--border-width-base: var(--pf-t--global--border--width--divider--default);
|
6332
6330
|
--pf-v6-c-form__field-group--BorderBlockStartWidth: var(--pf-v6-c-form__field-group--border-width-base);
|
@@ -7151,7 +7149,7 @@ select ~ .pf-v6-c-form-control__utilities {
|
|
7151
7149
|
--pf-v6-c-helper-text--FontSize: var(--pf-t--global--font--size--body--sm);
|
7152
7150
|
--pf-v6-c-helper-text__item-icon--Color: var(--pf-t--global--icon--color--regular);
|
7153
7151
|
--pf-v6-c-helper-text__item-text--Color: var(--pf-t--global--text--color--regular);
|
7154
|
-
--pf-v6-c-helper-text__item-text--FontWeight: var(--pf-t--global--font--weight--body);
|
7152
|
+
--pf-v6-c-helper-text__item-text--FontWeight: var(--pf-t--global--font--weight--body--default);
|
7155
7153
|
--pf-v6-c-helper-text__item-icon--m-indeterminate--Color: var(--pf-t--global--icon--color--subtle);
|
7156
7154
|
--pf-v6-c-helper-text__item-text--m-indeterminate--Color: var(--pf-t--global--text--color--subtle);
|
7157
7155
|
--pf-v6-c-helper-text__item-icon--m-warning--Color: var(--pf-t--global--icon--color--status--warning--default);
|
@@ -9307,7 +9305,7 @@ ul.pf-v6-c-list {
|
|
9307
9305
|
--pf-v6-c-menu__item--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
9308
9306
|
--pf-v6-c-menu__item--FontSize: var(--pf-t--global--font--size--body--default);
|
9309
9307
|
--pf-v6-c-menu__item--LineHeight: var(--pf-t--global--font--line-height--body);
|
9310
|
-
--pf-v6-c-menu__item--FontWeight: var(--pf-t--global--font--weight--body);
|
9308
|
+
--pf-v6-c-menu__item--FontWeight: var(--pf-t--global--font--weight--body--default);
|
9311
9309
|
--pf-v6-c-menu__item--Color: var(--pf-t--global--text--color--regular);
|
9312
9310
|
--pf-v6-c-menu__item--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
9313
9311
|
--pf-v6-c-menu__item--m-disabled--Color: var(--pf-t--global--text--color--disabled);
|
@@ -10266,7 +10264,7 @@ ul.pf-v6-c-list {
|
|
10266
10264
|
--pf-v6-c-modal-box__header-main--Gap: var(--pf-t--global--spacer--md);
|
10267
10265
|
--pf-v6-c-modal-box__title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
10268
10266
|
--pf-v6-c-modal-box__title--FontFamily: var(--pf-t--global--font--family--heading);
|
10269
|
-
--pf-v6-c-modal-box__title--FontWeight: var(--pf-t--global--font--weight--heading);
|
10267
|
+
--pf-v6-c-modal-box__title--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
10270
10268
|
--pf-v6-c-modal-box__title--FontSize: var(--pf-t--global--font--size--heading--md);
|
10271
10269
|
--pf-v6-c-modal-box__title-icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
10272
10270
|
--pf-v6-c-modal-box__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
@@ -10464,7 +10462,7 @@ ul.pf-v6-c-list {
|
|
10464
10462
|
--pf-v6-c-multiple-file-upload__title-text--Color: var(--pf-t--global--text--color--regular);
|
10465
10463
|
--pf-v6-c-multiple-file-upload__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
10466
10464
|
--pf-v6-c-multiple-file-upload__title-text--FontSize: var(--pf-t--global--font--size--heading--sm);
|
10467
|
-
--pf-v6-c-multiple-file-upload__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
10465
|
+
--pf-v6-c-multiple-file-upload__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
10468
10466
|
--pf-v6-c-multiple-file-upload__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
10469
10467
|
--pf-v6-c-multiple-file-upload__title-icon--FontSize: var(--pf-t--global--icon--size--xl);
|
10470
10468
|
--pf-v6-c-multiple-file-upload__title-text-separator--Display: block;
|
@@ -10473,7 +10471,7 @@ ul.pf-v6-c-list {
|
|
10473
10471
|
--pf-v6-c-multiple-file-upload__title-text-separator--Color: var(--pf-t--global--text--color--regular);
|
10474
10472
|
--pf-v6-c-multiple-file-upload__title-text-separator--FontFamily: var(--pf-t--global--font--family--body);
|
10475
10473
|
--pf-v6-c-multiple-file-upload__title-text-separator--FontSize: var(--pf-t--global--font--size--body--lg);
|
10476
|
-
--pf-v6-c-multiple-file-upload__title-text-separator--FontWeight: var(--pf-t--global--font--weight--body);
|
10474
|
+
--pf-v6-c-multiple-file-upload__title-text-separator--FontWeight: var(--pf-t--global--font--weight--body--default);
|
10477
10475
|
--pf-v6-c-multiple-file-upload__info--FontSize: var(--pf-t--global--font--size--body--default);
|
10478
10476
|
--pf-v6-c-multiple-file-upload__info--Color: var(--pf-t--global--text--color--subtle);
|
10479
10477
|
--pf-v6-c-multiple-file-upload__info--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
@@ -10495,7 +10493,7 @@ ul.pf-v6-c-list {
|
|
10495
10493
|
--pf-v6-c-multiple-file-upload--m-horizontal__title-text-separator--MarginBlockStart: 0;
|
10496
10494
|
--pf-v6-c-multiple-file-upload--m-horizontal__title-text-separator--FontFamily: var(--pf-t--global--font--family--heading);
|
10497
10495
|
--pf-v6-c-multiple-file-upload--m-horizontal__title-text-separator--FontSize: var(--pf-t--global--font--size--heading--xs);
|
10498
|
-
--pf-v6-c-multiple-file-upload--m-horizontal__title-text-separator--FontWeight: var(--pf-t--global--font--weight--heading);
|
10496
|
+
--pf-v6-c-multiple-file-upload--m-horizontal__title-text-separator--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
10499
10497
|
--pf-v6-c-multiple-file-upload--m-horizontal__info--MarginBlockStart: 0;
|
10500
10498
|
--pf-v6-c-multiple-file-upload__status--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
10501
10499
|
--pf-v6-c-multiple-file-upload__status--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
@@ -10665,7 +10663,7 @@ ul.pf-v6-c-list {
|
|
10665
10663
|
--pf-v6-c-nav--ColumnGap: 0;
|
10666
10664
|
--pf-v6-c-nav--AlignItems: baseline;
|
10667
10665
|
--pf-v6-c-nav--FontSize: var(--pf-t--global--font--size--body--default);
|
10668
|
-
--pf-v6-c-nav--FontWeight: var(--pf-t--global--font--weight--body);
|
10666
|
+
--pf-v6-c-nav--FontWeight: var(--pf-t--global--font--weight--body--default);
|
10669
10667
|
--pf-v6-c-nav--LineHeight: var(--pf-t--global--font--line-height--body);
|
10670
10668
|
--pf-v6-c-nav--OutlineOffset: calc(var(--pf-t--global--spacer--xs) * -1);
|
10671
10669
|
--pf-v6-c-nav--BackgroundColor: transparent;
|
@@ -11041,7 +11039,7 @@ ul.pf-v6-c-list {
|
|
11041
11039
|
--pf-v6-c-notification-drawer__header--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
11042
11040
|
--pf-v6-c-notification-drawer__header--ZIndex: var(--pf-t--global--z-index--sm);
|
11043
11041
|
--pf-v6-c-notification-drawer__header-title--FontSize: var(--pf-t--global--font--size--heading--md);
|
11044
|
-
--pf-v6-c-notification-drawer__header-title--FontWeight: var(--pf-t--global--font--weight--heading--
|
11042
|
+
--pf-v6-c-notification-drawer__header-title--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
11045
11043
|
--pf-v6-c-notification-drawer__header-title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
11046
11044
|
--pf-v6-c-notification-drawer__header-title--FontFamily: var(--pf-t--global--font--family--heading);
|
11047
11045
|
--pf-v6-c-notification-drawer__header-status--MarginInlineStart: var(--pf-t--global--spacer--md);
|
@@ -11369,7 +11367,7 @@ ul.pf-v6-c-list {
|
|
11369
11367
|
--pf-v6-c-page__sidebar-title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
11370
11368
|
--pf-v6-c-page__sidebar-title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
11371
11369
|
--pf-v6-c-page__sidebar-title--FontFamily: var(--pf-t--global--font--family--heading);
|
11372
|
-
--pf-v6-c-page__sidebar-title--FontWeight: var(--pf-t--global--font--weight--heading);
|
11370
|
+
--pf-v6-c-page__sidebar-title--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
11373
11371
|
--pf-v6-c-page__sidebar-body--PaddingInlineEnd: 0;
|
11374
11372
|
--pf-v6-c-page__sidebar-body--PaddingInlineStart: 0;
|
11375
11373
|
--pf-v6-c-page__sidebar-body--m-page-insets--PaddingInlineEnd: var(--pf-v6-c-page--inset);
|
@@ -11761,6 +11759,7 @@ ul.pf-v6-c-list {
|
|
11761
11759
|
.pf-v6-c-page__main-container {
|
11762
11760
|
display: flex;
|
11763
11761
|
flex-direction: column;
|
11762
|
+
align-self: start;
|
11764
11763
|
max-height: var(--pf-v6-c-page__main-container--MaxHeight);
|
11765
11764
|
margin-block-start: 0;
|
11766
11765
|
margin-inline-start: var(--pf-v6-c-page__main-container--MarginInlineStart);
|
@@ -11770,6 +11769,9 @@ ul.pf-v6-c-list {
|
|
11770
11769
|
border: var(--pf-v6-c-page__main-container--BorderWidth) solid var(--pf-v6-c-page__main-container--BorderColor);
|
11771
11770
|
border-radius: var(--pf-v6-c-page__main-container--BorderRadius);
|
11772
11771
|
}
|
11772
|
+
.pf-v6-c-page__main-container.pf-m-fill, .pf-v6-c-page__main-container:has(.pf-v6-c-page__main-wizard) {
|
11773
|
+
align-self: stretch;
|
11774
|
+
}
|
11773
11775
|
|
11774
11776
|
.pf-v6-c-page__main-container,
|
11775
11777
|
.pf-v6-c-page__drawer {
|
@@ -11889,12 +11891,8 @@ ul.pf-v6-c-list {
|
|
11889
11891
|
--pf-v6-c-page__main-tabs--PaddingBlockStart: var(--pf-v6-c-page__main-breadcrumb--page__main-tabs--PaddingBlockStart);
|
11890
11892
|
}
|
11891
11893
|
|
11892
|
-
.pf-v6-c-page__main-section
|
11893
|
-
.pf-v6-c-page__main-group:last-child,
|
11894
|
-
.pf-v6-c-page__main-group:only-child,
|
11894
|
+
.pf-v6-c-page__main-section.pf-m-fill,
|
11895
11895
|
.pf-v6-c-page__main-group.pf-m-fill,
|
11896
|
-
.pf-v6-c-page__main-wizard:last-child,
|
11897
|
-
.pf-v6-c-page__main-wizard:only-child,
|
11898
11896
|
.pf-v6-c-page__main-wizard.pf-m-fill {
|
11899
11897
|
flex-grow: 1;
|
11900
11898
|
}
|
@@ -12959,7 +12957,7 @@ ul.pf-v6-c-list {
|
|
12959
12957
|
--pf-v6-c-progress-stepper__step-title--Color: var(--pf-t--global--text--color--regular);
|
12960
12958
|
--pf-v6-c-progress-stepper__step-title--TextAlign: start;
|
12961
12959
|
--pf-v6-c-progress-stepper__step-title--FontSize: var(--pf-t--global--font--size--body--lg);
|
12962
|
-
--pf-v6-c-progress-stepper__step-title--FontWeight: var(--pf-t--global--font--weight--body);
|
12960
|
+
--pf-v6-c-progress-stepper__step-title--FontWeight: var(--pf-t--global--font--weight--body--default);
|
12963
12961
|
--pf-v6-c-progress-stepper__step--m-current__step-title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
12964
12962
|
--pf-v6-c-progress-stepper__step--m-current__step-title--Color: var(--pf-t--global--text--color--regular);
|
12965
12963
|
--pf-v6-c-progress-stepper__step--m-pending__step-title--Color: var(--pf-t--global--text--color--subtle);
|
@@ -13493,7 +13491,7 @@ ul.pf-v6-c-list {
|
|
13493
13491
|
--pf-v6-c-radio--Height: calc(var(--pf-v6-c-radio__label--FontSize) * var(--pf-v6-c-radio__label--LineHeight));
|
13494
13492
|
--pf-v6-c-radio__label--disabled--Color: var(--pf-t--global--text--color--disabled);
|
13495
13493
|
--pf-v6-c-radio__label--Color: var(--pf-t--global--text--color--regular);
|
13496
|
-
--pf-v6-c-radio__label--FontWeight: var(--pf-t--global--font--weight--body);
|
13494
|
+
--pf-v6-c-radio__label--FontWeight: var(--pf-t--global--font--weight--body--default);
|
13497
13495
|
--pf-v6-c-radio__label--FontSize: var(--pf-t--global--font--size--body--default);
|
13498
13496
|
--pf-v6-c-radio__label--LineHeight: var(--pf-t--global--font--line-height--body);
|
13499
13497
|
--pf-v6-c-radio__description--FontSize: var(--pf-t--global--font--size--body--sm);
|
@@ -16247,7 +16245,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
16247
16245
|
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--cell--Padding--base);
|
16248
16246
|
--pf-v6-c-table--cell--PaddingInlineStart: var(--pf-v6-c-table--cell--Padding--base);
|
16249
16247
|
--pf-v6-c-table--cell--FontSize: var(--pf-t--global--font--size--body--default);
|
16250
|
-
--pf-v6-c-table--cell--FontWeight: var(--pf-t--global--font--weight--body);
|
16248
|
+
--pf-v6-c-table--cell--FontWeight: var(--pf-t--global--font--weight--body--default);
|
16251
16249
|
--pf-v6-c-table--cell--LineHeight: var(--pf-t--global--font--line-height--body);
|
16252
16250
|
--pf-v6-c-table--cell--Color: var(--pf-t--global--text--color--regular);
|
16253
16251
|
--pf-v6-c-table--cell--first-last-child--PaddingInline: var(--pf-t--global--spacer--sm);
|
@@ -19132,40 +19130,40 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
19132
19130
|
--pf-v6-c-title--FontFamily: var(--pf-t--global--font--family--heading);
|
19133
19131
|
--pf-v6-c-title--m-4xl--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19134
19132
|
--pf-v6-c-title--m-4xl--FontSize: var(--pf-t--global--font--size--heading--2xl);
|
19135
|
-
--pf-v6-c-title--m-4xl--FontWeight: var(--pf-t--global--font--weight--heading);
|
19133
|
+
--pf-v6-c-title--m-4xl--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19136
19134
|
--pf-v6-c-title--m-3xl--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19137
19135
|
--pf-v6-c-title--m-3xl--FontSize: var(--pf-t--global--font--size--heading--xl);
|
19138
|
-
--pf-v6-c-title--m-3xl--FontWeight: var(--pf-t--global--font--weight--heading);
|
19136
|
+
--pf-v6-c-title--m-3xl--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19139
19137
|
--pf-v6-c-title--m-2xl--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19140
19138
|
--pf-v6-c-title--m-2xl--FontSize: var(--pf-t--global--font--size--heading--lg);
|
19141
|
-
--pf-v6-c-title--m-2xl--FontWeight: var(--pf-t--global--font--weight--heading);
|
19139
|
+
--pf-v6-c-title--m-2xl--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19142
19140
|
--pf-v6-c-title--m-xl--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19143
19141
|
--pf-v6-c-title--m-xl--FontSize: var(--pf-t--global--font--size--heading--md);
|
19144
|
-
--pf-v6-c-title--m-xl--FontWeight: var(--pf-t--global--font--weight--heading);
|
19142
|
+
--pf-v6-c-title--m-xl--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19145
19143
|
--pf-v6-c-title--m-lg--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19146
19144
|
--pf-v6-c-title--m-lg--FontSize: var(--pf-t--global--font--size--heading--sm);
|
19147
|
-
--pf-v6-c-title--m-lg--FontWeight: var(--pf-t--global--font--weight--heading);
|
19145
|
+
--pf-v6-c-title--m-lg--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19148
19146
|
--pf-v6-c-title--m-md--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19149
19147
|
--pf-v6-c-title--m-md--FontSize: var(--pf-t--global--font--size--heading--xs);
|
19150
|
-
--pf-v6-c-title--m-md--FontWeight: var(--pf-t--global--font--weight--heading);
|
19148
|
+
--pf-v6-c-title--m-md--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19151
19149
|
--pf-v6-c-title--m-h1--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19152
19150
|
--pf-v6-c-title--m-h1--FontSize: var(--pf-t--global--font--size--heading--h1);
|
19153
|
-
--pf-v6-c-title--m-h1--FontWeight: var(--pf-t--global--font--weight--heading);
|
19151
|
+
--pf-v6-c-title--m-h1--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19154
19152
|
--pf-v6-c-title--m-h2--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19155
19153
|
--pf-v6-c-title--m-h2--FontSize: var(--pf-t--global--font--size--heading--h2);
|
19156
|
-
--pf-v6-c-title--m-h2--FontWeight: var(--pf-t--global--font--weight--heading);
|
19154
|
+
--pf-v6-c-title--m-h2--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19157
19155
|
--pf-v6-c-title--m-h3--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19158
19156
|
--pf-v6-c-title--m-h3--FontSize: var(--pf-t--global--font--size--heading--h3);
|
19159
|
-
--pf-v6-c-title--m-h3--FontWeight: var(--pf-t--global--font--weight--heading);
|
19157
|
+
--pf-v6-c-title--m-h3--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19160
19158
|
--pf-v6-c-title--m-h4--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19161
19159
|
--pf-v6-c-title--m-h4--FontSize: var(--pf-t--global--font--size--heading--h4);
|
19162
|
-
--pf-v6-c-title--m-h4--FontWeight: var(--pf-t--global--font--weight--heading);
|
19160
|
+
--pf-v6-c-title--m-h4--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19163
19161
|
--pf-v6-c-title--m-h5--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19164
19162
|
--pf-v6-c-title--m-h5--FontSize: var(--pf-t--global--font--size--heading--h5);
|
19165
|
-
--pf-v6-c-title--m-h5--FontWeight: var(--pf-t--global--font--weight--heading);
|
19163
|
+
--pf-v6-c-title--m-h5--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19166
19164
|
--pf-v6-c-title--m-h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19167
19165
|
--pf-v6-c-title--m-h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
19168
|
-
--pf-v6-c-title--m-h6--FontWeight: var(--pf-t--global--font--weight--heading);
|
19166
|
+
--pf-v6-c-title--m-h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19169
19167
|
}
|
19170
19168
|
|
19171
19169
|
.pf-v6-c-title {
|
@@ -21932,7 +21930,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
21932
21930
|
--pf-v6-c-wizard__title--PaddingInlineEnd: var(--pf-t--global--spacer--2xl);
|
21933
21931
|
--pf-v6-c-wizard__title-text--FontSize: var(--pf-t--global--font--size--3xl);
|
21934
21932
|
--pf-v6-c-wizard__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
21935
|
-
--pf-v6-c-wizard__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
21933
|
+
--pf-v6-c-wizard__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
21936
21934
|
--pf-v6-c-wizard__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
21937
21935
|
--pf-v6-c-wizard__title-text--Color: var(--pf-t--global--text--color--regular);
|
21938
21936
|
--pf-v6-c-wizard__description--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* Because the page component has height:100dvh, override it just for the embedded examples */
|
2
|
-
.ws-mdx-content-content [id^=ws-core-c-page-] .
|
2
|
+
.ws-mdx-content-content [id^=ws-core-c-page-] .pf-v6-c-page {
|
3
3
|
height: min-content;
|
4
4
|
min-height: 30em;
|
5
5
|
}
|
@@ -5,7 +5,7 @@
|
|
5
5
|
--pf-v6-l-flex--m-row--AlignItems: baseline;
|
6
6
|
--pf-v6-l-flex--m-row-reverse--AlignItems: baseline;
|
7
7
|
--pf-v6-l-flex--item--Order: 0;
|
8
|
-
--pf-v6-l-flex--spacer--column--base: var(--pf-t--global--spacer--
|
8
|
+
--pf-v6-l-flex--spacer--column--base: var(--pf-t--global--spacer--gutter--default);
|
9
9
|
--pf-v6-l-flex--spacer--row--base: var(--pf-t--global--spacer--sm);
|
10
10
|
--pf-v6-l-flex--RowGap: var(--pf-v6-l-flex--spacer--row--base);
|
11
11
|
--pf-v6-l-flex--ColumnGap: 0;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
:where(:root, .pf-v6-l-gallery) {
|
2
|
-
--pf-v6-l-gallery--m-gutter--GridGap: var(--pf-t--global--spacer--
|
2
|
+
--pf-v6-l-gallery--m-gutter--GridGap: var(--pf-t--global--spacer--gutter--default);
|
3
3
|
--pf-v6-l-gallery--GridTemplateColumns--min: 250px;
|
4
4
|
--pf-v6-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v6-l-gallery--GridTemplateColumns--min);
|
5
5
|
--pf-v6-l-gallery--GridTemplateColumns--max: 1fr;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
:where(:root, .pf-v6-l-grid) {
|
2
|
-
--pf-v6-l-grid--m-gutter--GridGap: var(--pf-t--global--spacer--
|
2
|
+
--pf-v6-l-grid--m-gutter--GridGap: var(--pf-t--global--spacer--gutter--default);
|
3
3
|
--pf-v6-l-grid__item--GridColumnStart: auto;
|
4
4
|
--pf-v6-l-grid__item--GridColumnEnd: span 12;
|
5
5
|
--pf-v6-l-grid--item--Order: 0;
|
package/css/layouts/_index.css
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
--pf-v6-l-flex--m-row--AlignItems: baseline;
|
19
19
|
--pf-v6-l-flex--m-row-reverse--AlignItems: baseline;
|
20
20
|
--pf-v6-l-flex--item--Order: 0;
|
21
|
-
--pf-v6-l-flex--spacer--column--base: var(--pf-t--global--spacer--
|
21
|
+
--pf-v6-l-flex--spacer--column--base: var(--pf-t--global--spacer--gutter--default);
|
22
22
|
--pf-v6-l-flex--spacer--row--base: var(--pf-t--global--spacer--sm);
|
23
23
|
--pf-v6-l-flex--RowGap: var(--pf-v6-l-flex--spacer--row--base);
|
24
24
|
--pf-v6-l-flex--ColumnGap: 0;
|
@@ -2393,7 +2393,7 @@
|
|
2393
2393
|
}
|
2394
2394
|
|
2395
2395
|
:where(:root, .pf-v6-l-gallery) {
|
2396
|
-
--pf-v6-l-gallery--m-gutter--GridGap: var(--pf-t--global--spacer--
|
2396
|
+
--pf-v6-l-gallery--m-gutter--GridGap: var(--pf-t--global--spacer--gutter--default);
|
2397
2397
|
--pf-v6-l-gallery--GridTemplateColumns--min: 250px;
|
2398
2398
|
--pf-v6-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v6-l-gallery--GridTemplateColumns--min);
|
2399
2399
|
--pf-v6-l-gallery--GridTemplateColumns--max: 1fr;
|
@@ -2464,7 +2464,7 @@
|
|
2464
2464
|
}
|
2465
2465
|
|
2466
2466
|
:where(:root, .pf-v6-l-grid) {
|
2467
|
-
--pf-v6-l-grid--m-gutter--GridGap: var(--pf-t--global--spacer--
|
2467
|
+
--pf-v6-l-grid--m-gutter--GridGap: var(--pf-t--global--spacer--gutter--default);
|
2468
2468
|
--pf-v6-l-grid__item--GridColumnStart: auto;
|
2469
2469
|
--pf-v6-l-grid__item--GridColumnEnd: span 12;
|
2470
2470
|
--pf-v6-l-grid--item--Order: 0;
|
@@ -3401,7 +3401,7 @@
|
|
3401
3401
|
}
|
3402
3402
|
|
3403
3403
|
:where(:root, .pf-v6-l-level) {
|
3404
|
-
--pf-v6-l-level--m-gutter--Gap: var(--pf-t--global--spacer--
|
3404
|
+
--pf-v6-l-level--m-gutter--Gap: var(--pf-t--global--spacer--gutter--default);
|
3405
3405
|
}
|
3406
3406
|
|
3407
3407
|
.pf-v6-l-level {
|
@@ -3415,7 +3415,7 @@
|
|
3415
3415
|
}
|
3416
3416
|
|
3417
3417
|
:where(:root, .pf-v6-l-split) {
|
3418
|
-
--pf-v6-l-stack--m-gutter--Gap: var(--pf-t--global--spacer--
|
3418
|
+
--pf-v6-l-stack--m-gutter--Gap: var(--pf-t--global--spacer--gutter--default);
|
3419
3419
|
}
|
3420
3420
|
|
3421
3421
|
.pf-v6-l-split {
|
@@ -3436,7 +3436,7 @@
|
|
3436
3436
|
}
|
3437
3437
|
|
3438
3438
|
:where(:root, .pf-v6-l-stack) {
|
3439
|
-
--pf-v6-l-stack--m-gutter--Gap: var(--pf-t--global--spacer--
|
3439
|
+
--pf-v6-l-stack--m-gutter--Gap: var(--pf-t--global--spacer--gutter--default);
|
3440
3440
|
}
|
3441
3441
|
|
3442
3442
|
.pf-v6-l-stack {
|
@@ -173,7 +173,7 @@
|
|
173
173
|
}
|
174
174
|
}
|
175
175
|
.pf-v6-u-font-weight-normal {
|
176
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
176
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
177
177
|
}
|
178
178
|
|
179
179
|
.pf-v6-u-font-weight-bold {
|
@@ -182,7 +182,7 @@
|
|
182
182
|
|
183
183
|
@media screen and (min-width: 576px) {
|
184
184
|
.pf-v6-u-font-weight-normal-on-sm {
|
185
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
185
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
186
186
|
}
|
187
187
|
.pf-v6-u-font-weight-bold-on-sm {
|
188
188
|
font-weight: var(--pf-t--global--font--weight--body--bold) !important;
|
@@ -190,7 +190,7 @@
|
|
190
190
|
}
|
191
191
|
@media screen and (min-width: 768px) {
|
192
192
|
.pf-v6-u-font-weight-normal-on-md {
|
193
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
193
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
194
194
|
}
|
195
195
|
.pf-v6-u-font-weight-bold-on-md {
|
196
196
|
font-weight: var(--pf-t--global--font--weight--body--bold) !important;
|
@@ -198,7 +198,7 @@
|
|
198
198
|
}
|
199
199
|
@media screen and (min-width: 992px) {
|
200
200
|
.pf-v6-u-font-weight-normal-on-lg {
|
201
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
201
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
202
202
|
}
|
203
203
|
.pf-v6-u-font-weight-bold-on-lg {
|
204
204
|
font-weight: var(--pf-t--global--font--weight--body--bold) !important;
|
@@ -206,7 +206,7 @@
|
|
206
206
|
}
|
207
207
|
@media screen and (min-width: 1200px) {
|
208
208
|
.pf-v6-u-font-weight-normal-on-xl {
|
209
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
209
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
210
210
|
}
|
211
211
|
.pf-v6-u-font-weight-bold-on-xl {
|
212
212
|
font-weight: var(--pf-t--global--font--weight--body--bold) !important;
|
@@ -214,7 +214,7 @@
|
|
214
214
|
}
|
215
215
|
@media screen and (min-width: 1450px) {
|
216
216
|
.pf-v6-u-font-weight-normal-on-2xl {
|
217
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
217
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
218
218
|
}
|
219
219
|
.pf-v6-u-font-weight-bold-on-2xl {
|
220
220
|
font-weight: var(--pf-t--global--font--weight--body--bold) !important;
|
package/css/utilities/_index.css
CHANGED
@@ -7150,7 +7150,7 @@
|
|
7150
7150
|
}
|
7151
7151
|
}
|
7152
7152
|
.pf-v6-u-font-weight-normal {
|
7153
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
7153
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
7154
7154
|
}
|
7155
7155
|
|
7156
7156
|
.pf-v6-u-font-weight-bold {
|
@@ -7159,7 +7159,7 @@
|
|
7159
7159
|
|
7160
7160
|
@media screen and (min-width: 576px) {
|
7161
7161
|
.pf-v6-u-font-weight-normal-on-sm {
|
7162
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
7162
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
7163
7163
|
}
|
7164
7164
|
.pf-v6-u-font-weight-bold-on-sm {
|
7165
7165
|
font-weight: var(--pf-t--global--font--weight--body--bold) !important;
|
@@ -7167,7 +7167,7 @@
|
|
7167
7167
|
}
|
7168
7168
|
@media screen and (min-width: 768px) {
|
7169
7169
|
.pf-v6-u-font-weight-normal-on-md {
|
7170
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
7170
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
7171
7171
|
}
|
7172
7172
|
.pf-v6-u-font-weight-bold-on-md {
|
7173
7173
|
font-weight: var(--pf-t--global--font--weight--body--bold) !important;
|
@@ -7175,7 +7175,7 @@
|
|
7175
7175
|
}
|
7176
7176
|
@media screen and (min-width: 992px) {
|
7177
7177
|
.pf-v6-u-font-weight-normal-on-lg {
|
7178
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
7178
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
7179
7179
|
}
|
7180
7180
|
.pf-v6-u-font-weight-bold-on-lg {
|
7181
7181
|
font-weight: var(--pf-t--global--font--weight--body--bold) !important;
|
@@ -7183,7 +7183,7 @@
|
|
7183
7183
|
}
|
7184
7184
|
@media screen and (min-width: 1200px) {
|
7185
7185
|
.pf-v6-u-font-weight-normal-on-xl {
|
7186
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
7186
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
7187
7187
|
}
|
7188
7188
|
.pf-v6-u-font-weight-bold-on-xl {
|
7189
7189
|
font-weight: var(--pf-t--global--font--weight--body--bold) !important;
|
@@ -7191,7 +7191,7 @@
|
|
7191
7191
|
}
|
7192
7192
|
@media screen and (min-width: 1450px) {
|
7193
7193
|
.pf-v6-u-font-weight-normal-on-2xl {
|
7194
|
-
font-weight: var(--pf-t--global--font--weight--body) !important;
|
7194
|
+
font-weight: var(--pf-t--global--font--weight--body--default) !important;
|
7195
7195
|
}
|
7196
7196
|
.pf-v6-u-font-weight-bold-on-2xl {
|
7197
7197
|
font-weight: var(--pf-t--global--font--weight--body--bold) !important;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "6.0.0-alpha.
|
3
|
+
"version": "6.0.0-alpha.30",
|
4
4
|
"main": "dist/js/index.js",
|
5
5
|
"module": "dist/esm/index.js",
|
6
6
|
"types": "dist/esm/index.d.ts",
|
@@ -19,10 +19,10 @@
|
|
19
19
|
"clean": "rimraf dist css"
|
20
20
|
},
|
21
21
|
"devDependencies": {
|
22
|
-
"@patternfly/patternfly": "6.0.0-alpha.
|
22
|
+
"@patternfly/patternfly": "6.0.0-alpha.190",
|
23
23
|
"change-case": "^5.4.4",
|
24
24
|
"fs-extra": "^11.2.0"
|
25
25
|
},
|
26
26
|
"license": "MIT",
|
27
|
-
"gitHead": "
|
27
|
+
"gitHead": "8e897861592c3ee8b186f6aef3958741073312e7"
|
28
28
|
}
|