@patternfly/patternfly 6.0.0-alpha.3 → 6.0.0-alpha.5
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/base/_globals.scss +0 -2
- package/base/patternfly-globals.css +0 -1
- package/base/patternfly-variables.css +15 -0
- package/base/tokens/_tokens-font.scss +29 -0
- package/components/Content/content.css +67 -67
- package/components/Content/content.scss +68 -68
- package/components/MenuToggle/menu-toggle.css +57 -73
- package/components/MenuToggle/menu-toggle.scss +60 -82
- package/components/Table/table.css +90 -89
- package/components/Table/table.scss +92 -95
- package/components/Toolbar/toolbar.css +0 -1
- package/components/Toolbar/toolbar.scss +0 -1
- package/docs/components/MenuToggle/examples/MenuToggle.md +42 -42
- package/docs/demos/AboutModal/examples/AboutModal.md +1 -1
- package/docs/demos/Alert/examples/Alert.md +3 -3
- package/docs/demos/BackToTop/examples/BackToTop.md +1 -1
- package/docs/demos/Banner/examples/Banner.md +2 -2
- package/docs/demos/CardView/examples/CardView.md +1 -1
- package/docs/demos/ContextSelector/examples/ContextSelector.md +4 -4
- package/docs/demos/Dashboard/examples/Dashboard.md +1 -1
- package/docs/demos/DataList/examples/DataList.md +4 -4
- package/docs/demos/DescriptionList/examples/DescriptionList.md +3 -3
- package/docs/demos/Drawer/examples/Drawer.md +5 -5
- package/docs/demos/JumpLinks/examples/JumpLinks.md +6 -6
- package/docs/demos/Masthead/examples/Masthead.md +4 -4
- package/docs/demos/Modal/examples/Modal.md +6 -6
- package/docs/demos/Nav/examples/Nav.md +8 -8
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +5 -5
- package/docs/demos/Page/examples/Page.md +9 -9
- package/docs/demos/Page/examples/Penta.md +672 -0
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +7 -7
- package/docs/demos/Skeleton/examples/Skeleton.md +1 -1
- package/docs/demos/Table/examples/Table.md +15 -15
- package/docs/demos/Tabs/examples/Tabs.md +6 -6
- package/docs/demos/Toolbar/examples/Toolbar.md +2 -2
- package/docs/demos/Wizard/examples/Wizard.md +9 -9
- package/package.json +1 -1
- package/patternfly-base-no-globals-theme-dark-unversioned.css +15 -0
- package/patternfly-base-no-globals.css +15 -0
- package/patternfly-base-theme-dark-unversioned.css +15 -1
- package/patternfly-base.css +15 -1
- package/patternfly-no-globals.css +229 -230
- package/patternfly-theme-dark-unversioned.css +229 -231
- package/patternfly.css +229 -231
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -1,50 +1,52 @@
|
|
|
1
1
|
// @debug $menu-toggle; // check your variable names located in src/patternfly/sass-utilities/component-namespaces.scss
|
|
2
2
|
|
|
3
3
|
.#{$menu-toggle} {
|
|
4
|
-
--#{$menu-toggle}--BorderRadius:
|
|
5
|
-
--#{$menu-toggle}--PaddingTop: var(
|
|
6
|
-
--#{$menu-toggle}--PaddingRight: var(
|
|
7
|
-
--#{$menu-toggle}--PaddingBottom: var(
|
|
8
|
-
--#{$menu-toggle}--PaddingLeft: var(
|
|
9
|
-
--#{$menu-toggle}--FontSize: var(
|
|
10
|
-
--#{$menu-toggle}--Color: var(
|
|
11
|
-
--#{$menu-toggle}--LineHeight: var(
|
|
12
|
-
--#{$menu-toggle}--BackgroundColor:
|
|
4
|
+
--#{$menu-toggle}--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
5
|
+
--#{$menu-toggle}--PaddingTop: var(--pf-t--global--spacer--sm); // TODO semantic spacer for form elements?
|
|
6
|
+
--#{$menu-toggle}--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
7
|
+
--#{$menu-toggle}--PaddingBottom: var(--pf-t--global--spacer--sm); // TODO semantic spacer?
|
|
8
|
+
--#{$menu-toggle}--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
9
|
+
--#{$menu-toggle}--FontSize: var(--pf-t--global--font--size--body--md);
|
|
10
|
+
--#{$menu-toggle}--Color: var(--pf-t--global--text--color--regular);
|
|
11
|
+
--#{$menu-toggle}--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
12
|
+
--#{$menu-toggle}--BackgroundColor: var(--pf-t--global--background--color--control--default);
|
|
13
|
+
--#{$menu-toggle}--BorderWidth: var(--pf-t--global--border--width--control--default);
|
|
14
|
+
--#{$menu-toggle}--BorderColor: var(--pf-t--global--border--color--default);
|
|
15
|
+
--#{$menu-toggle}--hover--BorderWidth: var(--pf-t--global--border--width--control--hover);
|
|
16
|
+
--#{$menu-toggle}--hover--BorderColor: var(--pf-t--global--border--color--hover);
|
|
17
|
+
--#{$menu-toggle}--active--BorderWidth: var(--pf-t--global--border--width--control--active);
|
|
18
|
+
--#{$menu-toggle}--active--BorderColor: var(--pf-t--global--border--color--active);
|
|
13
19
|
|
|
14
20
|
// Border base
|
|
15
|
-
--#{$menu-toggle}--before--BorderTopWidth: var(
|
|
16
|
-
--#{$menu-toggle}--before--BorderRightWidth: var(
|
|
17
|
-
--#{$menu-toggle}--before--BorderBottomWidth:
|
|
18
|
-
--#{$menu-toggle}--before--BorderLeftWidth: var(
|
|
19
|
-
--#{$menu-toggle}--before--BorderTopColor: var(
|
|
20
|
-
--#{$menu-toggle}--before--BorderRightColor: var(
|
|
21
|
-
--#{$menu-toggle}--before--BorderBottomColor:
|
|
22
|
-
--#{$menu-toggle}--before--BorderLeftColor: var(
|
|
23
|
-
|
|
24
|
-
// Border accent
|
|
25
|
-
--#{$menu-toggle}--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--sm);
|
|
26
|
-
--#{$menu-toggle}--after--BorderBottomColor: var(--#{$pf-global}--BorderColor--200);
|
|
21
|
+
--#{$menu-toggle}--before--BorderTopWidth: var(--pf-t--global--border--width--control--default);
|
|
22
|
+
--#{$menu-toggle}--before--BorderRightWidth: var(--pf-t--global--border--width--control--default);
|
|
23
|
+
--#{$menu-toggle}--before--BorderBottomWidth: var(--pf-t--global--border--width--control--default);
|
|
24
|
+
--#{$menu-toggle}--before--BorderLeftWidth: var(--pf-t--global--border--width--control--default);
|
|
25
|
+
--#{$menu-toggle}--before--BorderTopColor: var(--pf-t--global--border--color--default);
|
|
26
|
+
--#{$menu-toggle}--before--BorderRightColor: var(--pf-t--global--border--color--default);
|
|
27
|
+
--#{$menu-toggle}--before--BorderBottomColor: var(--pf-t--global--border--color--default);
|
|
28
|
+
--#{$menu-toggle}--before--BorderLeftColor: var(--pf-t--global--border--color--default);
|
|
27
29
|
|
|
28
30
|
// Hover
|
|
29
31
|
--#{$menu-toggle}--hover--BackgroundColor: transparent;
|
|
30
|
-
--#{$menu-toggle}--hover--after--BorderBottomWidth: var(
|
|
31
|
-
--#{$menu-toggle}--hover--after--BorderBottomColor: var(
|
|
32
|
+
--#{$menu-toggle}--hover--after--BorderBottomWidth: var(--pf-t--global--border--width--control--hover);
|
|
33
|
+
--#{$menu-toggle}--hover--after--BorderBottomColor: var(--pf-t--global--border--color--hover);
|
|
32
34
|
|
|
33
35
|
// Focus
|
|
34
36
|
--#{$menu-toggle}--focus--BackgroundColor: transparent;
|
|
35
|
-
--#{$menu-toggle}--focus--after--BorderBottomWidth: var(
|
|
36
|
-
--#{$menu-toggle}--focus--after--BorderBottomColor: var(
|
|
37
|
+
--#{$menu-toggle}--focus--after--BorderBottomWidth: var(--pf-t--global--border--width--control--active);
|
|
38
|
+
--#{$menu-toggle}--focus--after--BorderBottomColor: var(--pf-t--global--border--color--active);
|
|
37
39
|
|
|
38
40
|
// Active
|
|
39
41
|
--#{$menu-toggle}--active--BackgroundColor: transparent;
|
|
40
|
-
--#{$menu-toggle}--active--after--BorderBottomWidth: var(
|
|
41
|
-
--#{$menu-toggle}--active--after--BorderBottomColor: var(
|
|
42
|
+
--#{$menu-toggle}--active--after--BorderBottomWidth: var(--pf-t--global--border--width--control--active);
|
|
43
|
+
--#{$menu-toggle}--active--after--BorderBottomColor: var(--pf-t--global--border--color--active);
|
|
42
44
|
|
|
43
45
|
// Expanded
|
|
44
46
|
--#{$menu-toggle}--m-expanded--Color: var(--#{$pf-global}--Color--100);
|
|
45
47
|
--#{$menu-toggle}--m-expanded--BackgroundColor: transparent;
|
|
46
|
-
--#{$menu-toggle}--m-expanded--after--BorderBottomWidth: var(
|
|
47
|
-
--#{$menu-toggle}--m-expanded--after--BorderBottomColor: var(
|
|
48
|
+
--#{$menu-toggle}--m-expanded--after--BorderBottomWidth: var(--pf-t--global--border--width--control--active);
|
|
49
|
+
--#{$menu-toggle}--m-expanded--after--BorderBottomColor: var(--pf-t--global--border--color--active);
|
|
48
50
|
|
|
49
51
|
// Disabled
|
|
50
52
|
--#{$menu-toggle}--disabled--Color: var(--#{$pf-global}--disabled-color--100);
|
|
@@ -86,21 +88,20 @@
|
|
|
86
88
|
--#{$menu-toggle}--m-plain--disabled--Color: var(--#{$pf-global}--disabled-color--200);
|
|
87
89
|
--#{$menu-toggle}--m-plain--m-expanded--Color: var(--#{$pf-global}--Color--100);
|
|
88
90
|
|
|
89
|
-
|
|
90
91
|
// Icon
|
|
91
|
-
--#{$menu-toggle}__icon--MarginRight: var(
|
|
92
|
+
--#{$menu-toggle}__icon--MarginRight: var(--pf-t--global--spacer--sm);
|
|
92
93
|
|
|
93
94
|
// Count
|
|
94
|
-
--#{$menu-toggle}__count--MarginLeft: var(
|
|
95
|
+
--#{$menu-toggle}__count--MarginLeft: var(--pf-t--global--spacer--sm);
|
|
95
96
|
|
|
96
97
|
// Controls -- update element/vars to "control" in breaking change
|
|
97
|
-
--#{$menu-toggle}__controls--PaddingLeft: var(
|
|
98
|
+
--#{$menu-toggle}__controls--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
98
99
|
--#{$menu-toggle}__controls--MarginLeft: auto;
|
|
99
100
|
--#{$menu-toggle}__controls--MarginRight: 0;
|
|
100
101
|
|
|
101
102
|
// Toggle icon
|
|
102
|
-
--#{$menu-toggle}__toggle-icon--MarginRight: var(
|
|
103
|
-
--#{$menu-toggle}--m-plain__toggle-icon--Color: var(
|
|
103
|
+
--#{$menu-toggle}__toggle-icon--MarginRight: var(--pf-t--global--spacer--sm);
|
|
104
|
+
--#{$menu-toggle}--m-plain__toggle-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
104
105
|
--#{$menu-toggle}--m-plain--hover__toggle-icon--Color: var(--#{$pf-global}--Color--100);
|
|
105
106
|
--#{$menu-toggle}--m-plain--active__toggle-icon--Color: var(--#{$pf-global}--Color--100);
|
|
106
107
|
--#{$menu-toggle}--m-plain--focus__toggle-icon--Color: var(--#{$pf-global}--Color--100);
|
|
@@ -109,7 +110,6 @@
|
|
|
109
110
|
// Full height
|
|
110
111
|
--#{$menu-toggle}--m-full-height--PaddingRight: var(--#{$pf-global}--spacer--lg);
|
|
111
112
|
--#{$menu-toggle}--m-full-height--PaddingLeft: var(--#{$pf-global}--spacer--lg);
|
|
112
|
-
--#{$menu-toggle}--m-full-height__toggle--before--BorderTopWidth: 0;
|
|
113
113
|
--#{$menu-toggle}--m-full-height__toggle--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--sm);
|
|
114
114
|
--#{$menu-toggle}--m-full-height--m-expanded--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--xl);
|
|
115
115
|
--#{$menu-toggle}--m-full-height--hover--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--xl);
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
--#{$menu-toggle}--m-split-button--child--BackgroundColor: var(--#{$pf-global}--BackgroundColor--100);
|
|
124
124
|
--#{$menu-toggle}--m-split-button--child--disabled--Color: var(--#{$pf-global}--disabled-color--100);
|
|
125
125
|
--#{$menu-toggle}--m-split-button--child--disabled--BackgroundColor: var(--#{$pf-global}--disabled-color--300);
|
|
126
|
-
--#{$menu-toggle}--m-split-button--first-child--PaddingRight: var(
|
|
126
|
+
--#{$menu-toggle}--m-split-button--first-child--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
127
127
|
--#{$menu-toggle}--m-split-button--last-child--PaddingLeft: 0;
|
|
128
128
|
|
|
129
129
|
// Split button, action
|
|
@@ -154,15 +154,15 @@
|
|
|
154
154
|
// Split button, controls, check
|
|
155
155
|
--#{$menu-toggle}__button--BackgroundColor: transparent;
|
|
156
156
|
--#{$menu-toggle}__button--AlignSelf: baseline;
|
|
157
|
-
--#{$menu-toggle}__button--PaddingLeft: var(
|
|
158
|
-
--#{$menu-toggle}__button--PaddingRight: var(
|
|
159
|
-
--#{$menu-toggle}__button__controls--MarginRight: var(
|
|
160
|
-
--#{$menu-toggle}__button__controls--MarginLeft: var(
|
|
157
|
+
--#{$menu-toggle}__button--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
158
|
+
--#{$menu-toggle}__button--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
159
|
+
--#{$menu-toggle}__button__controls--MarginRight: var(--pf-t--global--spacer--sm);
|
|
160
|
+
--#{$menu-toggle}__button__controls--MarginLeft: var(--pf-t--global--spacer--sm);
|
|
161
161
|
|
|
162
162
|
// Typeahead
|
|
163
|
-
--#{$menu-toggle}--m-typeahead__controls--MarginRight: var(
|
|
164
|
-
--#{$menu-toggle}--m-typeahead__controls--MarginLeft: var(
|
|
165
|
-
--#{$menu-toggle}--m-typeahead--c-text-input-group__utilities--c-button--PaddingRight: var(
|
|
163
|
+
--#{$menu-toggle}--m-typeahead__controls--MarginRight: var(--pf-t--global--spacer--sm);
|
|
164
|
+
--#{$menu-toggle}--m-typeahead__controls--MarginLeft: var(--pf-t--global--spacer--sm);
|
|
165
|
+
--#{$menu-toggle}--m-typeahead--c-text-input-group__utilities--c-button--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
166
166
|
--#{$menu-toggle}--m-typeahead__button--AlignSelf: center;
|
|
167
167
|
|
|
168
168
|
position: relative;
|
|
@@ -176,10 +176,13 @@
|
|
|
176
176
|
cursor: pointer;
|
|
177
177
|
background-color: var(--#{$menu-toggle}--BackgroundColor);
|
|
178
178
|
border: 0;
|
|
179
|
-
border-radius: var(--#{$menu-toggle}--BorderRadius);
|
|
180
179
|
|
|
181
|
-
|
|
182
|
-
&::
|
|
180
|
+
&,
|
|
181
|
+
&::before {
|
|
182
|
+
border-radius: var(--#{$menu-toggle}--BorderRadius);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
&::before {
|
|
183
186
|
position: absolute;
|
|
184
187
|
top: 0;
|
|
185
188
|
right: 0;
|
|
@@ -187,16 +190,11 @@
|
|
|
187
190
|
left: 0;
|
|
188
191
|
pointer-events: none;
|
|
189
192
|
content: "";
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
&::before {
|
|
193
|
-
border-color: var(--#{$menu-toggle}--before--BorderTopColor) var(--#{$menu-toggle}--before--BorderRightColor) var(--#{$menu-toggle}--before--BorderBottomColor) var(--#{$menu-toggle}--before--BorderLeftColor);
|
|
194
|
-
border-style: solid;
|
|
195
|
-
border-width: var(--#{$menu-toggle}--before--BorderTopWidth) var(--#{$menu-toggle}--before--BorderRightWidth) var(--#{$menu-toggle}--before--BorderBottomWidth) var(--#{$menu-toggle}--before--BorderLeftWidth);
|
|
193
|
+
border: var(--#{$menu-toggle}--BorderWidth) solid var(--#{$menu-toggle}--BorderColor);
|
|
196
194
|
}
|
|
197
195
|
|
|
198
196
|
&::after {
|
|
199
|
-
border-bottom: var(--#{$menu-toggle}--after--
|
|
197
|
+
border-bottom: var(--#{$menu-toggle}--after--BorderWidth) solid var(--#{$menu-toggle}--after--BorderColor);
|
|
200
198
|
}
|
|
201
199
|
|
|
202
200
|
&.pf-m-primary {
|
|
@@ -254,17 +252,12 @@
|
|
|
254
252
|
}
|
|
255
253
|
}
|
|
256
254
|
|
|
257
|
-
&.pf-m-plain {
|
|
258
|
-
--#{$menu-toggle}__toggle-icon--Color: var(--#{$menu-toggle}--m-plain__toggle-icon--Color);
|
|
259
|
-
|
|
260
|
-
&:not(.pf-m-text) {
|
|
255
|
+
&.pf-m-plain:not(.pf-m-text) {
|
|
261
256
|
--#{$menu-toggle}--PaddingRight: var(--#{$menu-toggle}--m-plain--PaddingRight);
|
|
262
257
|
--#{$menu-toggle}--PaddingLeft: var(--#{$menu-toggle}--m-plain--PaddingLeft);
|
|
263
258
|
--#{$menu-toggle}--disabled--BackgroundColor: transparent;
|
|
264
259
|
|
|
265
260
|
display: inline-block;
|
|
266
|
-
color: var(--#{$menu-toggle}--m-plain--Color);
|
|
267
|
-
}
|
|
268
261
|
}
|
|
269
262
|
|
|
270
263
|
&.pf-m-full-height {
|
|
@@ -282,29 +275,15 @@
|
|
|
282
275
|
}
|
|
283
276
|
|
|
284
277
|
&:hover {
|
|
285
|
-
--#{$menu-toggle}--
|
|
286
|
-
--#{$menu-toggle}--
|
|
287
|
-
|
|
288
|
-
--#{$menu-toggle}--m-plain__toggle-icon--Color: var(--#{$menu-toggle}--m-plain--hover__toggle-icon--Color);
|
|
289
|
-
--#{$menu-toggle}--m-plain--Color: var(--#{$menu-toggle}--m-plain--hover--Color);
|
|
290
|
-
}
|
|
278
|
+
--#{$menu-toggle}--BorderColor: var(--#{$menu-toggle}--hover--BorderColor);
|
|
279
|
+
--#{$menu-toggle}--BorderWidth: var(--#{$menu-toggle}--hover--BorderWidth);
|
|
280
|
+
}
|
|
291
281
|
|
|
292
282
|
&:focus,
|
|
293
|
-
&:focus-within {
|
|
294
|
-
--#{$menu-toggle}--BackgroundColor: var(--#{$menu-toggle}--focus--BackgroundColor);
|
|
295
|
-
--#{$menu-toggle}--after--BorderBottomWidth: var(--#{$menu-toggle}--focus--after--BorderBottomWidth);
|
|
296
|
-
--#{$menu-toggle}--after--BorderBottomColor: var(--#{$menu-toggle}--focus--after--BorderBottomColor);
|
|
297
|
-
--#{$menu-toggle}--m-plain__toggle-icon--Color: var(--#{$menu-toggle}--m-plain--focus__toggle-icon--Color);
|
|
298
|
-
--#{$menu-toggle}--m-plain--Color: var(--#{$menu-toggle}--m-plain--focus--Color);
|
|
299
|
-
}
|
|
300
|
-
|
|
301
283
|
&:active {
|
|
302
|
-
--#{$menu-toggle}--
|
|
303
|
-
--#{$menu-toggle}--
|
|
304
|
-
|
|
305
|
-
--#{$menu-toggle}--m-plain__toggle-icon--Color: var(--#{$menu-toggle}--m-plain--active__toggle-icon--Color);
|
|
306
|
-
--#{$menu-toggle}--m-plain--Color: var(--#{$menu-toggle}--m-plain--active--Color);
|
|
307
|
-
}
|
|
284
|
+
--#{$menu-toggle}--BorderColor: var(--#{$menu-toggle}--active--BorderColor);
|
|
285
|
+
--#{$menu-toggle}--BorderWidth: var(--#{$menu-toggle}--active--BorderWidth);
|
|
286
|
+
}
|
|
308
287
|
|
|
309
288
|
&.pf-m-expanded {
|
|
310
289
|
--#{$menu-toggle}--Color: var(--#{$menu-toggle}--m-expanded--Color);
|
|
@@ -325,7 +304,6 @@
|
|
|
325
304
|
}
|
|
326
305
|
|
|
327
306
|
&.pf-m-primary,
|
|
328
|
-
&.pf-m-plain,
|
|
329
307
|
&:disabled {
|
|
330
308
|
&::before,
|
|
331
309
|
&::after {
|
|
@@ -553,7 +531,7 @@
|
|
|
553
531
|
|
|
554
532
|
.#{$menu-toggle}__toggle-icon {
|
|
555
533
|
margin-right: var(--#{$menu-toggle}__toggle-icon--MarginRight);
|
|
556
|
-
color: var(--#{$menu-toggle}__toggle-icon--Color
|
|
534
|
+
color: var(--#{$menu-toggle}__toggle-icon--Color);
|
|
557
535
|
}
|
|
558
536
|
|
|
559
537
|
// stylelint-disable no-invalid-position-at-import-rule
|
|
@@ -60,26 +60,26 @@
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
.pf-v5-c-table {
|
|
63
|
-
--pf-v5-c-table--BackgroundColor: var(--pf-
|
|
64
|
-
--pf-v5-c-table--BorderColor: var(--pf-
|
|
65
|
-
--pf-v5-c-table--border-width--base: var(--pf-
|
|
66
|
-
--pf-v5-c-table__caption--FontSize: var(--pf-
|
|
67
|
-
--pf-v5-c-table__caption--Color: var(--pf-
|
|
63
|
+
--pf-v5-c-table--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
64
|
+
--pf-v5-c-table--BorderColor: var(--pf-t--global--border--color--default);
|
|
65
|
+
--pf-v5-c-table--border-width--base: var(--pf-t--global--border--width--divider--default);
|
|
66
|
+
--pf-v5-c-table__caption--FontSize: var(--pf-t--global--font--size--body);
|
|
67
|
+
--pf-v5-c-table__caption--Color: var(--pf-t--global--text--color--subtle);
|
|
68
68
|
--pf-v5-c-table__caption--PaddingTop: var(--pf-v5-global--spacer--md);
|
|
69
69
|
--pf-v5-c-table__caption--PaddingRight: var(--pf-v5-global--spacer--lg);
|
|
70
70
|
--pf-v5-c-table__caption--PaddingBottom: var(--pf-v5-global--spacer--md);
|
|
71
71
|
--pf-v5-c-table__caption--PaddingLeft: var(--pf-v5-global--spacer--lg);
|
|
72
72
|
--pf-v5-c-table__caption--xl--PaddingRight: var(--pf-v5-global--spacer--md);
|
|
73
73
|
--pf-v5-c-table__caption--xl--PaddingLeft: var(--pf-v5-global--spacer--md);
|
|
74
|
-
--pf-v5-c-table__thead--cell--FontSize: var(--pf-
|
|
75
|
-
--pf-v5-c-table__thead--cell--FontWeight: var(--pf-
|
|
76
|
-
--pf-v5-c-table__tbody--cell--PaddingTop: var(--pf-
|
|
77
|
-
--pf-v5-c-table__tbody--cell--PaddingBottom: var(--pf-
|
|
74
|
+
--pf-v5-c-table__thead--cell--FontSize: var(--pf-t--global--font--size--body);
|
|
75
|
+
--pf-v5-c-table__thead--cell--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
76
|
+
--pf-v5-c-table__tbody--cell--PaddingTop: var(--pf-t--global--spacer--md);
|
|
77
|
+
--pf-v5-c-table__tbody--cell--PaddingBottom: var(--pf-t--global--spacer--md);
|
|
78
78
|
--pf-v5-c-table__tr--BoxShadow--top--base: 0 -0.1875rem 0.25rem -0.125rem rgba(3,3,3,.08);
|
|
79
79
|
--pf-v5-c-table--cell--Padding--base: var(--pf-v5-global--spacer--md);
|
|
80
|
-
--pf-v5-c-table--cell--FontSize: var(--pf-
|
|
81
|
-
--pf-v5-c-table--cell--FontWeight: var(--pf-
|
|
82
|
-
--pf-v5-c-table--cell--Color: var(--pf-
|
|
80
|
+
--pf-v5-c-table--cell--FontSize: var(--pf-t--global--font--size--body);
|
|
81
|
+
--pf-v5-c-table--cell--FontWeight: var(--pf-t--global--font--weight--body);
|
|
82
|
+
--pf-v5-c-table--cell--Color: var(--pf-t--global--text--color--regular);
|
|
83
83
|
--pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table--cell--Padding--base);
|
|
84
84
|
--pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table--cell--Padding--base);
|
|
85
85
|
--pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table--cell--Padding--base);
|
|
@@ -96,10 +96,10 @@
|
|
|
96
96
|
--pf-v5-c-table--cell--TextOverflow: clip;
|
|
97
97
|
--pf-v5-c-table--cell--WhiteSpace: normal;
|
|
98
98
|
--pf-v5-c-table--cell--WordBreak: normal;
|
|
99
|
-
--pf-v5-c-table--cell--m-border-right--before--BorderRightWidth: var(--pf-
|
|
100
|
-
--pf-v5-c-table--cell--m-border-right--before--BorderRightColor: var(--pf-
|
|
101
|
-
--pf-v5-c-table--cell--m-border-left--before--BorderLeftWidth: var(--pf-
|
|
102
|
-
--pf-v5-c-table--cell--m-border-left--before--BorderLeftColor: var(--pf-
|
|
99
|
+
--pf-v5-c-table--cell--m-border-right--before--BorderRightWidth: var(--pf-t--global--border--width--divider--default);
|
|
100
|
+
--pf-v5-c-table--cell--m-border-right--before--BorderRightColor: var(--pf-t--global--border--color--default);
|
|
101
|
+
--pf-v5-c-table--cell--m-border-left--before--BorderLeftWidth: var(--pf-t--global--border--width--divider--default);
|
|
102
|
+
--pf-v5-c-table--cell--m-border-left--before--BorderLeftColor: var(--pf-t--global--border--color--default);
|
|
103
103
|
--pf-v5-c-table--cell--m-help--MinWidth: 11ch;
|
|
104
104
|
--pf-v5-c-table--m-truncate--cell--MaxWidth: 1px;
|
|
105
105
|
--pf-v5-c-table--m-truncate--cell--MinWidth: calc(5ch + var(--pf-v5-c-table--cell--PaddingRight) + var(--pf-v5-c-table--cell--PaddingLeft));
|
|
@@ -110,33 +110,33 @@
|
|
|
110
110
|
--pf-v5-c-table__toggle--c-button__toggle-icon--Transition: .2s ease-in 0s;
|
|
111
111
|
--pf-v5-c-table__toggle--c-button--m-expanded__toggle-icon--Rotate: 360deg;
|
|
112
112
|
--pf-v5-c-table__button--BackgroundColor: transparent;
|
|
113
|
-
--pf-v5-c-table__button--Color: var(--pf-
|
|
114
|
-
--pf-v5-c-table__button--hover--Color: var(--pf-
|
|
115
|
-
--pf-v5-c-table__button--focus--Color: var(--pf-
|
|
116
|
-
--pf-v5-c-table__button--active--Color: var(--pf-
|
|
113
|
+
--pf-v5-c-table__button--Color: var(--pf-t--global--text--color--regular);
|
|
114
|
+
--pf-v5-c-table__button--hover--Color: var(--pf-t--global--text--color--regular);
|
|
115
|
+
--pf-v5-c-table__button--focus--Color: var(--pf-t--global--text--color--regular);
|
|
116
|
+
--pf-v5-c-table__button--active--Color: var(--pf-t--global--text--color--regular);
|
|
117
117
|
--pf-v5-c-table__button--OutlineOffset: calc(var(--pf-v5-global--BorderWidth--lg) * -1);
|
|
118
118
|
--pf-v5-c-table--m-compact__toggle--PaddingTop: 0;
|
|
119
119
|
--pf-v5-c-table--m-compact__toggle--PaddingBottom: 0;
|
|
120
120
|
--pf-v5-c-table__check--input--MarginTop: 0.25rem;
|
|
121
|
-
--pf-v5-c-table__check--input--FontSize: var(--pf-
|
|
122
|
-
--pf-v5-c-table--cell--m-favorite--Color: var(--pf-
|
|
123
|
-
--pf-v5-c-table__favorite--c-button--Color: var(--pf-
|
|
124
|
-
--pf-v5-c-table__favorite--c-button--FontSize: var(--pf-
|
|
121
|
+
--pf-v5-c-table__check--input--FontSize: var(--pf-t--global--font--size--body);
|
|
122
|
+
--pf-v5-c-table--cell--m-favorite--Color: var(--pf-t--global--text--color--subtle);
|
|
123
|
+
--pf-v5-c-table__favorite--c-button--Color: var(--pf-t--global--text--color--subtle);
|
|
124
|
+
--pf-v5-c-table__favorite--c-button--FontSize: var(--pf-t--global--font--size--body);
|
|
125
125
|
--pf-v5-c-table__favorite--c-button--MarginTop: calc(var(--pf-v5-global--spacer--form-element) * -1);
|
|
126
126
|
--pf-v5-c-table__favorite--c-button--MarginRight: calc(var(--pf-v5-global--spacer--md) * -1);
|
|
127
127
|
--pf-v5-c-table__favorite--c-button--MarginBottom: calc(var(--pf-v5-global--spacer--form-element) * -1);
|
|
128
128
|
--pf-v5-c-table__favorite--c-button--MarginLeft: calc(var(--pf-v5-global--spacer--md) * -1);
|
|
129
129
|
--pf-v5-c-table__favorite--m-favorited--c-button--Color: var(--pf-v5-global--palette--gold-400);
|
|
130
|
-
--pf-v5-c-table__sort--m-favorite__button__text--Color: var(--pf-
|
|
131
|
-
--pf-v5-c-table__sort--m-favorite__button--hover__text--Color: var(--pf-
|
|
132
|
-
--pf-v5-c-table__sort--m-favorite__button--focus__text--Color: var(--pf-
|
|
133
|
-
--pf-v5-c-table__sort--m-favorite__button--active__text--Color: var(--pf-
|
|
130
|
+
--pf-v5-c-table__sort--m-favorite__button__text--Color: var(--pf-t--global--text--color--subtle);
|
|
131
|
+
--pf-v5-c-table__sort--m-favorite__button--hover__text--Color: var(--pf-t--global--text--color--regular);
|
|
132
|
+
--pf-v5-c-table__sort--m-favorite__button--focus__text--Color: var(--pf-t--global--text--color--regular);
|
|
133
|
+
--pf-v5-c-table__sort--m-favorite__button--active__text--Color: var(--pf-t--global--text--color--regular);
|
|
134
134
|
--pf-v5-c-table__draggable--c-button--MarginTop: calc(var(--pf-v5-global--spacer--form-element) * -1);
|
|
135
135
|
--pf-v5-c-table__draggable--c-button--MarginRight: calc(var(--pf-v5-global--spacer--md) * -1);
|
|
136
136
|
--pf-v5-c-table__draggable--c-button--MarginBottom: calc(var(--pf-v5-global--spacer--form-element) * -1);
|
|
137
137
|
--pf-v5-c-table__draggable--c-button--MarginLeft: calc(var(--pf-v5-global--spacer--md) * -1);
|
|
138
138
|
--pf-v5-c-table__tr--m-ghost-row--Opacity: .4;
|
|
139
|
-
--pf-v5-c-table__tr--m-ghost-row--BackgroundColor: var(--pf-
|
|
139
|
+
--pf-v5-c-table__tr--m-ghost-row--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
140
140
|
--pf-v5-c-table__action--PaddingTop: 0;
|
|
141
141
|
--pf-v5-c-table__action--PaddingRight: 0;
|
|
142
142
|
--pf-v5-c-table__action--PaddingBottom: 0;
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
--pf-v5-c-table__expandable-row--after--Bottom: calc(var(--pf-v5-c-table--border-width--base) * -1);
|
|
155
155
|
--pf-v5-c-table__expandable-row--after--border-width--base: var(--pf-v5-global--BorderWidth--lg);
|
|
156
156
|
--pf-v5-c-table__expandable-row--after--BorderLeftWidth: 0;
|
|
157
|
-
--pf-v5-c-table__expandable-row--after--BorderColor: var(--pf-
|
|
157
|
+
--pf-v5-c-table__expandable-row--after--BorderColor: var(--pf-t--global--border--color--active);
|
|
158
158
|
--pf-v5-c-table__icon-inline--MarginRight: var(--pf-v5-global--spacer--sm);
|
|
159
159
|
--pf-v5-c-table__sort--MinWidth: calc(6ch + var(--pf-v5-c-table--cell--PaddingRight) + var(--pf-v5-c-table--cell--PaddingLeft) + var(--pf-v5-c-table__sort-indicator--MarginLeft));
|
|
160
160
|
--pf-v5-c-table__sort__button--PaddingTop: var(--pf-v5-global--spacer--form-element);
|
|
@@ -164,19 +164,19 @@
|
|
|
164
164
|
--pf-v5-c-table__sort__button--MarginTop: calc(var(--pf-v5-c-table__sort__button--PaddingTop) * -1);
|
|
165
165
|
--pf-v5-c-table__sort__button--MarginBottom: calc(var(--pf-v5-c-table__sort__button--PaddingBottom) * -1);
|
|
166
166
|
--pf-v5-c-table__sort__button--MarginLeft: calc(var(--pf-v5-c-table__sort__button--PaddingLeft) * -1);
|
|
167
|
-
--pf-v5-c-table__sort__button--Color: var(--pf-
|
|
168
|
-
--pf-v5-c-table__sort--m-selected__button--Color: var(--pf-
|
|
167
|
+
--pf-v5-c-table__sort__button--Color: var(--pf-t--global--text--color--regular);
|
|
168
|
+
--pf-v5-c-table__sort--m-selected__button--Color: var(--pf-t--global--border--color--active);
|
|
169
169
|
--pf-v5-c-table__sort--m-help--MinWidth: 15ch;
|
|
170
170
|
--pf-v5-c-table__sort__button__text--Color: currentcolor;
|
|
171
171
|
--pf-v5-c-table__sort__button--hover__text--Color: currentcolor;
|
|
172
172
|
--pf-v5-c-table__sort__button--focus__text--Color: currentcolor;
|
|
173
173
|
--pf-v5-c-table__sort__button--active__text--Color: currentcolor;
|
|
174
|
-
--pf-v5-c-table__sort-indicator--Color: var(--pf-
|
|
174
|
+
--pf-v5-c-table__sort-indicator--Color: var(--pf-t--global--icon--color--subtle);
|
|
175
175
|
--pf-v5-c-table__sort-indicator--MarginLeft: var(--pf-v5-global--spacer--md);
|
|
176
|
-
--pf-v5-c-table__sort--m-selected__sort-indicator--Color: var(--pf-
|
|
177
|
-
--pf-v5-c-table__sort__button--hover__sort-indicator--Color: var(--pf-
|
|
178
|
-
--pf-v5-c-table__sort__button--active__sort-indicator--Color: var(--pf-
|
|
179
|
-
--pf-v5-c-table__sort__button--focus__sort-indicator--Color: var(--pf-
|
|
176
|
+
--pf-v5-c-table__sort--m-selected__sort-indicator--Color: var(--pf-t--global--border--color--active);
|
|
177
|
+
--pf-v5-c-table__sort__button--hover__sort-indicator--Color: var(--pf-t--global--text--color--regular);
|
|
178
|
+
--pf-v5-c-table__sort__button--active__sort-indicator--Color: var(--pf-t--global--text--color--regular);
|
|
179
|
+
--pf-v5-c-table__sort__button--focus__sort-indicator--Color: var(--pf-t--global--text--color--regular);
|
|
180
180
|
--pf-v5-c-table__th--m-help--MinWidth: 11ch;
|
|
181
181
|
--pf-v5-c-table__column-help--MarginLeft: var(--pf-v5-global--spacer--xs);
|
|
182
182
|
--pf-v5-c-table__column-help--TranslateY: 0.125rem;
|
|
@@ -184,18 +184,18 @@
|
|
|
184
184
|
--pf-v5-c-table__column-help--c-button--MarginBottom: calc(var(--pf-v5-global--spacer--form-element) * -1);
|
|
185
185
|
--pf-v5-c-table__column-help--c-button--PaddingRight: var(--pf-v5-global--spacer--sm);
|
|
186
186
|
--pf-v5-c-table__column-help--c-button--PaddingLeft: var(--pf-v5-global--spacer--sm);
|
|
187
|
-
--pf-v5-c-table__compound-expansion-toggle__button--Color: var(--pf-
|
|
188
|
-
--pf-v5-c-table__compound-expansion-toggle__button--hover--Color: var(--pf-
|
|
189
|
-
--pf-v5-c-table__compound-expansion-toggle__button--focus--Color: var(--pf-
|
|
190
|
-
--pf-v5-c-table__compound-expansion-toggle__button--active--Color: var(--pf-
|
|
191
|
-
--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base: var(--pf-
|
|
192
|
-
--pf-v5-c-table__compound-expansion-toggle__button--before--BorderColor: var(--pf-
|
|
187
|
+
--pf-v5-c-table__compound-expansion-toggle__button--Color: var(--pf-t--global--icon--color--brand--default);
|
|
188
|
+
--pf-v5-c-table__compound-expansion-toggle__button--hover--Color: var(--pf-t--global--icon--color--brand--hover);
|
|
189
|
+
--pf-v5-c-table__compound-expansion-toggle__button--focus--Color: var(--pf-t--global--icon--color--brand--hover);
|
|
190
|
+
--pf-v5-c-table__compound-expansion-toggle__button--active--Color: var(--pf-t--global--icon--color--brand--active);
|
|
191
|
+
--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base: var(--pf-t--global--border--width--button--default);
|
|
192
|
+
--pf-v5-c-table__compound-expansion-toggle__button--before--BorderColor: var(--pf-t--global--border--color--default);
|
|
193
193
|
--pf-v5-c-table__compound-expansion-toggle__button--before--BorderRightWidth: 0;
|
|
194
194
|
--pf-v5-c-table__compound-expansion-toggle__button--before--BorderLeftWidth: 0;
|
|
195
195
|
--pf-v5-c-table__compound-expansion-toggle__button--before--Bottom: calc(var(--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base) * -1);
|
|
196
196
|
--pf-v5-c-table__compound-expansion-toggle__button--before--Left: calc(var(--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base) * -1);
|
|
197
197
|
--pf-v5-c-table__compound-expansion-toggle__button--after--border-width--base: var(--pf-v5-global--BorderWidth--lg);
|
|
198
|
-
--pf-v5-c-table__compound-expansion-toggle__button--after--BorderColor: var(--pf-
|
|
198
|
+
--pf-v5-c-table__compound-expansion-toggle__button--after--BorderColor: var(--pf-t--global--border--color--active);
|
|
199
199
|
--pf-v5-c-table__compound-expansion-toggle__button--after--BorderTopWidth: 0;
|
|
200
200
|
--pf-v5-c-table__compound-expansion-toggle__button--after--Top: calc(var(--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base) * -1);
|
|
201
201
|
--pf-v5-c-table__compound-expansion-toggle__button--after--Left: calc(var(--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base) * -1);
|
|
@@ -209,60 +209,61 @@
|
|
|
209
209
|
--pf-v5-c-table--m-compact--cell--first-last-child--PaddingRight: var(--pf-v5-global--spacer--md);
|
|
210
210
|
--pf-v5-c-table--m-compact--cell--first-last-child--xl--PaddingLeft: var(--pf-v5-global--spacer--lg);
|
|
211
211
|
--pf-v5-c-table--m-compact--cell--first-last-child--xl--PaddingRight: var(--pf-v5-global--spacer--lg);
|
|
212
|
-
--pf-v5-c-table--m-compact--FontSize: var(--pf-
|
|
212
|
+
--pf-v5-c-table--m-compact--FontSize: var(--pf-t--global--font--size--body);
|
|
213
213
|
--pf-v5-c-table--m-compact__expandable-row-content--PaddingTop: var(--pf-v5-global--spacer--lg);
|
|
214
214
|
--pf-v5-c-table--m-compact__expandable-row-content--PaddingRight: var(--pf-v5-global--spacer--lg);
|
|
215
215
|
--pf-v5-c-table--m-compact__expandable-row-content--PaddingBottom: var(--pf-v5-global--spacer--lg);
|
|
216
216
|
--pf-v5-c-table--m-compact__expandable-row-content--PaddingLeft: var(--pf-v5-global--spacer--lg);
|
|
217
217
|
--pf-v5-c-table--nested--first-last-child--PaddingRight: var(--pf-v5-c-table--m-compact--cell--first-last-child--PaddingLeft);
|
|
218
218
|
--pf-v5-c-table--nested--first-last-child--PaddingLeft: var(--pf-v5-c-table--m-compact--cell--first-last-child--PaddingRight);
|
|
219
|
-
--pf-v5-c-table__expandable-row--m-expanded--BorderBottomColor: var(--pf-
|
|
219
|
+
--pf-v5-c-table__expandable-row--m-expanded--BorderBottomColor: var(--pf-t--global--border--color--default);
|
|
220
220
|
--pf-v5-c-table__tr--m-clickable--BoxShadow--top: var(--pf-v5-c-table__tr--BoxShadow--top--base);
|
|
221
221
|
--pf-v5-c-table__tr--m-clickable--BackgroundColor: transparent;
|
|
222
222
|
--pf-v5-c-table__tr--m-clickable--BoxShadow: none;
|
|
223
|
+
--pf-v5-c-table__tr--m-clickable--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
223
224
|
--pf-v5-c-table__tr--m-clickable--OutlineOffset: calc(-1 * var(--pf-v5-global--spacer--xs));
|
|
224
|
-
--pf-v5-c-table__tr--m-clickable--hover--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-
|
|
225
|
-
--pf-v5-c-table__tr--m-clickable--hover--BackgroundColor: var(--pf-
|
|
226
|
-
--pf-v5-c-table__tr--m-clickable--focus--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-
|
|
227
|
-
--pf-v5-c-table__tr--m-clickable--focus--BackgroundColor: var(--pf-
|
|
228
|
-
--pf-v5-c-table__tr--m-clickable--active--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-
|
|
229
|
-
--pf-v5-c-table__tr--m-clickable--active--BackgroundColor: var(--pf-
|
|
230
|
-
--pf-v5-c-table__tr--m-clickable--m-selected--BoxShadow: var(--pf-
|
|
225
|
+
--pf-v5-c-table__tr--m-clickable--hover--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
|
|
226
|
+
--pf-v5-c-table__tr--m-clickable--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
|
|
227
|
+
--pf-v5-c-table__tr--m-clickable--focus--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
|
|
228
|
+
--pf-v5-c-table__tr--m-clickable--focus--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
|
|
229
|
+
--pf-v5-c-table__tr--m-clickable--active--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
|
|
230
|
+
--pf-v5-c-table__tr--m-clickable--active--BackgroundColor: var(--pf-t--global--background--color--primary--selected);
|
|
231
|
+
--pf-v5-c-table__tr--m-clickable--m-selected--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom) inset, var(--pf-t--global--box-shadow--sm--bottom);
|
|
231
232
|
--pf-v5-c-table__tr--m-selected--BoxShadow--top: var(--pf-v5-c-table__tr--BoxShadow--top--base);
|
|
232
|
-
--pf-v5-c-table__tr--m-selected--BackgroundColor: var(--pf-
|
|
233
|
-
--pf-v5-c-table__tr--m-selected--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-
|
|
234
|
-
--pf-v5-c-table__tr--m-selected--OutlineOffset: calc(-1 * var(--pf-
|
|
233
|
+
--pf-v5-c-table__tr--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
|
|
234
|
+
--pf-v5-c-table__tr--m-selected--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
|
|
235
|
+
--pf-v5-c-table__tr--m-selected--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
235
236
|
--pf-v5-c-table__tr--m-selected--after--BorderLeftWidth: calc(2 * var(--pf-v5-c-table__expandable-row--after--border-width--base));
|
|
236
237
|
--pf-v5-c-table__tr--m-selected--after--BorderLeftColor: var(--pf-v5-global--active-color--100);
|
|
237
|
-
--pf-v5-c-table__tr--m-selected--m-selected--BoxShadow: var(--pf-
|
|
238
|
-
--pf-v5-c-table__tr--m-selected--hover__tr--m-selected--BoxShadow: var(--pf-
|
|
239
|
-
--pf-v5-c-table__tr--m-selected__tr--m-selected--hover--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-
|
|
238
|
+
--pf-v5-c-table__tr--m-selected--m-selected--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom);
|
|
239
|
+
--pf-v5-c-table__tr--m-selected--hover__tr--m-selected--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom) inset, var(--pf-t--global--box-shadow--sm--bottom);
|
|
240
|
+
--pf-v5-c-table__tr--m-selected__tr--m-selected--hover--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
|
|
240
241
|
--pf-v5-c-table__tbody--m-clickable--BoxShadow--top: var(--pf-v5-c-table__tr--BoxShadow--top--base);
|
|
241
242
|
--pf-v5-c-table__tbody--m-clickable--BoxShadow: none;
|
|
242
243
|
--pf-v5-c-table__tbody--m-clickable--BackgroundColor: transparent;
|
|
243
244
|
--pf-v5-c-table__tbody--m-clickable--OutlineOffset: calc(-1 * var(--pf-v5-global--spacer--xs));
|
|
244
|
-
--pf-v5-c-table__tbody--m-clickable--hover--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-
|
|
245
|
-
--pf-v5-c-table__tbody--m-clickable--hover--BackgroundColor: var(--pf-
|
|
246
|
-
--pf-v5-c-table__tbody--m-clickable--focus--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-
|
|
247
|
-
--pf-v5-c-table__tbody--m-clickable--focus--BackgroundColor: var(--pf-
|
|
248
|
-
--pf-v5-c-table__tbody--m-clickable--active--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-
|
|
249
|
-
--pf-v5-c-table__tbody--m-clickable--active--BackgroundColor: var(--pf-
|
|
250
|
-
--pf-v5-c-table__tbody--m-clickable--m-expanded--BorderColor: var(--pf-
|
|
251
|
-
--pf-v5-c-table__tbody--m-clickable--m-selected--hover__tr--BoxShadow: var(--pf-
|
|
252
|
-
--pf-v5-c-table__tbody--m-selected--BackgroundColor: var(--pf-
|
|
245
|
+
--pf-v5-c-table__tbody--m-clickable--hover--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
|
|
246
|
+
--pf-v5-c-table__tbody--m-clickable--hover--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
247
|
+
--pf-v5-c-table__tbody--m-clickable--focus--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
|
|
248
|
+
--pf-v5-c-table__tbody--m-clickable--focus--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
249
|
+
--pf-v5-c-table__tbody--m-clickable--active--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
|
|
250
|
+
--pf-v5-c-table__tbody--m-clickable--active--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
251
|
+
--pf-v5-c-table__tbody--m-clickable--m-expanded--BorderColor: var(--pf-t--global--border--color--active);
|
|
252
|
+
--pf-v5-c-table__tbody--m-clickable--m-selected--hover__tr--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom) inset, var(--pf-t--global--box-shadow--sm--bottom);
|
|
253
|
+
--pf-v5-c-table__tbody--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
253
254
|
--pf-v5-c-table__tbody--m-selected--BoxShadow--top: var(--pf-v5-c-table__tr--BoxShadow--top--base);
|
|
254
|
-
--pf-v5-c-table__tbody--m-selected--BoxShadow: var(--pf-v5-c-table__tbody--m-selected--BoxShadow--top), var(--pf-
|
|
255
|
+
--pf-v5-c-table__tbody--m-selected--BoxShadow: var(--pf-v5-c-table__tbody--m-selected--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
|
|
255
256
|
--pf-v5-c-table__tbody--m-selected--OutlineOffset: calc(-1 * var(--pf-v5-global--spacer--xs));
|
|
256
257
|
--pf-v5-c-table__tbody--m-selected--after--BorderLeftWidth: calc(2 * var(--pf-v5-c-table__expandable-row--after--border-width--base));
|
|
257
|
-
--pf-v5-c-table__tbody--m-selected--after--BorderLeftColor: var(--pf-
|
|
258
|
-
--pf-v5-c-table__tbody--m-selected--m-selected--BoxShadow: var(--pf-
|
|
259
|
-
--pf-v5-c-table__tbody--m-selected--hover__tbody--m-selected--BoxShadow: var(--pf-
|
|
260
|
-
--pf-v5-c-table__tbody--m-selected__tbody--m-selected--hover--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-
|
|
258
|
+
--pf-v5-c-table__tbody--m-selected--after--BorderLeftColor: var(--pf-t--global--border--color--active);
|
|
259
|
+
--pf-v5-c-table__tbody--m-selected--m-selected--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom);
|
|
260
|
+
--pf-v5-c-table__tbody--m-selected--hover__tbody--m-selected--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom) inset, var(--pf-t--global--box-shadow--sm--bottom);
|
|
261
|
+
--pf-v5-c-table__tbody--m-selected__tbody--m-selected--hover--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
|
|
261
262
|
--pf-v5-c-table__thead--m-nested-column-header--button--OutlineOffset: -0.1875rem;
|
|
262
263
|
--pf-v5-c-table__thead--m-nested-column-header__tr--PaddingTop: var(--pf-v5-global--spacer--xs);
|
|
263
264
|
--pf-v5-c-table__thead--m-nested-column-header__tr--PaddingBottom: var(--pf-v5-global--spacer--xs);
|
|
264
|
-
--pf-v5-c-table__subhead--Color: var(--pf-
|
|
265
|
-
--pf-v5-c-table--m-striped__tr--BackgroundColor: var(--pf-
|
|
265
|
+
--pf-v5-c-table__subhead--Color: var(--pf-t--global--text--color--subtle);
|
|
266
|
+
--pf-v5-c-table--m-striped__tr--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
266
267
|
--pf-v5-c-table--m-sticky-header--cell--ZIndex: var(--pf-v5-global--ZIndex--xs);
|
|
267
268
|
color: var(--pf-v5-global--Color--100);
|
|
268
269
|
width: 100%;
|
|
@@ -511,27 +512,27 @@
|
|
|
511
512
|
.pf-v5-c-table.pf-m-no-border-rows > tbody:where(.pf-v5-c-table__tbody) .pf-v5-c-table__control-row > .pf-v5-c-table__compound-expansion-toggle:first-child > ::before {
|
|
512
513
|
border-left-width: 0;
|
|
513
514
|
}
|
|
515
|
+
.pf-v5-c-table tr.pf-m-clickable:last-child {
|
|
516
|
+
border-bottom-color: transparent;
|
|
517
|
+
}
|
|
518
|
+
.pf-v5-c-table tr:where(.pf-v5-c-table__tr) {
|
|
519
|
+
position: relative;
|
|
520
|
+
}
|
|
521
|
+
.pf-v5-c-table tr:where(.pf-v5-c-table__tr)::before {
|
|
522
|
+
position: absolute;
|
|
523
|
+
inset: 0;
|
|
524
|
+
content: "";
|
|
525
|
+
background-color: var(--pf-v5-c-table__tr--m-clickable--BackgroundColor);
|
|
526
|
+
border-radius: var(--pf-v5-c-table__tr--m-clickable--BorderRadius);
|
|
527
|
+
}
|
|
514
528
|
.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable {
|
|
515
529
|
cursor: pointer;
|
|
516
|
-
background-color: var(--pf-v5-c-table__tr--m-clickable--BackgroundColor);
|
|
517
530
|
outline-offset: var(--pf-v5-c-table__tr--m-clickable--OutlineOffset);
|
|
518
531
|
box-shadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow);
|
|
519
532
|
}
|
|
520
|
-
.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:hover
|
|
521
|
-
box-shadow: var(--pf-v5-c-table__tr--m-clickable--m-selected--BoxShadow);
|
|
522
|
-
}
|
|
523
|
-
.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:hover {
|
|
524
|
-
--pf-v5-c-table__tr--m-clickable--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--hover--BoxShadow);
|
|
533
|
+
.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:hover, .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:focus, .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:active {
|
|
525
534
|
--pf-v5-c-table__tr--m-clickable--BackgroundColor: var(--pf-v5-c-table__tr--m-clickable--hover--BackgroundColor);
|
|
526
535
|
}
|
|
527
|
-
.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:focus {
|
|
528
|
-
--pf-v5-c-table__tr--m-clickable--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--focus--BoxShadow);
|
|
529
|
-
--pf-v5-c-table__tr--m-clickable--BackgroundColor: var(--pf-v5-c-table__tr--m-clickable--focus--BackgroundColor);
|
|
530
|
-
}
|
|
531
|
-
.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:active {
|
|
532
|
-
--pf-v5-c-table__tr--m-clickable--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--active--BoxShadow);
|
|
533
|
-
--pf-v5-c-table__tr--m-clickable--BackgroundColor: var(--pf-v5-c-table__tr--m-clickable--active--BackgroundColor);
|
|
534
|
-
}
|
|
535
536
|
.pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-selected {
|
|
536
537
|
--pf-v5-c-table__expandable-row--after--BorderLeftWidth: var(--pf-v5-c-table__tr--m-selected--after--BorderLeftWidth);
|
|
537
538
|
--pf-v5-c-table__expandable-row--after--BorderColor: var(--pf-v5-c-table__tr--m-selected--after--BorderLeftColor);
|