@patternfly/react-styles 6.3.1 → 6.4.0-prerelease.2
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/CHANGELOG.md +21 -1
- package/css/components/Accordion/accordion.css +42 -15
- package/css/components/Alert/alert-group.css +17 -15
- package/css/components/Badge/badge.css +2 -0
- package/css/components/Banner/banner.css +4 -0
- package/css/components/Button/button.css +34 -4
- package/css/components/CalendarMonth/calendar-month.css +35 -4
- package/css/components/Card/card.css +7 -4
- package/css/components/CodeBlock/code-block.css +3 -0
- package/css/components/CodeEditor/code-editor.css +23 -3
- package/css/components/DatePicker/date-picker.css +3 -0
- package/css/components/Divider/divider.css +2 -0
- package/css/components/Drawer/drawer.css +46 -41
- package/css/components/DualListSelector/dual-list-selector.css +21 -4
- package/css/components/ExpandableSection/expandable-section.css +6 -2
- package/css/components/FormControl/form-control.css +6 -7
- package/css/components/Label/label.css +20 -11
- package/css/components/Login/login.css +3 -0
- package/css/components/Menu/menu.css +18 -0
- package/css/components/MenuToggle/menu-toggle.css +13 -6
- package/css/components/ModalBox/modal-box.css +3 -0
- package/css/components/Nav/nav.css +17 -0
- package/css/components/Page/page.css +73 -25
- package/css/components/Page/page.d.ts +3 -0
- package/css/components/Page/page.js +3 -0
- package/css/components/Page/page.mjs +3 -0
- package/css/components/Pagination/pagination.css +15 -2
- package/css/components/Panel/panel.css +14 -1
- package/css/components/Popover/popover.css +4 -0
- package/css/components/Progress/progress.css +19 -0
- package/css/components/Sidebar/sidebar.css +7 -0
- package/css/components/SimpleList/simple-list.css +15 -0
- package/css/components/Slider/slider.css +9 -0
- package/css/components/Switch/switch.css +7 -1
- package/css/components/Table/table.css +29 -0
- package/css/components/Tabs/tabs.css +18 -7
- package/css/components/TextInputGroup/text-input-group.css +3 -0
- package/css/components/ToggleGroup/toggle-group.css +18 -9
- package/css/components/Toolbar/toolbar.css +7 -0
- package/css/components/TreeView/tree-view.css +15 -0
- package/css/components/Wizard/wizard.css +37 -6
- package/css/components/Wizard/wizard.d.ts +1 -1
- package/css/components/Wizard/wizard.js +1 -1
- package/css/components/Wizard/wizard.mjs +1 -1
- package/css/components/_index.css +615 -167
- package/css/components/_index.d.ts +0 -1
- package/css/components/_index.js +0 -1
- package/css/components/_index.mjs +0 -1
- package/package.json +3 -3
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
--pf-v6-c-popover--MinWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
4
4
|
--pf-v6-c-popover--MaxWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
5
5
|
--pf-v6-c-popover--BoxShadow: var(--pf-t--global--box-shadow--md);
|
|
6
|
+
--pf-v6-c-popover--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
7
|
+
--pf-v6-c-popover--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
6
8
|
--pf-v6-c-popover--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
7
9
|
--pf-v6-c-popover--m-danger__title-icon--Color: var(--pf-t--global--icon--color--status--danger--default);
|
|
8
10
|
--pf-v6-c-popover--m-warning__title-icon--Color: var(--pf-t--global--icon--color--status--warning--default);
|
|
@@ -53,6 +55,7 @@
|
|
|
53
55
|
min-width: var(--pf-v6-c-popover--MinWidth);
|
|
54
56
|
max-width: var(--pf-v6-c-popover--MaxWidth);
|
|
55
57
|
font-size: var(--pf-v6-c-popover--FontSize);
|
|
58
|
+
border: var(--pf-v6-c-popover--BorderWidth) solid var(--pf-v6-c-popover--BorderColor);
|
|
56
59
|
border-radius: var(--pf-v6-c-popover--BorderRadius);
|
|
57
60
|
box-shadow: var(--pf-v6-c-popover--BoxShadow);
|
|
58
61
|
}
|
|
@@ -167,6 +170,7 @@
|
|
|
167
170
|
height: var(--pf-v6-c-popover__arrow--Height);
|
|
168
171
|
pointer-events: none;
|
|
169
172
|
background-color: var(--pf-v6-c-popover__arrow--BackgroundColor);
|
|
173
|
+
border: var(--pf-v6-c-popover--BorderWidth) solid var(--pf-v6-c-popover--BorderColor);
|
|
170
174
|
box-shadow: var(--pf-v6-c-popover__arrow--BoxShadow);
|
|
171
175
|
transform: translateX(var(--pf-v6-c-popover__arrow--TranslateX, 0)) translateY(var(--pf-v6-c-popover__arrow--TranslateY, 0)) rotate(var(--pf-v6-c-popover__arrow--Rotate, 0));
|
|
172
176
|
}
|
|
@@ -3,11 +3,15 @@
|
|
|
3
3
|
--pf-v6-c-progress__bar--Height: var(--pf-t--global--spacer--md);
|
|
4
4
|
--pf-v6-c-progress__bar--BackgroundColor: var(--pf-t--global--color--nonstatus--gray--default);
|
|
5
5
|
--pf-v6-c-progress__bar--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
6
|
+
--pf-v6-c-progress__bar--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
7
|
+
--pf-v6-c-progress__bar--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
6
8
|
--pf-v6-c-progress__measure--m-static-width--MinWidth: 4.5ch;
|
|
7
9
|
--pf-v6-c-progress__status--Gap: var(--pf-t--global--spacer--sm);
|
|
8
10
|
--pf-v6-c-progress__status-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
9
11
|
--pf-v6-c-progress__indicator--Height: var(--pf-v6-c-progress__bar--Height);
|
|
10
12
|
--pf-v6-c-progress__indicator--BackgroundColor: var(--pf-t--global--color--brand--default);
|
|
13
|
+
--pf-v6-c-progress__indicator--BorderWidth: var(--pf-t--global--border--width--high-contrast--extra-strong);
|
|
14
|
+
--pf-v6-c-progress__indicator--BorderColor: transparent;
|
|
11
15
|
--pf-v6-c-progress__helper-text--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) - var(--pf-v6-c-progress--GridGap));
|
|
12
16
|
--pf-v6-c-progress--m-success__indicator--BackgroundColor: var(--pf-t--global--color--status--success--default);
|
|
13
17
|
--pf-v6-c-progress--m-warning__indicator--BackgroundColor: var(--pf-t--global--color--status--warning--default);
|
|
@@ -164,12 +168,27 @@
|
|
|
164
168
|
background-color: var(--pf-v6-c-progress__bar--BackgroundColor);
|
|
165
169
|
border-radius: var(--pf-v6-c-progress__bar--BorderRadius);
|
|
166
170
|
}
|
|
171
|
+
.pf-v6-c-progress__bar::before {
|
|
172
|
+
position: absolute;
|
|
173
|
+
inset: 0;
|
|
174
|
+
pointer-events: none;
|
|
175
|
+
content: "";
|
|
176
|
+
border: var(--pf-v6-c-progress__bar--BorderWidth) solid var(--pf-v6-c-progress__bar--BorderColor);
|
|
177
|
+
border-radius: inherit;
|
|
178
|
+
}
|
|
167
179
|
|
|
168
180
|
.pf-v6-c-progress__indicator {
|
|
169
181
|
position: absolute;
|
|
170
182
|
height: var(--pf-v6-c-progress__indicator--Height);
|
|
171
183
|
background-color: var(--pf-v6-c-progress__indicator--BackgroundColor);
|
|
172
184
|
}
|
|
185
|
+
.pf-v6-c-progress__indicator::before {
|
|
186
|
+
position: absolute;
|
|
187
|
+
inset: 0;
|
|
188
|
+
content: "";
|
|
189
|
+
border: var(--pf-v6-c-progress__indicator--BorderWidth) solid var(--pf-v6-c-progress__indicator--BorderColor);
|
|
190
|
+
border-radius: var(--pf-v6-c-progress__bar--BorderRadius);
|
|
191
|
+
}
|
|
173
192
|
|
|
174
193
|
.pf-v6-c-progress__helper-text {
|
|
175
194
|
grid-row: 3/4;
|
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
--pf-v6-c-sidebar--m-stack__panel--Position: sticky;
|
|
40
40
|
--pf-v6-c-sidebar--m-stack__panel--InsetBlockStart: 0;
|
|
41
41
|
--pf-v6-c-sidebar--m-stack__panel--BoxShadow: var(--pf-v6-c-sidebar__panel--BoxShadow--base);
|
|
42
|
+
--pf-v6-c-sidebar--m-stack__panel--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
42
43
|
--pf-v6-c-sidebar--m-stack--m-panel-right__panel--Order: -1;
|
|
43
44
|
--pf-v6-c-sidebar--m-split__main--AlignItems: flex-start;
|
|
44
45
|
--pf-v6-c-sidebar--m-split__main--FlexDirection: row;
|
|
@@ -47,6 +48,8 @@
|
|
|
47
48
|
--pf-v6-c-sidebar--m-split--m-panel-right__panel--Order: 1;
|
|
48
49
|
--pf-v6-c-sidebar--m-split__main--m-border--before--Display: block;
|
|
49
50
|
--pf-v6-c-sidebar__panel--FlexBasis--base: auto;
|
|
51
|
+
--pf-v6-c-sidebar__panel--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
52
|
+
--pf-v6-c-sidebar__panel--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
50
53
|
--pf-v6-c-sidebar__panel--BoxShadow--base: var(--pf-t--global--box-shadow--md--bottom);
|
|
51
54
|
--pf-v6-c-sidebar__panel--BoxShadow: var(--pf-v6-c-sidebar__panel--BoxShadow--base);
|
|
52
55
|
--pf-v6-c-sidebar__panel--InsetBlockStart: 0;
|
|
@@ -75,6 +78,7 @@
|
|
|
75
78
|
--pf-v6-c-sidebar__main--FlexDirection: var(--pf-v6-c-sidebar__main--md--FlexDirection);
|
|
76
79
|
--pf-v6-c-sidebar__main--AlignItems: var(--pf-v6-c-sidebar__main--md--AlignItems);
|
|
77
80
|
--pf-v6-c-sidebar__main--m-border--before--Display: var(--pf-v6-c-sidebar__main--m-border--before--md--Display);
|
|
81
|
+
--pf-v6-c-sidebar__panel--BorderBlockEndWidth: 0;
|
|
78
82
|
--pf-v6-c-sidebar__panel--BoxShadow: none;
|
|
79
83
|
--pf-v6-c-sidebar__panel--FlexBasis: var(--pf-v6-c-sidebar__panel--md--FlexBasis);
|
|
80
84
|
--pf-v6-c-sidebar__panel--InsetBlockStart: var(--pf-v6-c-sidebar__panel--md--InsetBlockStart);
|
|
@@ -104,6 +108,7 @@
|
|
|
104
108
|
--pf-v6-c-sidebar__main--AlignItems: var(--pf-v6-c-sidebar--m-stack__main--AlignItems);
|
|
105
109
|
--pf-v6-c-sidebar__panel--Position: var(--pf-v6-c-sidebar--m-stack__panel--Position);
|
|
106
110
|
--pf-v6-c-sidebar__panel--InsetBlockStart: var(--pf-v6-c-sidebar--m-stack__panel--InsetBlockStart);
|
|
111
|
+
--pf-v6-c-sidebar__panel--BorderBlockEndWidth: var(--pf-v6-c-sidebar--m-stack__panel--BorderBlockEndWidth);
|
|
107
112
|
--pf-v6-c-sidebar__panel--BoxShadow: var(--pf-v6-c-sidebar--m-stack__panel--BoxShadow);
|
|
108
113
|
--pf-v6-c-sidebar__panel--FlexBasis: var(--pf-v6-c-sidebar__panel--m-stack--FlexBasis);
|
|
109
114
|
--pf-v6-c-sidebar__main--m-border--before--Display: none;
|
|
@@ -114,6 +119,7 @@
|
|
|
114
119
|
--pf-v6-c-sidebar__main--AlignItems: var(--pf-v6-c-sidebar--m-split__main--AlignItems);
|
|
115
120
|
--pf-v6-c-sidebar__panel--Position: var(--pf-v6-c-sidebar--m-split__panel--Position);
|
|
116
121
|
--pf-v6-c-sidebar__panel--InsetBlockStart: var(--pf-v6-c-sidebar--m-split__panel--InsetBlockStart);
|
|
122
|
+
--pf-v6-c-sidebar__panel--BorderBlockEndWidth: 0;
|
|
117
123
|
--pf-v6-c-sidebar__panel--BoxShadow: none;
|
|
118
124
|
--pf-v6-c-sidebar__panel--FlexBasis: var(--pf-v6-c-sidebar__panel--m-split--FlexBasis);
|
|
119
125
|
--pf-v6-c-sidebar__main--m-border--before--Display: var(--pf-v6-c-sidebar--m-split__main--m-border--before--Display);
|
|
@@ -145,6 +151,7 @@
|
|
|
145
151
|
padding-inline-start: var(--pf-v6-c-sidebar__panel--PaddingInlineStart);
|
|
146
152
|
padding-inline-end: var(--pf-v6-c-sidebar__panel--PaddingInlineEnd);
|
|
147
153
|
background-color: var(--pf-v6-c-sidebar__panel--BackgroundColor);
|
|
154
|
+
border-block-end: var(--pf-v6-c-sidebar__panel--BorderBlockEndWidth) solid var(--pf-v6-c-sidebar__panel--BorderBlockEndColor);
|
|
148
155
|
box-shadow: var(--pf-v6-c-sidebar__panel--BoxShadow);
|
|
149
156
|
}
|
|
150
157
|
.pf-v6-c-sidebar__panel.pf-m-padding {
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
--pf-v6-c-simple-list__item-link--hover--Color: var(--pf-t--global--text--color--subtle);
|
|
12
12
|
--pf-v6-c-simple-list__item-link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
13
13
|
--pf-v6-c-simple-list__item-link--BorderRadius: var(--pf-t--global--border--radius--tiny);
|
|
14
|
+
--pf-v6-c-simple-list__item-link--BorderWidth: var(--pf-t--global--border--width--action--plain--default);
|
|
15
|
+
--pf-v6-c-simple-list__item-link--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
16
|
+
--pf-v6-c-simple-list__item-link--hover--BorderWidth: var(--pf-t--global--border--width--action--plain--hover);
|
|
17
|
+
--pf-v6-c-simple-list__item-link--m-current--BorderWidth: var(--pf-t--global--border--width--action--plain--clicked);
|
|
14
18
|
--pf-v6-c-simple-list__item-link--m-link--Color: var(--pf-t--global--text--color--link--default);
|
|
15
19
|
--pf-v6-c-simple-list__item-link--m-link--m-current--Color: var(--pf-t--global--text--color--link--hover);
|
|
16
20
|
--pf-v6-c-simple-list__item-link--m-link--hover--Color: var(--pf-t--global--text--color--link--hover);
|
|
@@ -25,6 +29,7 @@
|
|
|
25
29
|
}
|
|
26
30
|
|
|
27
31
|
.pf-v6-c-simple-list__item-link {
|
|
32
|
+
position: relative;
|
|
28
33
|
display: block;
|
|
29
34
|
width: 100%;
|
|
30
35
|
padding-block-start: var(--pf-v6-c-simple-list__item-link--PaddingBlockStart);
|
|
@@ -39,6 +44,14 @@
|
|
|
39
44
|
border: none;
|
|
40
45
|
border-radius: var(--pf-v6-c-simple-list__item-link--BorderRadius);
|
|
41
46
|
}
|
|
47
|
+
.pf-v6-c-simple-list__item-link::after {
|
|
48
|
+
position: absolute;
|
|
49
|
+
inset: 0;
|
|
50
|
+
pointer-events: none;
|
|
51
|
+
content: "";
|
|
52
|
+
border: var(--pf-v6-c-simple-list__item-link--BorderWidth) solid var(--pf-v6-c-simple-list__item-link--BorderColor);
|
|
53
|
+
border-radius: inherit;
|
|
54
|
+
}
|
|
42
55
|
.pf-v6-c-simple-list__item-link.pf-m-link {
|
|
43
56
|
--pf-v6-c-simple-list__item-link--Color: var(--pf-v6-c-simple-list__item-link--m-link--Color);
|
|
44
57
|
--pf-v6-c-simple-list__item-link--hover--Color: var(--pf-v6-c-simple-list__item-link--m-link--m-current--Color);
|
|
@@ -47,11 +60,13 @@
|
|
|
47
60
|
.pf-v6-c-simple-list__item-link:is(:hover, :focus) {
|
|
48
61
|
--pf-v6-c-simple-list__item-link--BackgroundColor: var(--pf-v6-c-simple-list__item-link--hover--BackgroundColor);
|
|
49
62
|
--pf-v6-c-simple-list__item-link--Color: var(--pf-v6-c-simple-list__item-link--hover--Color);
|
|
63
|
+
--pf-v6-c-simple-list__item-link--BorderWidth: var(--pf-v6-c-simple-list__item-link--hover--BorderWidth);
|
|
50
64
|
text-decoration-line: none;
|
|
51
65
|
}
|
|
52
66
|
.pf-v6-c-simple-list__item-link.pf-m-current {
|
|
53
67
|
--pf-v6-c-simple-list__item-link--BackgroundColor: var(--pf-v6-c-simple-list__item-link--m-current--BackgroundColor);
|
|
54
68
|
--pf-v6-c-simple-list__item-link--Color: var(--pf-v6-c-simple-list__item-link--m-current--Color);
|
|
69
|
+
--pf-v6-c-simple-list__item-link--BorderWidth: var(--pf-v6-c-simple-list__item-link--m-current--BorderWidth);
|
|
55
70
|
}
|
|
56
71
|
|
|
57
72
|
.pf-v6-c-simple-list__title {
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
--pf-v6-c-slider__rail-track--Height: 0.25rem;
|
|
7
7
|
--pf-v6-c-slider__rail-track--before--base--BackgroundColor: var(--pf-t--global--color--nonstatus--gray--default);
|
|
8
8
|
--pf-v6-c-slider__rail-track--before--fill--BackgroundColor: var(--pf-t--global--border--color--hover);
|
|
9
|
+
--pf-v6-c-slider__rail-track--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
10
|
+
--pf-v6-c-slider__rail-track--before--BorderColor: transparent;
|
|
9
11
|
--pf-v6-c-slider__rail-track--before--BorderRadius: var(--pf-t--global--border--radius--tiny);
|
|
10
12
|
--pf-v6-c-slider__rail-track--before--fill--BackgroundColor--gradient-stop: var(--pf-v6-c-slider--value);
|
|
11
13
|
--pf-v6-c-slider__steps--FontSize: var(--pf-t--global--font--size--sm);
|
|
@@ -15,6 +17,8 @@
|
|
|
15
17
|
--pf-v6-c-slider__step-tick--Height: 0.25rem;
|
|
16
18
|
--pf-v6-c-slider__step-tick--BackgroundColor: var(--pf-t--global--icon--color--nonstatus--on-gray--default);
|
|
17
19
|
--pf-v6-c-slider__step-tick--TranslateX: -50%;
|
|
20
|
+
--pf-v6-c-slider__step-tick--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
21
|
+
--pf-v6-c-slider__step-tick--BorderColor: transparent;
|
|
18
22
|
--pf-v6-c-slider__step-tick--BorderRadius: var(--pf-t--global--border--radius--sharp);
|
|
19
23
|
--pf-v6-c-slider__step--m-active__slider-tick--BackgroundColor: var(--pf-t--global--icon--color--on-brand--default);
|
|
20
24
|
--pf-v6-c-slider__step--first-child__step-tick--TranslateX: 0;
|
|
@@ -30,6 +34,8 @@
|
|
|
30
34
|
--pf-v6-c-slider__thumb--BackgroundColor: var(--pf-t--global--color--brand--default);
|
|
31
35
|
--pf-v6-c-slider__thumb--TranslateX: -50%;
|
|
32
36
|
--pf-v6-c-slider__thumb--TranslateY: -50%;
|
|
37
|
+
--pf-v6-c-slider__thumb--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
38
|
+
--pf-v6-c-slider__thumb--BorderColor: transparent;
|
|
33
39
|
--pf-v6-c-slider__thumb--BorderRadius: var(--pf-t--global--border--radius--large);
|
|
34
40
|
--pf-v6-c-slider__thumb--BoxShadow--base:
|
|
35
41
|
0 0 0 2px var(--pf-t--global--background--color--primary--default),
|
|
@@ -99,6 +105,7 @@
|
|
|
99
105
|
inset: 0;
|
|
100
106
|
content: "";
|
|
101
107
|
background: linear-gradient(to var(--pf-v6-c-slider__rail-track--before--fill--direction), var(--pf-v6-c-slider__rail-track--before--fill--BackgroundColor), var(--pf-v6-c-slider__rail-track--before--fill--BackgroundColor) var(--pf-v6-c-slider__rail-track--before--fill--BackgroundColor--gradient-stop), var(--pf-v6-c-slider__rail-track--before--base--BackgroundColor) var(--pf-v6-c-slider__rail-track--before--fill--BackgroundColor--gradient-stop));
|
|
108
|
+
border: var(--pf-v6-c-slider__rail-track--before--BorderWidth) solid var(--pf-v6-c-slider__rail-track--before--BorderColor);
|
|
102
109
|
border-radius: var(--pf-v6-c-slider__rail-track--before--BorderRadius);
|
|
103
110
|
}
|
|
104
111
|
|
|
@@ -134,6 +141,7 @@
|
|
|
134
141
|
width: var(--pf-v6-c-slider__step-tick--Width);
|
|
135
142
|
height: var(--pf-v6-c-slider__step-tick--Height);
|
|
136
143
|
background-color: var(--pf-v6-c-slider__step-tick--BackgroundColor);
|
|
144
|
+
border: var(--pf-v6-c-slider__step-tick--BorderWidth) solid var(--pf-v6-c-slider__step-tick--BorderColor);
|
|
137
145
|
border-radius: var(--pf-v6-c-slider__step-tick--BorderRadius);
|
|
138
146
|
}
|
|
139
147
|
:where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-slider__step-tick {
|
|
@@ -159,6 +167,7 @@
|
|
|
159
167
|
height: var(--pf-v6-c-slider__thumb--Height);
|
|
160
168
|
cursor: pointer;
|
|
161
169
|
background-color: var(--pf-v6-c-slider__thumb--BackgroundColor);
|
|
170
|
+
border: var(--pf-v6-c-slider__thumb--BorderWidth) solid var(--pf-v6-c-slider__thumb--BorderColor);
|
|
162
171
|
border-radius: var(--pf-v6-c-slider__thumb--BorderRadius);
|
|
163
172
|
box-shadow: var(--pf-v6-c-slider__thumb--BoxShadow);
|
|
164
173
|
}
|
|
@@ -10,11 +10,13 @@
|
|
|
10
10
|
--pf-v6-c-switch--Height: auto;
|
|
11
11
|
--pf-v6-c-switch__input--checked__toggle--BackgroundColor: var(--pf-t--global--color--brand--default);
|
|
12
12
|
--pf-v6-c-switch__input--checked__toggle--before--TranslateX: calc(100% + var(--pf-v6-c-switch__toggle-icon--Offset));
|
|
13
|
-
--pf-v6-c-switch__input--checked__toggle--
|
|
13
|
+
--pf-v6-c-switch__input--checked__toggle--BorderColor: transparent;
|
|
14
|
+
--pf-v6-c-switch__input--checked__toggle--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
14
15
|
--pf-v6-c-switch__input--checked__label--Color: var(--pf-t--global--text--color--regular);
|
|
15
16
|
--pf-v6-c-switch__input--not-checked__label--Color: var(--pf-t--global--text--color--subtle);
|
|
16
17
|
--pf-v6-c-switch__input--disabled__label--Color: var(--pf-t--global--text--color--disabled);
|
|
17
18
|
--pf-v6-c-switch__input--disabled__toggle--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
|
|
19
|
+
--pf-v6-c-switch__input--disabled__toggle--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
18
20
|
--pf-v6-c-switch__input--checked__toggle--before--BackgroundColor: var(--pf-t--global--icon--color--inverse);
|
|
19
21
|
--pf-v6-c-switch__input--not-checked__toggle--before--BackgroundColor: var(--pf-t--global--icon--color--subtle);
|
|
20
22
|
--pf-v6-c-switch__input--disabled__toggle--before--BackgroundColor: var(--pf-t--global--icon--color--on-disabled);
|
|
@@ -29,6 +31,7 @@
|
|
|
29
31
|
--pf-v6-c-switch__toggle--before--Width: calc(var(--pf-v6-c-switch--FontSize) - var(--pf-v6-c-switch__toggle-icon--Offset));
|
|
30
32
|
--pf-v6-c-switch__toggle--before--Height: var(--pf-v6-c-switch__toggle--before--Width);
|
|
31
33
|
--pf-v6-c-switch__toggle--before--InsetInlineStart: calc((var(--pf-v6-c-switch__toggle--Height) - var(--pf-v6-c-switch__toggle--before--Height)) / 2);
|
|
34
|
+
--pf-v6-c-switch__toggle--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
32
35
|
--pf-v6-c-switch__toggle--before--BorderRadius: var(--pf-t--global--border--radius--large);
|
|
33
36
|
--pf-v6-c-switch__toggle--before--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
34
37
|
--pf-v6-c-switch__toggle--before--TransitionDuration: var(--pf-t--global--motion--duration--md);
|
|
@@ -70,6 +73,7 @@
|
|
|
70
73
|
}
|
|
71
74
|
.pf-v6-c-switch__input:checked ~ .pf-v6-c-switch__toggle {
|
|
72
75
|
--pf-v6-c-switch__toggle--BorderWidth: var(--pf-v6-c-switch__input--checked__toggle--BorderWidth);
|
|
76
|
+
--pf-v6-c-switch__toggle--BorderColor: var(--pf-v6-c-switch__input--checked__toggle--BorderColor);
|
|
73
77
|
background-color: var(--pf-v6-c-switch__input--checked__toggle--BackgroundColor);
|
|
74
78
|
}
|
|
75
79
|
.pf-v6-c-switch__input:checked ~ .pf-v6-c-switch__toggle::before {
|
|
@@ -95,6 +99,7 @@
|
|
|
95
99
|
}
|
|
96
100
|
.pf-v6-c-switch__input:disabled ~ .pf-v6-c-switch__toggle {
|
|
97
101
|
--pf-v6-c-switch__toggle-icon--Color: var(--pf-v6-c-switch__input--disabled__toggle-icon--Color);
|
|
102
|
+
--pf-v6-c-switch__toggle--BorderColor: var(--pf-v6-c-switch__input--disabled__toggle--BorderColor);
|
|
98
103
|
cursor: not-allowed;
|
|
99
104
|
background-color: var(--pf-v6-c-switch__input--disabled__toggle--BackgroundColor);
|
|
100
105
|
}
|
|
@@ -119,6 +124,7 @@
|
|
|
119
124
|
height: var(--pf-v6-c-switch__toggle--before--Height);
|
|
120
125
|
content: "";
|
|
121
126
|
background-color: var(--pf-v6-c-switch__input--not-checked__toggle--before--BackgroundColor);
|
|
127
|
+
border: var(--pf-v6-c-switch__toggle--before--BorderWidth) solid transparent;
|
|
122
128
|
border-radius: var(--pf-v6-c-switch__toggle--before--BorderRadius);
|
|
123
129
|
transition: var(--pf-v6-c-switch__toggle--before--Transition);
|
|
124
130
|
transform: translateY(-50%);
|
|
@@ -61,6 +61,9 @@
|
|
|
61
61
|
--pf-v6-c-table__button--Color: var(--pf-t--global--text--color--regular);
|
|
62
62
|
--pf-v6-c-table__button--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
|
63
63
|
--pf-v6-c-table__button--OutlineOffset: calc(var(--pf-t--global--border--width--strong) * -1);
|
|
64
|
+
--pf-v6-c-table__button--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
65
|
+
--pf-v6-c-table__button--BorderWidth: var(--pf-t--global--border--width--action--plain--default);
|
|
66
|
+
--pf-v6-c-table__button--hover--BorderWidth: var(--pf-t--global--border--width--action--plain--hover);
|
|
64
67
|
--pf-v6-c-table__button--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
65
68
|
--pf-v6-c-table__button--hover--Color: var(--pf-t--global--text--color--regular);
|
|
66
69
|
--pf-v6-c-table__button--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
@@ -90,6 +93,8 @@
|
|
|
90
93
|
--pf-v6-c-table__expandable-row-content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
91
94
|
--pf-v6-c-table__expandable-row-content--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
92
95
|
--pf-v6-c-table__expandable-row-content--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
96
|
+
--pf-v6-c-table__expandable-row-content--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
97
|
+
--pf-v6-c-table__expandable-row-content--BorderWidth: 0;
|
|
93
98
|
--pf-v6-c-table__control-row--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
94
99
|
--pf-v6-c-table__control-row--BorderBlockEndWidth: var(--pf-t--global--border--width--divider--default);
|
|
95
100
|
--pf-v6-c-table__control-row__tbody--BorderBlockEndColor: var(--pf-t--global--border--color--default);
|
|
@@ -111,10 +116,12 @@
|
|
|
111
116
|
--pf-v6-c-table__compound-expansion-toggle__button--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
112
117
|
--pf-v6-c-table__compound-expansion-toggle__button--expanded--BackgroundColor: var(--pf-t--global--background--color--action--plain--clicked);
|
|
113
118
|
--pf-v6-c-table__compound-expansion-toggle__button--after--BorderColor: var(--pf-t--global--border--color--clicked);
|
|
119
|
+
--pf-v6-c-table__compound-expansion-toggle__button--after--BorderRadius: inherit;
|
|
114
120
|
--pf-v6-c-table__compound-expansion-toggle__button--after--BorderBlockStartWidth: 0;
|
|
115
121
|
--pf-v6-c-table__compound-expansion-toggle__button--hover--after--BorderBlockStartWidth: var(--pf-t--global--border--width--strong);
|
|
116
122
|
--pf-v6-c-table__compound-expansion-toggle--m-expanded__button--after--BorderBlockStartWidth: var(--pf-t--global--border--width--strong);
|
|
117
123
|
--pf-v6-c-table--compound-expansion--m-expanded--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
|
|
124
|
+
--pf-v6-c-table--compound-expansion--m-expanded--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
118
125
|
--pf-v6-c-table--m-compact__th--PaddingBlockStart: calc(var(--pf-t--global--spacer--sm) + var(--pf-t--global--spacer--xs));
|
|
119
126
|
--pf-v6-c-table--m-compact__th--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
120
127
|
--pf-v6-c-table--m-compact--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
@@ -526,6 +533,7 @@
|
|
|
526
533
|
}
|
|
527
534
|
|
|
528
535
|
.pf-v6-c-table__button {
|
|
536
|
+
position: relative;
|
|
529
537
|
width: auto;
|
|
530
538
|
padding-block-start: var(--pf-v6-c-table__button--PaddingBlockStart);
|
|
531
539
|
padding-block-end: var(--pf-v6-c-table__button--PaddingBlockEnd);
|
|
@@ -544,6 +552,14 @@
|
|
|
544
552
|
border-radius: var(--pf-v6-c-table__button--BorderRadius);
|
|
545
553
|
outline-offset: var(--pf-v6-c-table__button--OutlineOffset);
|
|
546
554
|
}
|
|
555
|
+
.pf-v6-c-table__button::after {
|
|
556
|
+
position: absolute;
|
|
557
|
+
inset: 0;
|
|
558
|
+
pointer-events: none;
|
|
559
|
+
content: "";
|
|
560
|
+
border: var(--pf-v6-c-table__button--BorderWidth) solid var(--pf-v6-c-table__button--BorderColor);
|
|
561
|
+
border-radius: inherit;
|
|
562
|
+
}
|
|
547
563
|
.pf-v6-c-table .pf-v6-c-table .pf-v6-c-table__button {
|
|
548
564
|
margin-block-end: 0;
|
|
549
565
|
}
|
|
@@ -719,6 +735,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
719
735
|
content: "";
|
|
720
736
|
border: 0;
|
|
721
737
|
border-block-start: var(--pf-v6-c-table__compound-expansion-toggle__button--after--BorderBlockStartWidth) solid var(--pf-v6-c-table__compound-expansion-toggle__button--after--BorderColor);
|
|
738
|
+
border-radius: var(--pf-v6-c-table__compound-expansion-toggle__button--after--BorderRadius);
|
|
722
739
|
}
|
|
723
740
|
.pf-v6-c-table__compound-expansion-toggle:hover, .pf-v6-c-table__compound-expansion-toggle:focus-within {
|
|
724
741
|
--pf-v6-c-table__compound-expansion-toggle__button--BackgroundColor: var(--pf-v6-c-table__compound-expansion-toggle__button--hover--BackgroundColor);
|
|
@@ -753,6 +770,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
753
770
|
--pf-v6-c-table__sort-indicator--Color: var(--pf-v6-c-table__sort__button--hover__sort-indicator--Color);
|
|
754
771
|
--pf-v6-c-table__sort__button__text--Color: var(--pf-v6-c-table__sort__button--hover__text--Color);
|
|
755
772
|
--pf-v6-c-table__button--BackgroundColor: var(--pf-v6-c-table__button--hover--BackgroundColor);
|
|
773
|
+
--pf-v6-c-table__button--BorderWidth: var(--pf-v6-c-table__button--hover--BorderWidth);
|
|
756
774
|
}
|
|
757
775
|
.pf-v6-c-table__sort .pf-v6-c-table__button .pf-v6-c-table__text {
|
|
758
776
|
color: var(--pf-v6-c-table__sort__button__text--Color);
|
|
@@ -802,16 +820,26 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
802
820
|
border-radius: 0;
|
|
803
821
|
}
|
|
804
822
|
.pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content {
|
|
823
|
+
position: relative;
|
|
805
824
|
padding-block-start: var(--pf-v6-c-table__expandable-row-content--PaddingBlockStart);
|
|
806
825
|
padding-block-end: var(--pf-v6-c-table__expandable-row-content--PaddingBlockEnd);
|
|
807
826
|
padding-inline-start: var(--pf-v6-c-table__expandable-row-content--PaddingInlineStart);
|
|
808
827
|
padding-inline-end: var(--pf-v6-c-table__expandable-row-content--PaddingInlineEnd);
|
|
809
828
|
background-color: var(--pf-v6-c-table__expandable-row-content--BackgroundColor);
|
|
829
|
+
border: 0;
|
|
810
830
|
border-radius: var(--pf-v6-c-table__expandable-row-content--BorderRadius);
|
|
811
831
|
}
|
|
812
832
|
.pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content.pf-m-no-background {
|
|
813
833
|
background-color: transparent;
|
|
814
834
|
}
|
|
835
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__td:not(.pf-m-no-padding) > .pf-v6-c-table__expandable-row-content::after {
|
|
836
|
+
position: absolute;
|
|
837
|
+
inset: 0;
|
|
838
|
+
pointer-events: none;
|
|
839
|
+
content: "";
|
|
840
|
+
border: var(--pf-v6-c-table__expandable-row-content--BorderWidth) solid var(--pf-v6-c-table__expandable-row-content--BorderColor);
|
|
841
|
+
border-radius: inherit;
|
|
842
|
+
}
|
|
815
843
|
.pf-v6-c-table__expandable-row.pf-m-expanded {
|
|
816
844
|
border-block-end-color: var(--pf-v6-c-table__expandable-row--m-expanded--BorderBlockEndColor);
|
|
817
845
|
border-block-end-width: var(--pf-v6-c-table--border-width--base);
|
|
@@ -869,6 +897,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
869
897
|
vertical-align: top;
|
|
870
898
|
}
|
|
871
899
|
.pf-v6-c-table__tbody .pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row.pf-m-expanded {
|
|
900
|
+
--pf-v6-c-table__expandable-row-content--BorderWidth: var(--pf-v6-c-table--compound-expansion--m-expanded--BorderWidth);
|
|
872
901
|
background-color: var(--pf-v6-c-table--compound-expansion--m-expanded--BackgroundColor);
|
|
873
902
|
}
|
|
874
903
|
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
--pf-v6-c-tabs--before--BorderBlockEndWidth: var(--pf-v6-c-tabs--before--border-width--base);
|
|
19
19
|
--pf-v6-c-tabs--before--BorderInlineStartWidth: 0;
|
|
20
20
|
--pf-v6-c-tabs--m-vertical--inset: var(--pf-t--global--spacer--sm);
|
|
21
|
-
--pf-v6-c-tabs--m-page-insets--inset: var(--pf-t--global--spacer--
|
|
21
|
+
--pf-v6-c-tabs--m-page-insets--inset: calc(var(--pf-t--global--spacer--lg) - var(--pf-t--global--border--width--main--default));
|
|
22
22
|
--pf-v6-c-tabs--m-vertical--Width: 100%;
|
|
23
23
|
--pf-v6-c-tabs--m-vertical--MaxWidth: 15.625rem;
|
|
24
24
|
--pf-v6-c-tabs--m-vertical--m-box--inset: var(--pf-t--global--spacer--md);
|
|
@@ -46,6 +46,10 @@
|
|
|
46
46
|
--pf-v6-c-tabs__link--FontSize: var(--pf-t--global--font--size--sm);
|
|
47
47
|
--pf-v6-c-tabs__link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
|
48
48
|
--pf-v6-c-tabs__link--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
49
|
+
--pf-v6-c-tabs__link--BorderWidth: var(--pf-t--global--border--width--action--plain--hover);
|
|
50
|
+
--pf-v6-c-tabs__link--BorderColor: transparent;
|
|
51
|
+
--pf-v6-c-tabs__link--hover--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
52
|
+
--pf-v6-c-tabs__link--disabled--BorderColor: transparent;
|
|
49
53
|
--pf-v6-c-tabs__link--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
50
54
|
--pf-v6-c-tabs__link--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
51
55
|
--pf-v6-c-tabs__link--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
@@ -81,11 +85,15 @@
|
|
|
81
85
|
--pf-v6-c-tabs__link--before--BorderInlineEndWidth: 0;
|
|
82
86
|
--pf-v6-c-tabs__link--before--BorderBlockEndWidth: 0;
|
|
83
87
|
--pf-v6-c-tabs__link--before--BorderInlineStartWidth: 0;
|
|
84
|
-
--pf-v6-c-
|
|
88
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartColor: var(--pf-t--global--border--color--high-contrast);
|
|
89
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
90
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
91
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
85
92
|
--pf-v6-c-tabs__link--disabled--before--BorderInlineEndWidth: 0;
|
|
86
93
|
--pf-v6-c-tabs__link--disabled--before--BorderBlockEndWidth: var(--pf-v6-c-tabs--before--border-width--base);
|
|
87
94
|
--pf-v6-c-tabs__link--disabled--before--BorderInlineStartWidth: 0;
|
|
88
95
|
--pf-v6-c-tabs__link--after--InsetBlockStart: auto;
|
|
96
|
+
--pf-v6-c-tabs__link--after--InsetInlineStart: 0;
|
|
89
97
|
--pf-v6-c-tabs__link--after--InsetInlineEnd: 0;
|
|
90
98
|
--pf-v6-c-tabs__link--after--InsetBlockEnd: 0;
|
|
91
99
|
--pf-v6-c-tabs__link--after--BorderColor: var(--pf-t--global--border--color--default);
|
|
@@ -241,6 +249,10 @@
|
|
|
241
249
|
.pf-v6-c-tabs.pf-m-box .pf-v6-c-tabs__item.pf-m-current {
|
|
242
250
|
--pf-v6-c-tabs__link--BackgroundColor: var(--pf-v6-c-tabs__item--m-current__link--BackgroundColor);
|
|
243
251
|
--pf-v6-c-tabs__link--before--BorderBlockEndColor: var(--pf-v6-c-tabs__link--BackgroundColor);
|
|
252
|
+
--pf-v6-c-tabs__link--before--BorderInlineStartColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartColor);
|
|
253
|
+
--pf-v6-c-tabs__link--before--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartWidth);
|
|
254
|
+
--pf-v6-c-tabs__link--before--BorderInlineEndColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndColor);
|
|
255
|
+
--pf-v6-c-tabs__link--before--BorderInlineEndWidth: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndWidth);
|
|
244
256
|
}
|
|
245
257
|
.pf-v6-c-tabs.pf-m-box.pf-m-scrollable .pf-v6-c-tabs__item.pf-m-current:first-child .pf-v6-c-tabs__link::before {
|
|
246
258
|
inset-inline-start: calc(var(--pf-v6-c-tabs__link--before--border-width--base) * -1);
|
|
@@ -248,9 +260,6 @@
|
|
|
248
260
|
.pf-v6-c-tabs.pf-m-box.pf-m-scrollable .pf-v6-c-tabs__scroll-button:nth-of-type(2)::before {
|
|
249
261
|
inset-inline-start: calc(var(--pf-v6-c-tabs__link--before--border-width--base) * -1);
|
|
250
262
|
}
|
|
251
|
-
.pf-v6-c-tabs.pf-m-box .pf-v6-c-tabs__item.pf-m-current + .pf-v6-c-tabs__item {
|
|
252
|
-
--pf-v6-c-tabs__link--before--InsetInlineStart: 0;
|
|
253
|
-
}
|
|
254
263
|
.pf-v6-c-tabs.pf-m-box.pf-m-secondary {
|
|
255
264
|
--pf-v6-c-tabs__item--BackgroundColor: var(--pf-v6-c-tabs--m-box--m-secondary__item--BackgroundColor);
|
|
256
265
|
--pf-v6-c-tabs__item--m-current--BackgroundColor: var(--pf-v6-c-tabs--m-box--m-secondary__item--m-current--BackgroundColor);
|
|
@@ -268,7 +277,6 @@
|
|
|
268
277
|
--pf-v6-c-tabs__item--PaddingInlineEnd: var(--pf-v6-c-tabs--m-vertical__item--PaddingInlineEnd);
|
|
269
278
|
--pf-v6-c-tabs__link--PaddingInlineStart: var(--pf-v6-c-tabs--m-vertical__link--PaddingInlineStart);
|
|
270
279
|
--pf-v6-c-tabs__link--PaddingInlineEnd: var(--pf-v6-c-tabs--m-vertical__link--PaddingInlineEnd);
|
|
271
|
-
--pf-v6-c-tabs__link--before--InsetInlineStart: 0;
|
|
272
280
|
--pf-v6-c-tabs__link--disabled--before--BorderBlockEndWidth: 0;
|
|
273
281
|
--pf-v6-c-tabs__link--disabled--before--BorderInlineStartWidth: var(--pf-v6-c-tabs--before--border-width--base);
|
|
274
282
|
--pf-v6-c-tabs__link--after--InsetBlockStart: 0;
|
|
@@ -545,6 +553,7 @@
|
|
|
545
553
|
color: var(--pf-v6-c-tabs__link--Color);
|
|
546
554
|
text-decoration-line: none;
|
|
547
555
|
background-color: var(--pf-v6-c-tabs__link--BackgroundColor);
|
|
556
|
+
border: var(--pf-v6-c-tabs__link--BorderWidth) solid var(--pf-v6-c-tabs__link--BorderColor);
|
|
548
557
|
border-radius: var(--pf-v6-c-tabs__link--BorderRadius);
|
|
549
558
|
transition: background-color var(--pf-v6-c-tabs__link--TransitionDuration--background-color) var(--pf-v6-c-tabs__link--TransitionTimingFunction--background-color);
|
|
550
559
|
}
|
|
@@ -567,7 +576,7 @@
|
|
|
567
576
|
.pf-v6-c-tabs__item.pf-m-action::after, .pf-v6-c-tabs__link::after {
|
|
568
577
|
inset-block-start: var(--pf-v6-c-tabs__link--after--InsetBlockStart);
|
|
569
578
|
inset-block-end: var(--pf-v6-c-tabs__link--after--InsetBlockEnd);
|
|
570
|
-
inset-inline-start: var(--pf-v6-c-tabs__link--before--InsetInlineStart);
|
|
579
|
+
inset-inline-start: var(--pf-v6-c-tabs__link--before--InsetInlineStart, var(--pf-v6-c-tabs__link--after--InsetInlineStart));
|
|
571
580
|
inset-inline-end: var(--pf-v6-c-tabs__link--after--InsetInlineEnd);
|
|
572
581
|
border-color: var(--pf-v6-c-tabs__link--after--BorderColor);
|
|
573
582
|
border-block-start-width: var(--pf-v6-c-tabs__link--after--BorderBlockStartWidth);
|
|
@@ -578,6 +587,7 @@
|
|
|
578
587
|
|
|
579
588
|
.pf-v6-c-tabs__link:where(:hover, :focus) {
|
|
580
589
|
--pf-v6-c-tabs__link--BackgroundColor: var(--pf-v6-c-tabs__link--hover--BackgroundColor);
|
|
590
|
+
--pf-v6-c-tabs__link--BorderColor: var(--pf-v6-c-tabs__link--hover--BorderColor);
|
|
581
591
|
}
|
|
582
592
|
.pf-v6-c-tabs__link:disabled, .pf-v6-c-tabs__link.pf-m-disabled {
|
|
583
593
|
pointer-events: none;
|
|
@@ -592,6 +602,7 @@
|
|
|
592
602
|
|
|
593
603
|
.pf-v6-c-tabs__link:is(:disabled, .pf-m-disabled, .pf-m-aria-disabled) {
|
|
594
604
|
--pf-v6-c-tabs__link--BackgroundColor: var(--pf-v6-c-tabs__link--disabled--BackgroundColor);
|
|
605
|
+
--pf-v6-c-tabs__link--BorderColor: var(--pf-v6-c-tabs__link--disabled--BorderColor);
|
|
595
606
|
}
|
|
596
607
|
.pf-v6-c-tabs__item.pf-m-action.pf-m-disabled {
|
|
597
608
|
--pf-v6-c-tabs__link--BackgroundColor: transparent;
|
|
@@ -128,6 +128,9 @@
|
|
|
128
128
|
.pf-v6-c-text-input-group:where(.pf-m-success, .pf-m-warning, .pf-m-error) {
|
|
129
129
|
--pf-v6-c-text-input-group__text-input--PaddingInlineEnd: var(--pf-v6-c-text-input-group--status__text-input--PaddingInlineEnd);
|
|
130
130
|
}
|
|
131
|
+
.pf-v6-c-text-input-group:where(.pf-m-success, .pf-m-warning, .pf-m-error) .pf-v6-c-text-input-group__text {
|
|
132
|
+
--pf-v6-c-text-input-group__text--Position: relative;
|
|
133
|
+
}
|
|
131
134
|
.pf-v6-c-text-input-group:has(> .pf-v6-c-text-input-group__utilities) {
|
|
132
135
|
--pf-v6-c-text-input-group__icon--m-status--InsetInlineEnd: var(--pf-v6-c-text-input-group--utilities--icon--m-status--InsetInlineEnd);
|
|
133
136
|
--pf-v6-c-text-input-group--status__text-input--PaddingInlineEnd: var(--pf-v6-c-text-input-group--utilities--status__text-input--PaddingInlineEnd);
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
--pf-v6-c-toggle-group__button--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
|
|
12
12
|
--pf-v6-c-toggle-group__button--hover--ZIndex: var(--pf-t--global--z-index--xs);
|
|
13
13
|
--pf-v6-c-toggle-group__button--hover--before--BorderColor: var(--pf-t--global--border--color--default);
|
|
14
|
+
--pf-v6-c-toggle-group__button--hover--after--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
14
15
|
--pf-v6-c-toggle-group__button--before--BorderWidth: var(--pf-t--global--border--width--control--default);
|
|
15
16
|
--pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-t--global--border--color--default);
|
|
16
17
|
--pf-v6-c-toggle-group__item--item--MarginInlineStart: calc(-1 * var(--pf-t--global--border--width--control--default));
|
|
@@ -22,12 +23,13 @@
|
|
|
22
23
|
--pf-v6-c-toggle-group__button--m-selected--BackgroundColor: var(--pf-t--global--color--brand--default);
|
|
23
24
|
--pf-v6-c-toggle-group__button--m-selected--Color: var(--pf-t--global--text--color--on-brand--default);
|
|
24
25
|
--pf-v6-c-toggle-group__button--m-selected--before--BorderColor: var(--pf-t--global--border--color--clicked);
|
|
25
|
-
--pf-v6-c-toggle-group__button--m-selected-selected--before--BorderInlineStartColor: var(--pf-t--global--border--color--
|
|
26
|
+
--pf-v6-c-toggle-group__button--m-selected-selected--before--BorderInlineStartColor: var(--pf-t--global--border--color--alt);
|
|
26
27
|
--pf-v6-c-toggle-group__button--m-selected--ZIndex: var(--pf-t--global--z-index--xs);
|
|
28
|
+
--pf-v6-c-toggle-group__button--m-selected--after--BorderWidth: var(--pf-t--global--border--width--high-contrast--strong);
|
|
27
29
|
--pf-v6-c-toggle-group__button--disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
|
|
28
30
|
--pf-v6-c-toggle-group__button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
|
29
31
|
--pf-v6-c-toggle-group__button--disabled--before--BorderColor: var(--pf-t--global--border--color--disabled);
|
|
30
|
-
--pf-v6-c-toggle-group__button--disabled-disabled--before--BorderInlineStartColor: var(--pf-t--global--border--color--
|
|
32
|
+
--pf-v6-c-toggle-group__button--disabled-disabled--before--BorderInlineStartColor: var(--pf-t--global--border--color--disabled);
|
|
31
33
|
--pf-v6-c-toggle-group__button--disabled--ZIndex: var(--pf-t--global--z-index--xs);
|
|
32
34
|
--pf-v6-c-toggle-group--m-compact__button--PaddingBlockStart: 0;
|
|
33
35
|
--pf-v6-c-toggle-group--m-compact__button--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
@@ -50,11 +52,11 @@
|
|
|
50
52
|
.pf-v6-c-toggle-group__item + .pf-v6-c-toggle-group__item {
|
|
51
53
|
margin-inline-start: var(--pf-v6-c-toggle-group__item--item--MarginInlineStart);
|
|
52
54
|
}
|
|
53
|
-
.pf-v6-c-toggle-group__item:first-child .pf-v6-c-toggle-group__button
|
|
55
|
+
.pf-v6-c-toggle-group__item:first-child .pf-v6-c-toggle-group__button {
|
|
54
56
|
border-start-start-radius: var(--pf-v6-c-toggle-group__item--first-child__button--BorderStartStartRadius);
|
|
55
57
|
border-end-start-radius: var(--pf-v6-c-toggle-group__item--first-child__button--BorderEndStartRadius);
|
|
56
58
|
}
|
|
57
|
-
.pf-v6-c-toggle-group__item:last-child .pf-v6-c-toggle-group__button
|
|
59
|
+
.pf-v6-c-toggle-group__item:last-child .pf-v6-c-toggle-group__button {
|
|
58
60
|
border-start-end-radius: var(--pf-v6-c-toggle-group__item--last-child__button--BorderStartEndRadius);
|
|
59
61
|
border-end-end-radius: var(--pf-v6-c-toggle-group__item--last-child__button--BorderEndEndRadius);
|
|
60
62
|
}
|
|
@@ -73,25 +75,31 @@
|
|
|
73
75
|
background-color: var(--pf-v6-c-toggle-group__button--BackgroundColor);
|
|
74
76
|
border: 0;
|
|
75
77
|
}
|
|
76
|
-
.pf-v6-c-toggle-group__button::before {
|
|
78
|
+
.pf-v6-c-toggle-group__button::before, .pf-v6-c-toggle-group__button::after {
|
|
77
79
|
position: absolute;
|
|
78
|
-
inset
|
|
79
|
-
inset-block-end: 0;
|
|
80
|
-
inset-inline-start: 0;
|
|
81
|
-
inset-inline-end: 0;
|
|
80
|
+
inset: 0;
|
|
82
81
|
pointer-events: none;
|
|
83
82
|
content: "";
|
|
84
83
|
border-style: solid;
|
|
84
|
+
border-radius: inherit;
|
|
85
|
+
}
|
|
86
|
+
.pf-v6-c-toggle-group__button::before {
|
|
85
87
|
border-width: var(--pf-v6-c-toggle-group__button--before--BorderWidth);
|
|
86
88
|
border-block-start-color: var(--pf-v6-c-toggle-group__button--before--BorderBlockStartColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
|
|
87
89
|
border-block-end-color: var(--pf-v6-c-toggle-group__button--before--BorderBlockEndColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
|
|
88
90
|
border-inline-start-color: var(--pf-v6-c-toggle-group__button--before--BorderInlineStartColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
|
|
89
91
|
border-inline-end-color: var(--pf-v6-c-toggle-group__button--before--BorderInlineEndColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
|
|
90
92
|
}
|
|
93
|
+
.pf-v6-c-toggle-group__button::after {
|
|
94
|
+
inset: var(--pf-v6-c-toggle-group__button--before--BorderWidth);
|
|
95
|
+
border-color: var(--pf-v6-c-toggle-group__button--after--BorderColor, transparent);
|
|
96
|
+
border-width: var(--pf-v6-c-toggle-group__button--after--BorderWidth, 0);
|
|
97
|
+
}
|
|
91
98
|
.pf-v6-c-toggle-group__button:is(:hover, :focus) {
|
|
92
99
|
--pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--hover--BackgroundColor);
|
|
93
100
|
--pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--hover--ZIndex);
|
|
94
101
|
--pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--hover--before--BorderColor);
|
|
102
|
+
--pf-v6-c-toggle-group__button--after--BorderWidth: var(--pf-v6-c-toggle-group__button--hover--after--BorderWidth);
|
|
95
103
|
text-decoration-line: none;
|
|
96
104
|
}
|
|
97
105
|
.pf-v6-c-toggle-group__button.pf-m-selected {
|
|
@@ -99,6 +107,7 @@
|
|
|
99
107
|
--pf-v6-c-toggle-group__button--Color: var(--pf-v6-c-toggle-group__button--m-selected--Color, inherit);
|
|
100
108
|
--pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--m-selected--ZIndex);
|
|
101
109
|
--pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--m-selected--before--BorderColor);
|
|
110
|
+
--pf-v6-c-toggle-group__button--after--BorderWidth: var(--pf-v6-c-toggle-group__button--m-selected--after--BorderWidth);
|
|
102
111
|
}
|
|
103
112
|
.pf-v6-c-toggle-group__button:is(:disabled, .pf-m-disabled) {
|
|
104
113
|
--pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--disabled--BackgroundColor);
|
|
@@ -31,11 +31,15 @@
|
|
|
31
31
|
--pf-v6-c-toolbar__expandable-content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
32
32
|
--pf-v6-c-toolbar__expandable-content--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
33
33
|
--pf-v6-c-toolbar__expandable-content--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
|
34
|
+
--pf-v6-c-toolbar__expandable-content--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
35
|
+
--pf-v6-c-toolbar__expandable-content--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
34
36
|
--pf-v6-c-toolbar--m-sticky--ZIndex: var(--pf-t--global--z-index--xs);
|
|
35
37
|
--pf-v6-c-toolbar--m-sticky--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
36
38
|
--pf-v6-c-toolbar--m-sticky--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
37
39
|
--pf-v6-c-toolbar--m-sticky--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
38
40
|
--pf-v6-c-toolbar--m-sticky--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
41
|
+
--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
42
|
+
--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
39
43
|
--pf-v6-c-toolbar__expand-all-icon--Rotate: 0;
|
|
40
44
|
--pf-v6-c-toolbar__expand-all-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
41
45
|
--pf-v6-c-toolbar__expand-all-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
@@ -206,6 +210,7 @@
|
|
|
206
210
|
z-index: var(--pf-v6-c-toolbar--m-sticky--ZIndex);
|
|
207
211
|
padding-block-start: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockStart);
|
|
208
212
|
padding-block-end: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockEnd);
|
|
213
|
+
border-block-end: var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor);
|
|
209
214
|
box-shadow: var(--pf-v6-c-toolbar--m-sticky--BoxShadow);
|
|
210
215
|
}
|
|
211
216
|
.pf-v6-c-toolbar.pf-m-static,
|
|
@@ -352,12 +357,14 @@
|
|
|
352
357
|
padding-inline-start: var(--pf-v6-c-toolbar__expandable-content--PaddingInlineStart);
|
|
353
358
|
padding-inline-end: var(--pf-v6-c-toolbar__expandable-content--PaddingInlineEnd);
|
|
354
359
|
background-color: var(--pf-v6-c-toolbar__expandable-content--BackgroundColor);
|
|
360
|
+
border-block-end: var(--pf-v6-c-toolbar__expandable-content--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar__expandable-content--BorderBlockEndColor);
|
|
355
361
|
box-shadow: var(--pf-v6-c-toolbar__expandable-content--BoxShadow);
|
|
356
362
|
}
|
|
357
363
|
@media screen and (min-width: 62rem) {
|
|
358
364
|
.pf-v6-c-toolbar__expandable-content {
|
|
359
365
|
position: static;
|
|
360
366
|
padding: 0;
|
|
367
|
+
border-block-end: 0;
|
|
361
368
|
box-shadow: none;
|
|
362
369
|
}
|
|
363
370
|
}
|
|
@@ -8,6 +8,11 @@
|
|
|
8
8
|
--pf-v6-c-tree-view__node--PaddingInlineStart: var(--pf-v6-c-tree-view__node--indent--base);
|
|
9
9
|
--pf-v6-c-tree-view__node--Color: var(--pf-t--global--text--color--subtle);
|
|
10
10
|
--pf-v6-c-tree-view__node--BackgroundColor: transparent;
|
|
11
|
+
--pf-v6-c-tree-view__node--BorderRadius: var(--pf-v6-c-tree-view__content--BorderRadius);
|
|
12
|
+
--pf-v6-c-tree-view__node--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
13
|
+
--pf-v6-c-tree-view__node--BorderWidth: var(--pf-t--global--border--width--action--plain--default);
|
|
14
|
+
--pf-v6-c-tree-view__node--hover--BorderWidth: var(--pf-t--global--border--width--action--plain--hover);
|
|
15
|
+
--pf-v6-c-tree-view__node--m-current--BorderWidth: var(--pf-t--global--border--width--action--plain--clicked);
|
|
11
16
|
--pf-v6-c-tree-view__node--m-current--Color: var(--pf-t--global--text--color--regular);
|
|
12
17
|
--pf-v6-c-tree-view__node--m-current--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
|
|
13
18
|
--pf-v6-c-tree-view__node--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
|
|
@@ -293,8 +298,17 @@
|
|
|
293
298
|
color: var(--pf-v6-c-tree-view__node--Color);
|
|
294
299
|
background-color: var(--pf-v6-c-tree-view__node--BackgroundColor);
|
|
295
300
|
}
|
|
301
|
+
.pf-v6-c-tree-view__node::after {
|
|
302
|
+
position: absolute;
|
|
303
|
+
inset: 0;
|
|
304
|
+
pointer-events: none;
|
|
305
|
+
content: "";
|
|
306
|
+
border: var(--pf-v6-c-tree-view__node--BorderWidth) solid var(--pf-v6-c-tree-view__node--BorderColor);
|
|
307
|
+
border-radius: var(--pf-v6-c-tree-view__node--BorderRadius);
|
|
308
|
+
}
|
|
296
309
|
.pf-v6-c-tree-view__node.pf-m-current {
|
|
297
310
|
--pf-v6-c-tree-view__node--Color: var(--pf-v6-c-tree-view__node--m-current--Color);
|
|
311
|
+
--pf-v6-c-tree-view__node--BorderWidth: var(--pf-v6-c-tree-view__node--m-current--BorderWidth);
|
|
298
312
|
}
|
|
299
313
|
.pf-v6-c-tree-view__node .pf-v6-c-tree-view__node-count {
|
|
300
314
|
margin-inline-start: var(--pf-v6-c-tree-view__node-count--MarginInlineStart);
|
|
@@ -392,6 +406,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
392
406
|
|
|
393
407
|
.pf-v6-c-tree-view__content:hover,
|
|
394
408
|
.pf-v6-c-tree-view__content:focus-within {
|
|
409
|
+
--pf-v6-c-tree-view__node--BorderWidth: var(--pf-v6-c-tree-view__node--hover--BorderWidth);
|
|
395
410
|
background-color: var(--pf-v6-c-tree-view__node--hover--BackgroundColor);
|
|
396
411
|
}
|
|
397
412
|
|