@patternfly/patternfly 6.1.0 → 6.2.0-prerelease.10
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 +22 -2
- package/components/Button/button.scss +22 -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 +6 -0
- package/components/MenuToggle/menu-toggle.scss +6 -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 +119 -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 +120 -42
- package/patternfly.css +122 -44
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/base/normalize.scss
CHANGED
|
@@ -107,12 +107,12 @@
|
|
|
107
107
|
|
|
108
108
|
:where(a) {
|
|
109
109
|
color: var(--pf-t--global--text--color--link--default);
|
|
110
|
-
text-decoration: var(--pf-t--global--text-decoration--link--line--default);
|
|
110
|
+
text-decoration-line: var(--pf-t--global--text-decoration--link--line--default);
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
:where(a:hover, a:focus) {
|
|
114
114
|
color: var(--pf-t--global--text--color--link--hover);
|
|
115
|
-
text-decoration: var(--pf-t--global--text-decoration--link--line--hover);
|
|
115
|
+
text-decoration-line: var(--pf-t--global--text-decoration--link--line--hover);
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
:where(
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
}
|
|
120
120
|
.pf-v6-c-banner a {
|
|
121
121
|
color: var(--pf-v6-c-banner--link--Color);
|
|
122
|
-
text-decoration: var(--pf-v6-c-banner--link--TextDecoration);
|
|
122
|
+
text-decoration-line: var(--pf-v6-c-banner--link--TextDecoration);
|
|
123
123
|
}
|
|
124
124
|
.pf-v6-c-banner a:hover:not(.pf-m-disabled) {
|
|
125
125
|
--pf-v6-c-banner--link--Color: var(--pf-v6-c-banner--link--hover--Color);
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
--pf-v6-c-button--m-link--Color: var(--pf-v6-c-banner--link--Color);
|
|
133
133
|
--pf-v6-c-button--m-link--hover--Color: var(--pf-v6-c-banner--link--hover--Color);
|
|
134
134
|
--pf-v6-c-button--disabled--Color: var(--pf-v6-c-banner--link--disabled--Color);
|
|
135
|
-
text-decoration: var(--pf-v6-c-banner--link--TextDecoration);
|
|
135
|
+
text-decoration-line: var(--pf-v6-c-banner--link--TextDecoration);
|
|
136
136
|
}
|
|
137
137
|
.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 {
|
|
138
138
|
cursor: not-allowed;
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
a {
|
|
144
144
|
color: var(--#{$banner}--link--Color);
|
|
145
|
-
text-decoration: var(--#{$banner}--link--TextDecoration);
|
|
145
|
+
text-decoration-line: var(--#{$banner}--link--TextDecoration);
|
|
146
146
|
|
|
147
147
|
&:hover:not(.pf-m-disabled) {
|
|
148
148
|
--#{$banner}--link--Color: var(--#{$banner}--link--hover--Color);
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
--#{$button}--m-link--hover--Color: var(--#{$banner}--link--hover--Color);
|
|
163
163
|
--#{$button}--disabled--Color: var(--#{$banner}--link--disabled--Color);
|
|
164
164
|
|
|
165
|
-
text-decoration: var(--#{$banner}--link--TextDecoration);
|
|
165
|
+
text-decoration-line: var(--#{$banner}--link--TextDecoration);
|
|
166
166
|
|
|
167
167
|
&:disabled,
|
|
168
168
|
&.pf-m-disabled {
|
|
@@ -65,7 +65,8 @@
|
|
|
65
65
|
font-weight: var(--pf-v6-c-breadcrumb__link--FontWeight);
|
|
66
66
|
line-height: inherit;
|
|
67
67
|
color: var(--pf-v6-c-breadcrumb__link--Color);
|
|
68
|
-
text-decoration: var(--pf-v6-c-breadcrumb__link--TextDecorationLine)
|
|
68
|
+
text-decoration-line: var(--pf-v6-c-breadcrumb__link--TextDecorationLine);
|
|
69
|
+
text-decoration-style: var(--pf-v6-c-breadcrumb__link--TextDecorationStyle);
|
|
69
70
|
word-break: break-word;
|
|
70
71
|
background-color: var(--pf-v6-c-breadcrumb__link--BackgroundColor);
|
|
71
72
|
}
|
|
@@ -79,7 +80,7 @@
|
|
|
79
80
|
}
|
|
80
81
|
.pf-v6-c-breadcrumb__link.pf-m-current, .pf-v6-c-breadcrumb__link.pf-m-current:is(:hover, :focus) {
|
|
81
82
|
color: var(--pf-v6-c-breadcrumb__link--m-current--Color);
|
|
82
|
-
text-decoration: none;
|
|
83
|
+
text-decoration-line: none;
|
|
83
84
|
}
|
|
84
85
|
button.pf-v6-c-breadcrumb__link {
|
|
85
86
|
border: none;
|
|
@@ -81,7 +81,8 @@
|
|
|
81
81
|
font-weight: var(--#{$breadcrumb}__link--FontWeight);
|
|
82
82
|
line-height: inherit;
|
|
83
83
|
color: var(--#{$breadcrumb}__link--Color);
|
|
84
|
-
text-decoration: var(--#{$breadcrumb}__link--TextDecorationLine)
|
|
84
|
+
text-decoration-line: var(--#{$breadcrumb}__link--TextDecorationLine);
|
|
85
|
+
text-decoration-style: var(--#{$breadcrumb}__link--TextDecorationStyle);
|
|
85
86
|
word-break: break-word;
|
|
86
87
|
background-color: var(--#{$breadcrumb}__link--BackgroundColor);
|
|
87
88
|
|
|
@@ -99,7 +100,7 @@
|
|
|
99
100
|
&,
|
|
100
101
|
&:is(:hover, :focus) {
|
|
101
102
|
color: var(--#{$breadcrumb}__link--m-current--Color);
|
|
102
|
-
text-decoration: none;
|
|
103
|
+
text-decoration-line: none;
|
|
103
104
|
}
|
|
104
105
|
}
|
|
105
106
|
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
--pf-v6-c-button--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
19
19
|
--pf-v6-c-button--TextDecorationLine: none;
|
|
20
20
|
--pf-v6-c-button--TextDecorationStyle: none;
|
|
21
|
+
--pf-v6-c-button--TextDecorationColor: currentcolor;
|
|
21
22
|
--pf-v6-c-button--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
22
23
|
--pf-v6-c-button--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
23
24
|
--pf-v6-c-button--TransitionProperty: color, background-color, border-width, border-color, padding;
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
--pf-v6-c-button--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
|
|
27
28
|
--pf-v6-c-button--hover--TextDecorationLine: none;
|
|
28
29
|
--pf-v6-c-button--hover--TextDecorationStyle: none;
|
|
30
|
+
--pf-v6-c-button--hover--TextDecorationColor: currentcolor;
|
|
29
31
|
--pf-v6-c-button--m-clicked--BackgroundColor: transparent;
|
|
30
32
|
--pf-v6-c-button--m-clicked--BorderColor: transparent;
|
|
31
33
|
--pf-v6-c-button--m-clicked--BorderWidth: var(--pf-t--global--border--width--action--clicked);
|
|
@@ -110,6 +112,12 @@
|
|
|
110
112
|
--pf-v6-c-button--span--m-link--m-inline--Display: inline;
|
|
111
113
|
--pf-v6-c-button--span--m-link--m-inline__icon--m-start--MarginInlineEnd: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
112
114
|
--pf-v6-c-button--span--m-link--m-inline__icon--m-end--MarginInlineStart: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
115
|
+
--pf-v6-c-button--m-link--m-inline--Color: var(--pf-t--global--text--color--brand--default);
|
|
116
|
+
--pf-v6-c-button--m-link--m-inline__icon--Color: var(--pf-t--global--icon--color--brand--default);
|
|
117
|
+
--pf-v6-c-button--m-link--m-inline--TextDecorationColor: currentcolor;
|
|
118
|
+
--pf-v6-c-button--m-link--m-inline--hover--Color: var(--pf-t--global--text--color--brand--hover);
|
|
119
|
+
--pf-v6-c-button--m-link--m-inline--hover__icon--Color: var(--pf-t--global--icon--color--brand--hover);
|
|
120
|
+
--pf-v6-c-button--m-link--m-inline--hover--TextDecorationColor: currentcolor;
|
|
113
121
|
--pf-v6-c-button--m-plain--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
114
122
|
--pf-v6-c-button--m-plain--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--plain--default);
|
|
115
123
|
--pf-v6-c-button--m-plain--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--plain--default);
|
|
@@ -217,6 +225,7 @@
|
|
|
217
225
|
--pf-v6-c-button--m-small--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--compact);
|
|
218
226
|
--pf-v6-c-button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
|
219
227
|
--pf-v6-c-button--disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
|
|
228
|
+
--pf-v6-c-button--disabled--TextDecorationColor: currentcolor;
|
|
220
229
|
--pf-v6-c-button--disabled--BorderColor: transparent;
|
|
221
230
|
--pf-v6-c-button--disabled__icon--Color: var(--pf-t--global--icon--color--on-disabled);
|
|
222
231
|
--pf-v6-c-button__icon--Color: var(--pf-t--global--icon--color--regular);
|
|
@@ -261,7 +270,9 @@
|
|
|
261
270
|
line-height: var(--pf-v6-c-button--LineHeight, inherit);
|
|
262
271
|
color: var(--pf-v6-c-button--Color);
|
|
263
272
|
text-align: center;
|
|
264
|
-
text-decoration: var(--pf-v6-c-button--TextDecorationLine)
|
|
273
|
+
text-decoration-line: var(--pf-v6-c-button--TextDecorationLine);
|
|
274
|
+
text-decoration-style: var(--pf-v6-c-button--TextDecorationStyle);
|
|
275
|
+
text-decoration-color: var(--pf-v6-c-button--TextDecorationColor);
|
|
265
276
|
white-space: nowrap;
|
|
266
277
|
cursor: pointer;
|
|
267
278
|
user-select: none;
|
|
@@ -374,6 +385,12 @@
|
|
|
374
385
|
--pf-v6-c-button--disabled--BackgroundColor: transparent;
|
|
375
386
|
--pf-v6-c-button--disabled--Color: var(--pf-v6-c-button--m-link--m-inline--disabled--Color);
|
|
376
387
|
--pf-v6-c-button--disabled__icon--Color: var(--pf-v6-c-button--m-link--m-inline--disabled__icon--Color);
|
|
388
|
+
--pf-v6-c-button--m-link--Color: var(--pf-v6-c-button--m-link--m-inline--Color);
|
|
389
|
+
--pf-v6-c-button--m-link__icon--Color: var(--pf-v6-c-button--m-link--m-inline__icon--Color);
|
|
390
|
+
--pf-v6-c-button--TextDecorationColor: var(--pf-v6-c-button--m-link--m-inline--TextDecorationColor);
|
|
391
|
+
--pf-v6-c-button--hover--TextDecorationColor: var(--pf-v6-c-button--m-link--m-inline--hover--TextDecorationColor);
|
|
392
|
+
--pf-v6-c-button--m-link--hover--Color: var(--pf-v6-c-button--m-link--m-inline--hover--Color);
|
|
393
|
+
--pf-v6-c-button--m-link--hover__icon--Color: var(--pf-v6-c-button--m-link--m-inline--hover__icon--Color);
|
|
377
394
|
text-align: start;
|
|
378
395
|
white-space: normal;
|
|
379
396
|
outline-offset: 0.125rem;
|
|
@@ -534,7 +551,9 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
534
551
|
--pf-v6-c-button--BorderWidth: var(--pf-v6-c-button--hover--BorderWidth);
|
|
535
552
|
--pf-v6-c-button--m-plain--m-no-padding__icon--Color: var(--pf-v6-c-button--m-plain--m-no-padding--hover__icon--Color);
|
|
536
553
|
--pf-v6-c-button__icon--Color: var(--pf-v6-c-button--hover__icon--Color);
|
|
537
|
-
text-decoration: var(--pf-v6-c-button--hover--TextDecorationLine)
|
|
554
|
+
text-decoration-line: var(--pf-v6-c-button--hover--TextDecorationLine);
|
|
555
|
+
text-decoration-style: var(--pf-v6-c-button--hover--TextDecorationStyle);
|
|
556
|
+
text-decoration-color: var(--pf-v6-c-button--hover--TextDecorationColor);
|
|
538
557
|
}
|
|
539
558
|
.pf-v6-c-button.pf-m-clicked {
|
|
540
559
|
--pf-v6-c-button--Color: var(--pf-v6-c-button--m-clicked--Color);
|
|
@@ -548,6 +567,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
548
567
|
}
|
|
549
568
|
.pf-v6-c-button:disabled, .pf-v6-c-button.pf-m-disabled, .pf-v6-c-button.pf-m-aria-disabled {
|
|
550
569
|
color: var(--pf-v6-c-button--disabled--Color);
|
|
570
|
+
text-decoration-color: var(--pf-v6-c-button--disabled--TextDecorationColor);
|
|
551
571
|
background-color: var(--pf-v6-c-button--disabled--BackgroundColor);
|
|
552
572
|
}
|
|
553
573
|
.pf-v6-c-button:disabled::after, .pf-v6-c-button.pf-m-disabled::after, .pf-v6-c-button.pf-m-aria-disabled::after {
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
--#{$button}--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
21
21
|
--#{$button}--TextDecorationLine: none;
|
|
22
22
|
--#{$button}--TextDecorationStyle: none;
|
|
23
|
+
--#{$button}--TextDecorationColor: currentcolor;
|
|
23
24
|
--#{$button}--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
24
25
|
--#{$button}--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
25
26
|
--#{$button}--TransitionProperty: color, background-color, border-width, border-color, padding;
|
|
@@ -30,6 +31,7 @@
|
|
|
30
31
|
--#{$button}--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
|
|
31
32
|
--#{$button}--hover--TextDecorationLine: none;
|
|
32
33
|
--#{$button}--hover--TextDecorationStyle: none;
|
|
34
|
+
--#{$button}--hover--TextDecorationColor: currentcolor;
|
|
33
35
|
|
|
34
36
|
// Clicked
|
|
35
37
|
--#{$button}--m-clicked--BackgroundColor: transparent;
|
|
@@ -128,6 +130,12 @@
|
|
|
128
130
|
--#{$button}--span--m-link--m-inline--Display: inline;
|
|
129
131
|
--#{$button}--span--m-link--m-inline__icon--m-start--MarginInlineEnd: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
130
132
|
--#{$button}--span--m-link--m-inline__icon--m-end--MarginInlineStart: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
133
|
+
--#{$button}--m-link--m-inline--Color: var(--pf-t--global--text--color--brand--default);
|
|
134
|
+
--#{$button}--m-link--m-inline__icon--Color: var(--pf-t--global--icon--color--brand--default);
|
|
135
|
+
--#{$button}--m-link--m-inline--TextDecorationColor: currentcolor;
|
|
136
|
+
--#{$button}--m-link--m-inline--hover--Color: var(--pf-t--global--text--color--brand--hover);
|
|
137
|
+
--#{$button}--m-link--m-inline--hover__icon--Color: var(--pf-t--global--icon--color--brand--hover);
|
|
138
|
+
--#{$button}--m-link--m-inline--hover--TextDecorationColor: currentcolor;
|
|
131
139
|
|
|
132
140
|
// Plain
|
|
133
141
|
--#{$button}--m-plain--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
@@ -259,6 +267,7 @@
|
|
|
259
267
|
// Disabled
|
|
260
268
|
--#{$button}--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
|
261
269
|
--#{$button}--disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
|
|
270
|
+
--#{$button}--disabled--TextDecorationColor: currentcolor;
|
|
262
271
|
--#{$button}--disabled--BorderColor: transparent;
|
|
263
272
|
--#{$button}--disabled__icon--Color: var(--pf-t--global--icon--color--on-disabled);
|
|
264
273
|
|
|
@@ -311,7 +320,9 @@
|
|
|
311
320
|
line-height: var(--#{$button}--LineHeight, inherit);
|
|
312
321
|
color: var(--#{$button}--Color);
|
|
313
322
|
text-align: center;
|
|
314
|
-
text-decoration: var(--#{$button}--TextDecorationLine)
|
|
323
|
+
text-decoration-line: var(--#{$button}--TextDecorationLine);
|
|
324
|
+
text-decoration-style: var(--#{$button}--TextDecorationStyle);
|
|
325
|
+
text-decoration-color: var(--#{$button}--TextDecorationColor);
|
|
315
326
|
white-space: nowrap;
|
|
316
327
|
cursor: pointer; // needed for when a button does not use <button> - eg, <span>
|
|
317
328
|
user-select: none;
|
|
@@ -440,6 +451,12 @@
|
|
|
440
451
|
--#{$button}--disabled--BackgroundColor: transparent;
|
|
441
452
|
--#{$button}--disabled--Color: var(--#{$button}--m-link--m-inline--disabled--Color);
|
|
442
453
|
--#{$button}--disabled__icon--Color: var(--#{$button}--m-link--m-inline--disabled__icon--Color);
|
|
454
|
+
--#{$button}--m-link--Color: var(--#{$button}--m-link--m-inline--Color);
|
|
455
|
+
--#{$button}--m-link__icon--Color: var(--#{$button}--m-link--m-inline__icon--Color);
|
|
456
|
+
--#{$button}--TextDecorationColor: var(--#{$button}--m-link--m-inline--TextDecorationColor);
|
|
457
|
+
--#{$button}--hover--TextDecorationColor: var(--#{$button}--m-link--m-inline--hover--TextDecorationColor);
|
|
458
|
+
--#{$button}--m-link--hover--Color: var(--#{$button}--m-link--m-inline--hover--Color);
|
|
459
|
+
--#{$button}--m-link--hover__icon--Color: var(--#{$button}--m-link--m-inline--hover__icon--Color);
|
|
443
460
|
|
|
444
461
|
text-align: start;
|
|
445
462
|
white-space: normal;
|
|
@@ -623,7 +640,9 @@
|
|
|
623
640
|
--#{$button}--m-plain--m-no-padding__icon--Color: var(--#{$button}--m-plain--m-no-padding--hover__icon--Color);
|
|
624
641
|
--#{$button}__icon--Color: var(--#{$button}--hover__icon--Color);
|
|
625
642
|
|
|
626
|
-
text-decoration: var(--#{$button}--hover--TextDecorationLine)
|
|
643
|
+
text-decoration-line: var(--#{$button}--hover--TextDecorationLine);
|
|
644
|
+
text-decoration-style: var(--#{$button}--hover--TextDecorationStyle);
|
|
645
|
+
text-decoration-color: var(--#{$button}--hover--TextDecorationColor);
|
|
627
646
|
}
|
|
628
647
|
|
|
629
648
|
&.pf-m-clicked {
|
|
@@ -645,6 +664,7 @@
|
|
|
645
664
|
&.pf-m-disabled,
|
|
646
665
|
&.pf-m-aria-disabled {
|
|
647
666
|
color: var(--#{$button}--disabled--Color);
|
|
667
|
+
text-decoration-color: var(--#{$button}--disabled--TextDecorationColor);
|
|
648
668
|
background-color: var(--#{$button}--disabled--BackgroundColor);
|
|
649
669
|
|
|
650
670
|
&::after {
|
|
@@ -83,7 +83,8 @@
|
|
|
83
83
|
|
|
84
84
|
:is(.pf-v6-c-content--a, .pf-v6-c-content a) {
|
|
85
85
|
color: var(--pf-v6-c-content--a--Color);
|
|
86
|
-
text-decoration: var(--pf-v6-c-content--a--TextDecorationLine)
|
|
86
|
+
text-decoration-line: var(--pf-v6-c-content--a--TextDecorationLine);
|
|
87
|
+
text-decoration-style: var(--pf-v6-c-content--a--TextDecorationStyle);
|
|
87
88
|
}
|
|
88
89
|
:is(.pf-v6-c-content--a, .pf-v6-c-content a):is(:hover, :focus) {
|
|
89
90
|
--pf-v6-c-content--a--Color: var(--pf-v6-c-content--a--hover--Color);
|
|
@@ -119,7 +119,8 @@
|
|
|
119
119
|
& a
|
|
120
120
|
) {
|
|
121
121
|
color: var(--#{$content}--a--Color);
|
|
122
|
-
text-decoration: var(--#{$content}--a--TextDecorationLine)
|
|
122
|
+
text-decoration-line: var(--#{$content}--a--TextDecorationLine);
|
|
123
|
+
text-decoration-style: var(--#{$content}--a--TextDecorationStyle);
|
|
123
124
|
|
|
124
125
|
&:is(:hover, :focus) {
|
|
125
126
|
--#{$content}--a--Color: var(--#{$content}--a--hover--Color);
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
--pf-v6-c-description-list__term--Display: inline;
|
|
15
15
|
--pf-v6-c-description-list__term--sm--Display: flex;
|
|
16
16
|
--pf-v6-c-description-list__term--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
17
|
-
--pf-v6-c-description-list__term--FontSize: var(--pf-t--global--font--size--body--
|
|
17
|
+
--pf-v6-c-description-list__term--FontSize: var(--pf-t--global--font--size--body--default);
|
|
18
18
|
--pf-v6-c-description-list__term--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
19
19
|
--pf-v6-c-description-list__term-icon--MinWidth: var(--pf-t--global--font--size--body--sm);
|
|
20
20
|
--pf-v6-c-description-list__term-icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
@@ -196,7 +196,8 @@
|
|
|
196
196
|
min-width: 0;
|
|
197
197
|
}
|
|
198
198
|
.pf-v6-c-description-list__text.pf-m-help-text {
|
|
199
|
-
text-decoration: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationLine)
|
|
199
|
+
text-decoration-line: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationLine);
|
|
200
|
+
text-decoration-style: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationStyle);
|
|
200
201
|
text-underline-offset: var(--pf-v6-c-description-list__text--m-help-text--TextUnderlineOffset);
|
|
201
202
|
cursor: pointer;
|
|
202
203
|
}
|
|
@@ -24,7 +24,7 @@ $pf-v6-c-description-list--breakpoint-map: build-breakpoint-map("base", "sm", "m
|
|
|
24
24
|
--#{$description-list}__term--Display: inline;
|
|
25
25
|
--#{$description-list}__term--sm--Display: flex;
|
|
26
26
|
--#{$description-list}__term--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
27
|
-
--#{$description-list}__term--FontSize: var(--pf-t--global--font--size--body--
|
|
27
|
+
--#{$description-list}__term--FontSize: var(--pf-t--global--font--size--body--default);
|
|
28
28
|
--#{$description-list}__term--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
29
29
|
|
|
30
30
|
@media screen and (min-width: $pf-v6-global--breakpoint--sm) {
|
|
@@ -179,7 +179,8 @@ $pf-v6-c-description-list--breakpoint-map: build-breakpoint-map("base", "sm", "m
|
|
|
179
179
|
min-width: 0; // this allows overflow-wrap to work
|
|
180
180
|
|
|
181
181
|
&.pf-m-help-text {
|
|
182
|
-
text-decoration: var(--#{$description-list}__text--m-help-text--TextDecorationLine)
|
|
182
|
+
text-decoration-line: var(--#{$description-list}__text--m-help-text--TextDecorationLine);
|
|
183
|
+
text-decoration-style: var(--#{$description-list}__text--m-help-text--TextDecorationStyle);
|
|
183
184
|
text-underline-offset: var(--#{$description-list}__text--m-help-text--TextUnderlineOffset);
|
|
184
185
|
cursor: pointer;
|
|
185
186
|
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
--pf-v6-c-drawer__panel--RowGap: var(--pf-t--global--spacer--sm);
|
|
16
16
|
--pf-v6-c-drawer__panel--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
17
17
|
--pf-v6-c-drawer__panel--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
18
|
-
--pf-v6-c-drawer__panel--
|
|
18
|
+
--pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
|
19
|
+
--pf-v6-c-drawer__panel--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--short);
|
|
19
20
|
--pf-v6-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis;
|
|
20
21
|
--pf-v6-c-drawer__panel--FlexBasis: 100%;
|
|
21
22
|
--pf-v6-c-drawer__panel--md--FlexBasis--min: 1.5rem;
|
|
@@ -229,6 +230,7 @@
|
|
|
229
230
|
overflow: auto;
|
|
230
231
|
background-color: var(--pf-v6-c-drawer__panel--BackgroundColor);
|
|
231
232
|
box-shadow: var(--pf-v6-c-drawer__panel--BoxShadow);
|
|
233
|
+
transition-timing-function: var(--pf-v6-c-drawer__panel--TransitionTimingFunction);
|
|
232
234
|
transition-duration: var(--pf-v6-c-drawer__panel--TransitionDuration);
|
|
233
235
|
transition-property: var(--pf-v6-c-drawer__panel--TransitionProperty);
|
|
234
236
|
-webkit-overflow-scrolling: touch;
|
|
@@ -27,7 +27,8 @@ $pf-v6-c-drawer__panel--list--width: (25, 33, 50, 66, 75, 100);
|
|
|
27
27
|
--#{$drawer}__panel--RowGap: var(--pf-t--global--spacer--sm);
|
|
28
28
|
--#{$drawer}__panel--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
29
29
|
--#{$drawer}__panel--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
30
|
-
--#{$drawer}__panel--
|
|
30
|
+
--#{$drawer}__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
|
31
|
+
--#{$drawer}__panel--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--short);
|
|
31
32
|
--#{$drawer}__panel--TransitionProperty: margin, transform, box-shadow, flex-basis;
|
|
32
33
|
--#{$drawer}__panel--FlexBasis: 100%;
|
|
33
34
|
--#{$drawer}__panel--md--FlexBasis--min: #{pf-size-prem(24px)};
|
|
@@ -298,6 +299,7 @@ $pf-v6-c-drawer__panel--list--width: (25, 33, 50, 66, 75, 100);
|
|
|
298
299
|
overflow: auto;
|
|
299
300
|
background-color: var(--#{$drawer}__panel--BackgroundColor);
|
|
300
301
|
box-shadow: var(--#{$drawer}__panel--BoxShadow);
|
|
302
|
+
transition-timing-function: var(--#{$drawer}__panel--TransitionTimingFunction);
|
|
301
303
|
transition-duration: var(--#{$drawer}__panel--TransitionDuration);
|
|
302
304
|
transition-property: var(--#{$drawer}__panel--TransitionProperty);
|
|
303
305
|
-webkit-overflow-scrolling: touch;
|
package/components/Form/form.css
CHANGED
|
@@ -10,16 +10,16 @@
|
|
|
10
10
|
--pf-v6-c-form__group-label--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
11
11
|
--pf-v6-c-form--m-horizontal__group-label--m-no-padding--md--PaddingBlockStart: 0;
|
|
12
12
|
--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)));
|
|
13
|
-
--pf-v6-c-form__label--FontSize: var(--pf-t--global--font--size--body--
|
|
13
|
+
--pf-v6-c-form__label--FontSize: var(--pf-t--global--font--size--body--default);
|
|
14
14
|
--pf-v6-c-form__label--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
15
15
|
--pf-v6-c-form__label--m-disabled--Color: var(--pf-t--global--text--color--disabled);
|
|
16
16
|
--pf-v6-c-form__label--hover--Cursor: pointer;
|
|
17
17
|
--pf-v6-c-form__label--m-disabled--hover--Cursor: not-allowed;
|
|
18
18
|
--pf-v6-c-form__label-text--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
19
19
|
--pf-v6-c-form__label-required--MarginInlineStart: var(--pf-t--global--spacer--xs);
|
|
20
|
-
--pf-v6-c-form__label-required--FontSize: var(--pf-t--global--font--size--body--
|
|
20
|
+
--pf-v6-c-form__label-required--FontSize: var(--pf-t--global--font--size--body--default);
|
|
21
21
|
--pf-v6-c-form__label-required--Color: var(--pf-t--global--color--status--danger--default);
|
|
22
|
-
--pf-v6-c-form__group-label-help--FontSize: var(--pf-t--global--font--size--body--
|
|
22
|
+
--pf-v6-c-form__group-label-help--FontSize: var(--pf-t--global--font--size--body--default);
|
|
23
23
|
--pf-v6-c-form__group-label--m-info--Gap: var(--pf-t--global--spacer--gap--horizontal);
|
|
24
24
|
--pf-v6-c-form__group-label-info--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
25
25
|
--pf-v6-c-form--m-horizontal__group-label--m-info--Gap: var(--pf-t--global--spacer--gap--group--vertical);
|
|
@@ -333,9 +333,6 @@
|
|
|
333
333
|
font-size: var(--pf-v6-c-form__label--FontSize);
|
|
334
334
|
line-height: var(--pf-v6-c-form__label--LineHeight);
|
|
335
335
|
}
|
|
336
|
-
.pf-v6-c-form__label::selection {
|
|
337
|
-
background-color: none;
|
|
338
|
-
}
|
|
339
336
|
.pf-v6-c-form__label:not(.pf-m-disabled):hover {
|
|
340
337
|
cursor: var(--pf-v6-c-form__label--hover--Cursor);
|
|
341
338
|
}
|
|
@@ -67,7 +67,7 @@ $pf-v6-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
67
67
|
--#{$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)));
|
|
68
68
|
|
|
69
69
|
// Label
|
|
70
|
-
--#{$form}__label--FontSize: var(--pf-t--global--font--size--body--
|
|
70
|
+
--#{$form}__label--FontSize: var(--pf-t--global--font--size--body--default);
|
|
71
71
|
--#{$form}__label--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
72
72
|
--#{$form}__label--m-disabled--Color: var(--pf-t--global--text--color--disabled);
|
|
73
73
|
--#{$form}__label--hover--Cursor: pointer;
|
|
@@ -78,11 +78,11 @@ $pf-v6-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
78
78
|
|
|
79
79
|
// Required labels
|
|
80
80
|
--#{$form}__label-required--MarginInlineStart: var(--pf-t--global--spacer--xs);
|
|
81
|
-
--#{$form}__label-required--FontSize: var(--pf-t--global--font--size--body--
|
|
81
|
+
--#{$form}__label-required--FontSize: var(--pf-t--global--font--size--body--default);
|
|
82
82
|
--#{$form}__label-required--Color: var(--pf-t--global--color--status--danger--default);
|
|
83
83
|
|
|
84
84
|
// Field level help
|
|
85
|
-
--#{$form}__group-label-help--FontSize: var(--pf-t--global--font--size--body--
|
|
85
|
+
--#{$form}__group-label-help--FontSize: var(--pf-t--global--font--size--body--default);
|
|
86
86
|
|
|
87
87
|
// Form group label info
|
|
88
88
|
--#{$form}__group-label--m-info--Gap: var(--pf-t--global--spacer--gap--horizontal);
|
|
@@ -261,10 +261,6 @@ $pf-v6-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
261
261
|
font-size: var(--#{$form}__label--FontSize);
|
|
262
262
|
line-height: var(--#{$form}__label--LineHeight);
|
|
263
263
|
|
|
264
|
-
&::selection {
|
|
265
|
-
background-color: none;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
264
|
&:not(.pf-m-disabled):hover {
|
|
269
265
|
cursor: var(--#{$form}__label--hover--Cursor);
|
|
270
266
|
}
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
padding-block-end: var(--pf-v6-c-jump-links__link--PaddingBlockEnd);
|
|
187
187
|
padding-inline-start: var(--pf-v6-c-jump-links__link--PaddingInlineStart);
|
|
188
188
|
padding-inline-end: var(--pf-v6-c-jump-links__link--PaddingInlineEnd);
|
|
189
|
-
text-decoration: none;
|
|
189
|
+
text-decoration-line: none;
|
|
190
190
|
outline-offset: var(--pf-v6-c-jump-links__link--OutlineOffset);
|
|
191
191
|
}
|
|
192
192
|
.pf-v6-c-jump-links__link:is(:hover, :focus) {
|
|
@@ -160,7 +160,7 @@ $pf-v6-c-jump-links--m-expandable--breakpoint-map: build-breakpoint-map("base",
|
|
|
160
160
|
padding-block-end: var(--#{$jump-links}__link--PaddingBlockEnd);
|
|
161
161
|
padding-inline-start: var(--#{$jump-links}__link--PaddingInlineStart);
|
|
162
162
|
padding-inline-end: var(--#{$jump-links}__link--PaddingInlineEnd);
|
|
163
|
-
text-decoration: none;
|
|
163
|
+
text-decoration-line: none;
|
|
164
164
|
outline-offset: var(--#{$jump-links}__link--OutlineOffset);
|
|
165
165
|
|
|
166
166
|
&:is(:hover, :focus) {
|
|
@@ -381,7 +381,8 @@
|
|
|
381
381
|
--pf-v6-c-label--m-editable--TextDecorationStyle: var(--pf-v6-c-label--m-editable--hover--TextDecorationStyle);
|
|
382
382
|
}
|
|
383
383
|
.pf-v6-c-label.pf-m-editable .pf-v6-c-label__text {
|
|
384
|
-
text-decoration: var(--pf-v6-c-label--m-editable--TextDecorationLine)
|
|
384
|
+
text-decoration-line: var(--pf-v6-c-label--m-editable--TextDecorationLine);
|
|
385
|
+
text-decoration-style: var(--pf-v6-c-label--m-editable--TextDecorationStyle);
|
|
385
386
|
text-underline-offset: var(--pf-v6-c-label--m-editable--TextUnderlineOffset);
|
|
386
387
|
}
|
|
387
388
|
.pf-v6-c-label.pf-m-editable-active {
|
|
@@ -414,7 +415,7 @@
|
|
|
414
415
|
--pf-v6-c-label__content--Cursor: var(--pf-v6-c-label--m-clickable__content--Cursor);
|
|
415
416
|
}
|
|
416
417
|
.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) {
|
|
417
|
-
text-decoration: none;
|
|
418
|
+
text-decoration-line: none;
|
|
418
419
|
}
|
|
419
420
|
.pf-v6-c-label.pf-m-clickable .pf-v6-c-label__content:is(:hover, :focus) {
|
|
420
421
|
--pf-v6-c-label--Color: var(--pf-v6-c-label--m-clickable--hover--Color);
|
|
@@ -458,7 +458,8 @@
|
|
|
458
458
|
}
|
|
459
459
|
|
|
460
460
|
.#{$label}__text {
|
|
461
|
-
text-decoration: var(--#{$label}--m-editable--TextDecorationLine)
|
|
461
|
+
text-decoration-line: var(--#{$label}--m-editable--TextDecorationLine);
|
|
462
|
+
text-decoration-style: var(--#{$label}--m-editable--TextDecorationStyle);
|
|
462
463
|
text-underline-offset: var(--#{$label}--m-editable--TextUnderlineOffset);
|
|
463
464
|
}
|
|
464
465
|
}
|
|
@@ -500,7 +501,7 @@
|
|
|
500
501
|
.#{$label}__content {
|
|
501
502
|
&,
|
|
502
503
|
&:is(:hover, :focus) {
|
|
503
|
-
text-decoration: none;
|
|
504
|
+
text-decoration-line: none;
|
|
504
505
|
}
|
|
505
506
|
|
|
506
507
|
&:is(:hover, :focus) {
|
package/components/Menu/menu.css
CHANGED
|
@@ -177,11 +177,20 @@
|
|
|
177
177
|
.pf-v6-c-menu__item-action:is(.pf-m-disabled, :disabled, .pf-m-aria-disabled, [aria-disabled=true]) {
|
|
178
178
|
--pf-v6-c-menu__item--Color: var(--pf-v6-c-menu__item--m-disabled--Color);
|
|
179
179
|
--pf-v6-c-menu__item-toggle-icon--Color: var(--pf-v6-c-menu--icon--disabled--Color);
|
|
180
|
-
--pf-v6-c-menu__item-external
|
|
180
|
+
--pf-v6-c-menu__item-external--Color: transparent;
|
|
181
|
+
--pf-v6-c-menu__item-select-icon--Color: transparent;
|
|
181
182
|
--pf-v6-c-menu__item-description--Color: var(--pf-v6-c-menu--icon--disabled--Color);
|
|
182
183
|
--pf-v6-c-menu__list-item--BackgroundColor: transparent;
|
|
184
|
+
--pf-v6-c-menu__list-item--hover--BackgroundColor: transparent;
|
|
185
|
+
}
|
|
186
|
+
.pf-v6-c-menu__list-item:is(.pf-m-disabled, :disabled),
|
|
187
|
+
.pf-v6-c-menu__item-action:is(.pf-m-disabled, :disabled) {
|
|
183
188
|
pointer-events: none;
|
|
184
189
|
}
|
|
190
|
+
.pf-v6-c-menu__list-item.pf-m-aria-disabled .pf-v6-c-menu__item,
|
|
191
|
+
.pf-v6-c-menu__item-action.pf-m-aria-disabled .pf-v6-c-menu__item {
|
|
192
|
+
cursor: default;
|
|
193
|
+
}
|
|
185
194
|
|
|
186
195
|
[class*=pf-v6-c-menu]:is([hidden]) {
|
|
187
196
|
display: none;
|
|
@@ -429,7 +438,7 @@
|
|
|
429
438
|
line-height: var(--pf-v6-c-menu__item--LineHeight);
|
|
430
439
|
color: var(--pf-v6-c-menu__item--Color);
|
|
431
440
|
text-align: start;
|
|
432
|
-
text-decoration: none;
|
|
441
|
+
text-decoration-line: none;
|
|
433
442
|
background-color: var(--pf-v6-c-menu__item--BackgroundColor);
|
|
434
443
|
border: 0;
|
|
435
444
|
outline-offset: var(--pf-v6-c-menu--OutlineOffset);
|
|
@@ -175,12 +175,22 @@
|
|
|
175
175
|
&:is(.pf-m-disabled, :disabled, .pf-m-aria-disabled, [aria-disabled="true"]) {
|
|
176
176
|
--#{$menu}__item--Color: var(--#{$menu}__item--m-disabled--Color);
|
|
177
177
|
--#{$menu}__item-toggle-icon--Color: var(--#{$menu}--icon--disabled--Color);
|
|
178
|
-
--#{$menu}__item-external
|
|
178
|
+
--#{$menu}__item-external--Color: transparent;
|
|
179
|
+
--#{$menu}__item-select-icon--Color: transparent;
|
|
179
180
|
--#{$menu}__item-description--Color: var(--#{$menu}--icon--disabled--Color);
|
|
180
181
|
--#{$menu}__list-item--BackgroundColor: transparent;
|
|
182
|
+
--#{$menu}__list-item--hover--BackgroundColor: transparent;
|
|
183
|
+
}
|
|
181
184
|
|
|
185
|
+
&:is(.pf-m-disabled, :disabled) {
|
|
182
186
|
pointer-events: none;
|
|
183
187
|
}
|
|
188
|
+
|
|
189
|
+
&.pf-m-aria-disabled {
|
|
190
|
+
.#{$menu}__item {
|
|
191
|
+
cursor: default;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
184
194
|
}
|
|
185
195
|
|
|
186
196
|
// - Menu hidden
|
|
@@ -518,7 +528,7 @@
|
|
|
518
528
|
line-height: var(--#{$menu}__item--LineHeight);
|
|
519
529
|
color: var(--#{$menu}__item--Color);
|
|
520
530
|
text-align: start;
|
|
521
|
-
text-decoration: none;
|
|
531
|
+
text-decoration-line: none;
|
|
522
532
|
background-color: var(--#{$menu}__item--BackgroundColor);
|
|
523
533
|
border: 0;
|
|
524
534
|
outline-offset: var(--#{$menu}--OutlineOffset);
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
--pf-v6-c-menu-toggle--m-primary--m-small--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--compact);
|
|
55
55
|
--pf-v6-c-menu-toggle--m-secondary--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--default);
|
|
56
56
|
--pf-v6-c-menu-toggle--m-secondary--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--default);
|
|
57
|
+
--pf-v6-c-menu-toggle--m-secondary--BackgroundColor: transparent;
|
|
57
58
|
--pf-v6-c-menu-toggle--m-secondary--Color: var(--pf-t--global--text--color--brand--default);
|
|
58
59
|
--pf-v6-c-menu-toggle--m-secondary--BorderColor: var(--pf-t--global--border--color--brand--default);
|
|
59
60
|
--pf-v6-c-menu-toggle--m-secondary--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
@@ -61,6 +62,7 @@
|
|
|
61
62
|
--pf-v6-c-menu-toggle--m-secondary--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
|
|
62
63
|
--pf-v6-c-menu-toggle--m-secondary--hover--BorderColor: var(--pf-t--global--border--color--brand--hover);
|
|
63
64
|
--pf-v6-c-menu-toggle--m-secondary--expanded--Color: var(--pf-t--global--text--color--brand--clicked);
|
|
65
|
+
--pf-v6-c-menu-toggle--m-secondary--expanded--BackgroundColor: transparent;
|
|
64
66
|
--pf-v6-c-menu-toggle--m-secondary--expanded--BorderWidth: var(--pf-t--global--border--width--action--clicked);
|
|
65
67
|
--pf-v6-c-menu-toggle--m-secondary--expanded--BorderColor: var(--pf-t--global--border--color--brand--clicked);
|
|
66
68
|
--pf-v6-c-menu-toggle--m-secondary__toggle-icon--Color: var(--pf-t--global--icon--color--brand--default);
|
|
@@ -101,6 +103,7 @@
|
|
|
101
103
|
--pf-v6-c-menu-toggle--m-plain--Color: var(--pf-t--global--icon--color--regular);
|
|
102
104
|
--pf-v6-c-menu-toggle--m-plain--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
|
103
105
|
--pf-v6-c-menu-toggle--m-plain--BorderColor: transparent;
|
|
106
|
+
--pf-v6-c-menu-toggle--m-plain--BorderRadius: var(--pf-v6-c-menu-toggle--BorderRadius);
|
|
104
107
|
--pf-v6-c-menu-toggle--m-plain--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
105
108
|
--pf-v6-c-menu-toggle--m-plain--expanded--BackgroundColor: var(--pf-t--global--background--color--action--plain--clicked);
|
|
106
109
|
--pf-v6-c-menu-toggle--m-plain--disabled--Color: var(--pf-t--global--text--color--disabled);
|
|
@@ -185,12 +188,14 @@
|
|
|
185
188
|
--pf-v6-c-menu-toggle--PaddingInlineStart: var(--pf-v6-c-menu-toggle--m-secondary--PaddingInlineStart);
|
|
186
189
|
--pf-v6-c-menu-toggle--PaddingInlineEnd: var(--pf-v6-c-menu-toggle--m-secondary--PaddingInlineEnd);
|
|
187
190
|
--pf-v6-c-menu-toggle--Color: var(--pf-v6-c-menu-toggle--m-secondary--Color);
|
|
191
|
+
--pf-v6-c-menu-toggle--BackgroundColor: var(--pf-v6-c-menu-toggle--m-secondary--BackgroundColor);
|
|
188
192
|
--pf-v6-c-menu-toggle--BorderColor: var(--pf-v6-c-menu-toggle--m-secondary--BorderColor);
|
|
189
193
|
--pf-v6-c-menu-toggle--BorderRadius: var(--pf-v6-c-menu-toggle--m-secondary--BorderRadius);
|
|
190
194
|
--pf-v6-c-menu-toggle--hover--Color: var(--pf-v6-c-menu-toggle--m-secondary--hover--Color);
|
|
191
195
|
--pf-v6-c-menu-toggle--hover--BorderWidth: var(--pf-v6-c-menu-toggle--m-secondary--hover--BorderWidth);
|
|
192
196
|
--pf-v6-c-menu-toggle--hover--BorderColor: var(--pf-v6-c-menu-toggle--m-secondary--hover--BorderColor);
|
|
193
197
|
--pf-v6-c-menu-toggle--expanded--Color: var(--pf-v6-c-menu-toggle--m-secondary--expanded--Color);
|
|
198
|
+
--pf-v6-c-menu-toggle--expanded--BackgroundColor: var(--pf-v6-c-menu-toggle--m-secondary--expanded--BackgroundColor);
|
|
194
199
|
--pf-v6-c-menu-toggle--expanded--BorderWidth: var(--pf-v6-c-menu-toggle--m-secondary--expanded--BorderWidth);
|
|
195
200
|
--pf-v6-c-menu-toggle--hover__toggle-icon--Color: var(--pf-v6-c-menu-toggle--m-secondary--hover__toggle-icon--Color);
|
|
196
201
|
--pf-v6-c-menu-toggle--expanded__toggle-icon--Color: var(--pf-v6-c-menu-toggle--m-secondary--expanded__toggle-icon--Color);
|
|
@@ -214,6 +219,7 @@
|
|
|
214
219
|
--pf-v6-c-menu-toggle--Color: var(--pf-v6-c-menu-toggle--m-plain--Color);
|
|
215
220
|
--pf-v6-c-menu-toggle--BackgroundColor: var(--pf-v6-c-menu-toggle--m-plain--BackgroundColor);
|
|
216
221
|
--pf-v6-c-menu-toggle--BorderColor: var(--pf-v6-c-menu-toggle--m-plain--BorderColor);
|
|
222
|
+
--pf-v6-c-menu-toggle--BorderRadius: var(--pf-v6-c-menu-toggle--m-plain--BorderRadius);
|
|
217
223
|
--pf-v6-c-menu-toggle--BackgroundColor: var(--pf-v6-c-menu-toggle--m-plain--BackgroundColor);
|
|
218
224
|
--pf-v6-c-menu-toggle--hover--BackgroundColor: var(--pf-v6-c-menu-toggle--m-plain--hover--BackgroundColor);
|
|
219
225
|
--pf-v6-c-menu-toggle--expanded--BackgroundColor: var(--pf-v6-c-menu-toggle--m-plain--expanded--BackgroundColor);
|