@patternfly/patternfly 4.170.0 → 4.173.0
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/RELEASE-NOTES.md +41 -1
- package/components/ContextSelector/context-selector.css +7 -2
- package/components/ContextSelector/context-selector.scss +16 -11
- package/components/Dropdown/dropdown.css +7 -0
- package/components/Dropdown/dropdown.scss +6 -0
- package/components/Masthead/masthead.css +9 -6
- package/components/Masthead/masthead.scss +12 -5
- package/components/Menu/menu.css +1 -0
- package/components/Menu/menu.scss +1 -0
- package/components/MenuToggle/menu-toggle.css +13 -0
- package/components/MenuToggle/menu-toggle.scss +26 -12
- package/components/Nav/nav.css +2 -2
- package/components/Nav/nav.scss +4 -4
- package/components/NumberInput/number-input.css +9 -6
- package/components/NumberInput/number-input.scss +2 -10
- package/components/OptionsMenu/options-menu.css +13 -2
- package/components/OptionsMenu/options-menu.scss +19 -7
- package/components/Pagination/pagination.css +9 -1
- package/components/Pagination/pagination.scss +3 -1
- package/components/ProgressStepper/progress-stepper.css +5 -0
- package/components/ProgressStepper/progress-stepper.scss +6 -0
- package/components/Select/select.css +11 -0
- package/components/Select/select.scss +14 -0
- package/components/Sidebar/sidebar.css +1 -0
- package/components/Sidebar/sidebar.scss +1 -0
- package/components/Table/table-scrollable.css +2 -0
- package/components/Table/table-scrollable.scss +2 -0
- package/components/Table/table-tree-view.css +7 -0
- package/components/Table/table-tree-view.scss +8 -0
- package/components/Table/table.css +1 -1
- package/components/Table/table.scss +1 -1
- package/components/Toolbar/toolbar.css +1 -0
- package/components/Toolbar/toolbar.scss +1 -0
- package/docs/components/Table/examples/Table.md +242 -172
- package/docs/demos/DataList/examples/DataList.md +2 -3
- package/docs/demos/Table/examples/Table.md +21 -69
- package/docs/demos/Toolbar/examples/Toolbar.md +3 -10
- package/package.json +1 -1
- package/patternfly-no-reset.css +90 -20
- package/patternfly.css +90 -20
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/placeholders.scss +12 -0
|
@@ -31,6 +31,8 @@
|
|
|
31
31
|
--pf-c-options-menu__toggle-icon--MarginRight: var(--pf-global--spacer--sm);
|
|
32
32
|
--pf-c-options-menu__toggle-icon--MarginLeft: var(--pf-global--spacer--md);
|
|
33
33
|
--pf-c-options-menu--m-top--m-expanded__toggle-icon--Rotate: 180deg;
|
|
34
|
+
--pf-c-options-menu--m-plain__toggle-icon--Color: var(--pf-global--Color--200);
|
|
35
|
+
--pf-c-options-menu--m-plain--hover__toggle-icon--Color: var(--pf-global--Color--100);
|
|
34
36
|
|
|
35
37
|
// Text toggle button
|
|
36
38
|
--pf-c-options-menu__toggle-button--BackgroundColor: transparent;
|
|
@@ -153,15 +155,19 @@
|
|
|
153
155
|
}
|
|
154
156
|
}
|
|
155
157
|
|
|
156
|
-
&.pf-m-plain
|
|
157
|
-
--pf-c-options-menu__toggle--
|
|
158
|
-
--pf-c-options-menu__toggle--PaddingLeft: var(--pf-c-options-menu__toggle--m-plain--PaddingLeft);
|
|
158
|
+
&.pf-m-plain {
|
|
159
|
+
--pf-c-options-menu__toggle-icon--Color: var(--pf-c-options-menu--m-plain__toggle-icon--Color);
|
|
159
160
|
|
|
160
|
-
|
|
161
|
-
|
|
161
|
+
&:not(.pf-m-text) {
|
|
162
|
+
--pf-c-options-menu__toggle--PaddingRight: var(--pf-c-options-menu__toggle--m-plain--PaddingRight);
|
|
163
|
+
--pf-c-options-menu__toggle--PaddingLeft: var(--pf-c-options-menu__toggle--m-plain--PaddingLeft);
|
|
162
164
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
+
display: inline-block;
|
|
166
|
+
color: var(--pf-c-options-menu__toggle--m-plain--Color);
|
|
167
|
+
|
|
168
|
+
.pf-c-options-menu__toggle-button-icon {
|
|
169
|
+
line-height: var(--pf-c-options-menu__toggle--LineHeight);
|
|
170
|
+
}
|
|
165
171
|
}
|
|
166
172
|
|
|
167
173
|
&:hover,
|
|
@@ -170,6 +176,7 @@
|
|
|
170
176
|
&:focus,
|
|
171
177
|
.pf-c-options-menu.pf-m-expanded > & {
|
|
172
178
|
--pf-c-options-menu__toggle--m-plain--Color: var(--pf-c-options-menu__toggle--m-plain--hover--Color);
|
|
179
|
+
--pf-c-options-menu--m-plain__toggle-icon--Color: var(--pf-c-options-menu--m-plain--hover__toggle-icon--Color);
|
|
173
180
|
}
|
|
174
181
|
|
|
175
182
|
&.pf-m-disabled,
|
|
@@ -207,6 +214,11 @@
|
|
|
207
214
|
@include pf-text-overflow;
|
|
208
215
|
}
|
|
209
216
|
|
|
217
|
+
.pf-c-options-menu__toggle-icon,
|
|
218
|
+
.pf-c-options-menu__toggle-button-icon {
|
|
219
|
+
color: var(--pf-c-options-menu__toggle-icon--Color, inherit);
|
|
220
|
+
}
|
|
221
|
+
|
|
210
222
|
.pf-c-options-menu__toggle-icon {
|
|
211
223
|
margin-right: var(--pf-c-options-menu__toggle-icon--MarginRight);
|
|
212
224
|
margin-left: var(--pf-c-options-menu__toggle-icon--MarginLeft);
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
.pf-c-pagination__nav-page-select .pf-c-form-control {
|
|
2
|
+
appearance: textfield;
|
|
3
|
+
}
|
|
4
|
+
.pf-c-pagination__nav-page-select .pf-c-form-control::-webkit-inner-spin-button, .pf-c-pagination__nav-page-select .pf-c-form-control::-webkit-outer-spin-button {
|
|
5
|
+
appearance: none;
|
|
6
|
+
margin: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
1
9
|
.pf-c-pagination {
|
|
2
10
|
--pf-c-pagination--child--MarginRight: var(--pf-global--spacer--lg);
|
|
3
11
|
--pf-c-pagination--m-bottom--child--MarginRight: 0;
|
|
@@ -26,7 +34,7 @@
|
|
|
26
34
|
--pf-c-pagination__nav-page-select--PaddingLeft: var(--pf-global--spacer--md);
|
|
27
35
|
--pf-c-pagination__nav-page-select--PaddingRight: var(--pf-global--spacer--md);
|
|
28
36
|
--pf-c-pagination__nav-page-select--child--MarginRight: var(--pf-global--spacer--xs);
|
|
29
|
-
--pf-c-pagination__nav-page-select--c-form-control--width-base:
|
|
37
|
+
--pf-c-pagination__nav-page-select--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
30
38
|
--pf-c-pagination__nav-page-select--c-form-control--width-chars: 2;
|
|
31
39
|
--pf-c-pagination__nav-page-select--c-form-control--Width: calc(var(--pf-c-pagination__nav-page-select--c-form-control--width-base) + (var(--pf-c-pagination__nav-page-select--c-form-control--width-chars) * 1ch));
|
|
32
40
|
--pf-c-pagination__total-items--Display: block;
|
|
@@ -37,7 +37,7 @@ $pf-c-pagination--breakpoint-map: build-breakpoint-map();
|
|
|
37
37
|
--pf-c-pagination__nav-page-select--PaddingLeft: var(--pf-global--spacer--md);
|
|
38
38
|
--pf-c-pagination__nav-page-select--PaddingRight: var(--pf-global--spacer--md);
|
|
39
39
|
--pf-c-pagination__nav-page-select--child--MarginRight: var(--pf-global--spacer--xs);
|
|
40
|
-
--pf-c-pagination__nav-page-select--c-form-control--width-base:
|
|
40
|
+
--pf-c-pagination__nav-page-select--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
41
41
|
--pf-c-pagination__nav-page-select--c-form-control--width-chars: 2;
|
|
42
42
|
--pf-c-pagination__nav-page-select--c-form-control--Width: calc(var(--pf-c-pagination__nav-page-select--c-form-control--width-base) + (var(--pf-c-pagination__nav-page-select--c-form-control--width-chars) * 1ch));
|
|
43
43
|
|
|
@@ -257,6 +257,8 @@ $pf-c-pagination--breakpoint-map: build-breakpoint-map();
|
|
|
257
257
|
|
|
258
258
|
.pf-c-form-control {
|
|
259
259
|
width: var(--pf-c-pagination__nav-page-select--c-form-control--Width);
|
|
260
|
+
|
|
261
|
+
@extend %pf-remove-num-arrows;
|
|
260
262
|
}
|
|
261
263
|
}
|
|
262
264
|
|
|
@@ -80,6 +80,8 @@
|
|
|
80
80
|
--pf-c-progress-stepper__step-description--Color: var(--pf-global--Color--200);
|
|
81
81
|
--pf-c-progress-stepper__step-description--TextAlign: left;
|
|
82
82
|
--pf-c-progress-stepper--m-center__step-description--TextAlign: center;
|
|
83
|
+
--pf-c-progress-stepper--m-center__step-description--MarginRight: 0;
|
|
84
|
+
--pf-c-progress-stepper--m-center__step-description--MarginLeft: 0;
|
|
83
85
|
position: relative;
|
|
84
86
|
display: grid;
|
|
85
87
|
grid-auto-flow: var(--pf-c-progress-stepper--GridAutoFlow);
|
|
@@ -170,6 +172,9 @@
|
|
|
170
172
|
.pf-c-progress-stepper__step.pf-m-info {
|
|
171
173
|
--pf-c-progress-stepper__step-icon--Color: var(--pf-global--info-color--100);
|
|
172
174
|
}
|
|
175
|
+
.pf-c-progress-stepper__step:last-child {
|
|
176
|
+
--pf-c-progress-stepper__step-main--MarginBottom: 0;
|
|
177
|
+
}
|
|
173
178
|
|
|
174
179
|
.pf-c-progress-stepper__step-connector {
|
|
175
180
|
position: relative;
|
|
@@ -102,6 +102,8 @@
|
|
|
102
102
|
--pf-c-progress-stepper__step-description--Color: var(--pf-global--Color--200);
|
|
103
103
|
--pf-c-progress-stepper__step-description--TextAlign: left;
|
|
104
104
|
--pf-c-progress-stepper--m-center__step-description--TextAlign: center;
|
|
105
|
+
--pf-c-progress-stepper--m-center__step-description--MarginRight: 0;
|
|
106
|
+
--pf-c-progress-stepper--m-center__step-description--MarginLeft: 0;
|
|
105
107
|
|
|
106
108
|
position: relative;
|
|
107
109
|
display: grid;
|
|
@@ -206,6 +208,10 @@
|
|
|
206
208
|
&.pf-m-info {
|
|
207
209
|
--pf-c-progress-stepper__step-icon--Color: var(--pf-global--info-color--100);
|
|
208
210
|
}
|
|
211
|
+
|
|
212
|
+
&:last-child {
|
|
213
|
+
--pf-c-progress-stepper__step-main--MarginBottom: 0;
|
|
214
|
+
}
|
|
209
215
|
}
|
|
210
216
|
|
|
211
217
|
// The step icon wrapper provides a container on which to use the before for the line connecting the steps
|
|
@@ -80,6 +80,8 @@
|
|
|
80
80
|
--pf-c-select__toggle-arrow--MarginRight: var(--pf-global--spacer--sm);
|
|
81
81
|
--pf-c-select__toggle-arrow--with-clear--MarginLeft: var(--pf-global--spacer--sm);
|
|
82
82
|
--pf-c-select__toggle-arrow--m-top--m-expanded__toggle-arrow--Rotate: 180deg;
|
|
83
|
+
--pf-c-select--m-plain__toggle-arrow--Color: var(--pf-global--Color--200);
|
|
84
|
+
--pf-c-select--m-plain--hover__toggle-arrow--Color: var(--pf-global--Color--100);
|
|
83
85
|
--pf-c-select__toggle-clear--PaddingRight: var(--pf-global--spacer--sm);
|
|
84
86
|
--pf-c-select__toggle-clear--PaddingLeft: var(--pf-global--spacer--md);
|
|
85
87
|
--pf-c-select__toggle-clear--toggle-button--PaddingLeft: var(--pf-global--spacer--sm);
|
|
@@ -257,9 +259,15 @@
|
|
|
257
259
|
--pf-c-select__toggle--before--BorderBottomColor: var(--pf-c-select__toggle--m-expanded--before--BorderBottomColor);
|
|
258
260
|
--pf-c-select__toggle--before--BorderBottomWidth: var(--pf-c-select__toggle--m-expanded--before--BorderBottomWidth);
|
|
259
261
|
}
|
|
262
|
+
.pf-c-select__toggle.pf-m-plain {
|
|
263
|
+
--pf-c-select__toggle-arrow--Color: var(--pf-c-select--m-plain__toggle-arrow--Color);
|
|
264
|
+
}
|
|
260
265
|
.pf-c-select__toggle.pf-m-plain::before {
|
|
261
266
|
border-color: var(--pf-c-select__toggle--m-plain--before--BorderColor);
|
|
262
267
|
}
|
|
268
|
+
.pf-c-select__toggle.pf-m-plain:hover, .pf-c-select__toggle.pf-m-plain:active, .pf-c-select__toggle.pf-m-plain.pf-m-active, .pf-c-select__toggle.pf-m-plain:focus, .pf-c-select.pf-m-expanded > .pf-c-select__toggle.pf-m-plain {
|
|
269
|
+
--pf-c-select--m-plain__toggle-arrow--Color: var(--pf-c-select--m-plain--hover__toggle-arrow--Color);
|
|
270
|
+
}
|
|
263
271
|
.pf-c-select__toggle.pf-m-typeahead {
|
|
264
272
|
--pf-c-select__toggle--PaddingTop: 0;
|
|
265
273
|
--pf-c-select__toggle--PaddingRight: 0;
|
|
@@ -288,6 +296,9 @@
|
|
|
288
296
|
--pf-c-select__toggle-text--Color: var(--pf-c-select__toggle--m-placeholder__toggle-text--Color);
|
|
289
297
|
}
|
|
290
298
|
|
|
299
|
+
.pf-c-select__toggle-arrow {
|
|
300
|
+
color: var(--pf-c-select__toggle-arrow--Color, inherit);
|
|
301
|
+
}
|
|
291
302
|
* + .pf-c-select__toggle-arrow {
|
|
292
303
|
margin-right: var(--pf-c-select__toggle-arrow--MarginRight);
|
|
293
304
|
margin-left: var(--pf-c-select__toggle-arrow--MarginLeft);
|
|
@@ -95,6 +95,8 @@
|
|
|
95
95
|
--pf-c-select__toggle-arrow--MarginRight: var(--pf-global--spacer--sm);
|
|
96
96
|
--pf-c-select__toggle-arrow--with-clear--MarginLeft: var(--pf-global--spacer--sm);
|
|
97
97
|
--pf-c-select__toggle-arrow--m-top--m-expanded__toggle-arrow--Rotate: 180deg;
|
|
98
|
+
--pf-c-select--m-plain__toggle-arrow--Color: var(--pf-global--Color--200);
|
|
99
|
+
--pf-c-select--m-plain--hover__toggle-arrow--Color: var(--pf-global--Color--100);
|
|
98
100
|
|
|
99
101
|
// Toggle button
|
|
100
102
|
--pf-c-select__toggle-clear--PaddingRight: var(--pf-global--spacer--sm);
|
|
@@ -323,9 +325,19 @@
|
|
|
323
325
|
}
|
|
324
326
|
|
|
325
327
|
&.pf-m-plain {
|
|
328
|
+
--pf-c-select__toggle-arrow--Color: var(--pf-c-select--m-plain__toggle-arrow--Color);
|
|
329
|
+
|
|
326
330
|
&::before {
|
|
327
331
|
border-color: var(--pf-c-select__toggle--m-plain--before--BorderColor);
|
|
328
332
|
}
|
|
333
|
+
|
|
334
|
+
&:hover,
|
|
335
|
+
&:active,
|
|
336
|
+
&.pf-m-active,
|
|
337
|
+
&:focus,
|
|
338
|
+
.pf-c-select.pf-m-expanded > & {
|
|
339
|
+
--pf-c-select--m-plain__toggle-arrow--Color: var(--pf-c-select--m-plain--hover__toggle-arrow--Color);
|
|
340
|
+
}
|
|
329
341
|
}
|
|
330
342
|
|
|
331
343
|
&.pf-m-typeahead {
|
|
@@ -363,6 +375,8 @@
|
|
|
363
375
|
}
|
|
364
376
|
|
|
365
377
|
.pf-c-select__toggle-arrow {
|
|
378
|
+
color: var(--pf-c-select__toggle-arrow--Color, inherit);
|
|
379
|
+
|
|
366
380
|
* + & {
|
|
367
381
|
margin-right: var(--pf-c-select__toggle-arrow--MarginRight);
|
|
368
382
|
margin-left: var(--pf-c-select__toggle-arrow--MarginLeft);
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
--pf-c-sidebar--m-split__panel--Position: static;
|
|
22
22
|
--pf-c-sidebar--m-split__panel--Top: auto;
|
|
23
23
|
--pf-c-sidebar--m-split--m-panel-right__panel--Order: 1;
|
|
24
|
+
--pf-c-sidebar__panel--FlexBasis--base: auto;
|
|
24
25
|
--pf-c-sidebar__panel--BoxShadow--base: 0 0.25rem 0.25rem -0.25rem rgba(3, 3, 3, 0.16);
|
|
25
26
|
--pf-c-sidebar__panel--BoxShadow: var(--pf-c-sidebar__panel--BoxShadow--base);
|
|
26
27
|
--pf-c-sidebar__panel--Top: 0;
|
|
@@ -37,6 +37,7 @@ $pf-c-sidebar__panel--list--width: ("default", 25, 33, 50, 66, 75, 100);
|
|
|
37
37
|
--pf-c-sidebar--m-split--m-panel-right__panel--Order: 1;
|
|
38
38
|
|
|
39
39
|
// Panel
|
|
40
|
+
--pf-c-sidebar__panel--FlexBasis--base: auto;
|
|
40
41
|
--pf-c-sidebar__panel--BoxShadow--base: #{0 pf-size-prem(4px) pf-size-prem(4px) pf-size-prem(-4px) rgba($pf-color-black-1000, .16)}; // modified so the shadow is only visible on the bottom of the element
|
|
41
42
|
--pf-c-sidebar__panel--BoxShadow: var(--pf-c-sidebar__panel--BoxShadow--base);
|
|
42
43
|
--pf-c-sidebar__panel--Top: 0;
|
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
--pf-c-table__sticky-column--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
8
8
|
--pf-c-table__sticky-column--m-border-right--before--BorderRightWidth: var(--pf-global--BorderWidth--sm);
|
|
9
9
|
--pf-c-table__sticky-column--m-border-right--before--BorderRightColor: var(--pf-global--BorderColor--100);
|
|
10
|
+
--pf-c-table__sticky-column--m-border-left--before--BorderLeftWidth: var(--pf-global--BorderWidth--sm);
|
|
11
|
+
--pf-c-table__sticky-column--m-border-left--before--BorderLeftColor: var(--pf-global--BorderColor--100);
|
|
10
12
|
--pf-c-table--m-sticky-header--thead__sticky-column--ZIndex: calc(var(--pf-c-table__sticky-column--ZIndex) + 1);
|
|
11
13
|
}
|
|
12
14
|
.pf-c-table .pf-c-table__sticky-column {
|
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
--pf-c-table__sticky-column--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
8
8
|
--pf-c-table__sticky-column--m-border-right--before--BorderRightWidth: var(--pf-global--BorderWidth--sm);
|
|
9
9
|
--pf-c-table__sticky-column--m-border-right--before--BorderRightColor: var(--pf-global--BorderColor--100);
|
|
10
|
+
--pf-c-table__sticky-column--m-border-left--before--BorderLeftWidth: var(--pf-global--BorderWidth--sm);
|
|
11
|
+
--pf-c-table__sticky-column--m-border-left--before--BorderLeftColor: var(--pf-global--BorderColor--100);
|
|
10
12
|
--pf-c-table--m-sticky-header--thead__sticky-column--ZIndex: calc(var(--pf-c-table__sticky-column--ZIndex) + 1);
|
|
11
13
|
|
|
12
14
|
.pf-c-table__sticky-column {
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
--pf-c-table__tree-view-main--nested-indent--base: calc(var(--pf-c-table__tree-view-main--indent--base) - var(--pf-global--spacer--md));
|
|
4
4
|
--pf-c-table__tree-view-main--PaddingLeft: var(--pf-c-table__tree-view-main--indent--base);
|
|
5
5
|
--pf-c-table__tree-view-main--MarginLeft: calc(var(--pf-c-table--cell--PaddingLeft) * -1);
|
|
6
|
+
--pf-c-table__tree-view-main--c-table__check--PaddingRight: var(--pf-global--spacer--sm);
|
|
7
|
+
--pf-c-table__tree-view-main--c-table__check--PaddingLeft: var(--pf-global--spacer--sm);
|
|
6
8
|
--pf-c-table__tree-view-main--c-table__check--MarginRight: var(--pf-global--spacer--sm);
|
|
7
9
|
--pf-c-table__tree-view-icon--MinWidth: var(--pf-global--FontSize--md);
|
|
8
10
|
--pf-c-table__tree-view-icon--MarginRight: var(--pf-global--spacer--sm);
|
|
@@ -63,6 +65,11 @@
|
|
|
63
65
|
.pf-c-table__tree-view-main > .pf-c-table__check {
|
|
64
66
|
margin-right: var(--pf-c-table__tree-view-main--c-table__check--MarginRight);
|
|
65
67
|
}
|
|
68
|
+
.pf-c-table__tree-view-main > .pf-c-table__check label {
|
|
69
|
+
padding-right: var(--pf-c-table__tree-view-main--c-table__check--PaddingRight);
|
|
70
|
+
padding-left: var(--pf-c-table__tree-view-main--c-table__check--PaddingLeft);
|
|
71
|
+
margin: 0 calc(var(--pf-c-table__tree-view-main--c-table__check--MarginRight) * -1) 0 0;
|
|
72
|
+
}
|
|
66
73
|
|
|
67
74
|
.pf-c-table__tree-view-text {
|
|
68
75
|
display: flex;
|
|
@@ -9,6 +9,8 @@ $pf-c-tree-view--MaxDepth: 10;
|
|
|
9
9
|
--pf-c-table__tree-view-main--MarginLeft: calc(var(--pf-c-table--cell--PaddingLeft) * -1);
|
|
10
10
|
|
|
11
11
|
// check
|
|
12
|
+
--pf-c-table__tree-view-main--c-table__check--PaddingRight: var(--pf-global--spacer--sm);
|
|
13
|
+
--pf-c-table__tree-view-main--c-table__check--PaddingLeft: var(--pf-global--spacer--sm);
|
|
12
14
|
--pf-c-table__tree-view-main--c-table__check--MarginRight: var(--pf-global--spacer--sm);
|
|
13
15
|
|
|
14
16
|
// icon
|
|
@@ -61,6 +63,12 @@ $pf-c-tree-view--MaxDepth: 10;
|
|
|
61
63
|
> .pf-c-table__check {
|
|
62
64
|
margin-right: var(--pf-c-table__tree-view-main--c-table__check--MarginRight);
|
|
63
65
|
}
|
|
66
|
+
|
|
67
|
+
> .pf-c-table__check label {
|
|
68
|
+
padding-right: var(--pf-c-table__tree-view-main--c-table__check--PaddingRight);
|
|
69
|
+
padding-left: var(--pf-c-table__tree-view-main--c-table__check--PaddingLeft);
|
|
70
|
+
margin: 0 calc(var(--pf-c-table__tree-view-main--c-table__check--MarginRight) * -1) 0 0;
|
|
71
|
+
}
|
|
64
72
|
}
|
|
65
73
|
|
|
66
74
|
.pf-c-table__tree-view-text {
|
|
@@ -382,7 +382,7 @@
|
|
|
382
382
|
border-right: var(--pf-c-table--cell--m-border-right--before--BorderRightWidth) solid var(--pf-c-table--cell--m-border-right--before--BorderRightColor);
|
|
383
383
|
}
|
|
384
384
|
.pf-c-table tr > *.pf-m-border-left::before {
|
|
385
|
-
border-left: var(--pf-c-table--cell--m-border-
|
|
385
|
+
border-left: var(--pf-c-table--cell--m-border-left--before--BorderLeftWidth) solid var(--pf-c-table--cell--m-border-left--before--BorderLeftColor);
|
|
386
386
|
}
|
|
387
387
|
.pf-c-table caption {
|
|
388
388
|
padding-top: var(--pf-c-table-caption--PaddingTop);
|
|
@@ -440,7 +440,7 @@
|
|
|
440
440
|
}
|
|
441
441
|
|
|
442
442
|
&.pf-m-border-left::before {
|
|
443
|
-
border-left: var(--pf-c-table--cell--m-border-
|
|
443
|
+
border-left: var(--pf-c-table--cell--m-border-left--before--BorderLeftWidth) solid var(--pf-c-table--cell--m-border-left--before--BorderLeftColor);
|
|
444
444
|
}
|
|
445
445
|
}
|
|
446
446
|
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
--pf-c-toolbar--PaddingTop: var(--pf-global--spacer--md);
|
|
69
69
|
--pf-c-toolbar--PaddingBottom: var(--pf-global--spacer--md);
|
|
70
70
|
--pf-c-toolbar__item--Display: block;
|
|
71
|
+
--pf-c-toolbar__item--MinWidth--base: auto;
|
|
71
72
|
--pf-c-toolbar__group--Display: flex;
|
|
72
73
|
--pf-c-toolbar--m-sticky--ZIndex: var(--pf-global--ZIndex--xs);
|
|
73
74
|
--pf-c-toolbar--m-sticky--BoxShadow: var(--pf-global--BoxShadow--sm-bottom);
|