@patternfly/patternfly 5.0.0-alpha.67 → 5.0.0-alpha.69
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/components/InputGroup/input-group.css +0 -2
- package/components/InputGroup/input-group.scss +0 -4
- package/components/NumberInput/number-input.css +4 -2
- package/components/NumberInput/number-input.scss +5 -2
- package/components/Pagination/pagination.css +27 -27
- package/components/Pagination/pagination.scss +19 -16
- package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +4 -4
- package/docs/components/DatePicker/examples/DatePicker.md +6 -1
- package/docs/components/FileUpload/examples/FileUpload.md +21 -16
- package/docs/components/Form/examples/Form.md +51 -31
- package/docs/components/FormControl/examples/FormControl.md +1 -1
- package/docs/components/InlineEdit/examples/InlineEdit.md +11 -156
- package/docs/components/InputGroup/examples/InputGroup.md +9 -4
- package/docs/components/Login/examples/Login.md +20 -17
- package/docs/components/NumberInput/examples/NumberInput.md +7 -2
- package/docs/components/Pagination/examples/Pagination.md +1 -1
- package/docs/components/Select/examples/Select.md +4 -2
- package/docs/components/Wizard/examples/Wizard.md +7 -70
- package/docs/demos/Alert/examples/Alert.md +26 -8
- package/docs/demos/Button/examples/Button.md +12 -12
- package/docs/demos/Form/examples/BasicForms.md +18 -18
- package/docs/demos/HelperText/examples/HelperText.md +18 -3
- package/docs/demos/Modal/examples/Modal.md +6 -6
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +1 -1
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +4 -4
- package/docs/demos/Toolbar/examples/Toolbar.md +11 -1
- package/docs/demos/Wizard/examples/Wizard.md +0 -56
- package/package.json +1 -1
- package/patternfly-no-globals.css +29 -29
- package/patternfly-theme-dark-unversioned.css +29 -29
- package/patternfly.css +29 -29
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -20,8 +20,6 @@
|
|
|
20
20
|
--pf-v5-c-input-group__item--m-disabled__text--Color: var(--pf-v5-global--disabled-color--100);
|
|
21
21
|
--pf-v5-c-input-group__item--m-disabled--BorderBottomColor: transparent;
|
|
22
22
|
--pf-v5-c-input-group__item--m-disabled--BackgroundColor: var(--pf-v5-global--disabled-color--300);
|
|
23
|
-
--pf-v5-c-input-group--c-form-control--invalid--ZIndex: var(--pf-v5-global--ZIndex--xs);
|
|
24
|
-
--pf-v5-c-input-group--c-form-control--MarginRight: 0;
|
|
25
23
|
display: flex;
|
|
26
24
|
width: 100%;
|
|
27
25
|
}
|
|
@@ -34,10 +34,6 @@
|
|
|
34
34
|
--#{$input-group}__item--m-disabled--BorderBottomColor: transparent;
|
|
35
35
|
--#{$input-group}__item--m-disabled--BackgroundColor: var(--#{$pf-global}--disabled-color--300);
|
|
36
36
|
|
|
37
|
-
// Form control
|
|
38
|
-
--#{$input-group}--c-form-control--invalid--ZIndex: var(--#{$pf-global}--ZIndex--xs);
|
|
39
|
-
--#{$input-group}--c-form-control--MarginRight: 0;
|
|
40
|
-
|
|
41
37
|
display: flex;
|
|
42
38
|
width: 100%;
|
|
43
39
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
.pf-v5-c-number-input .pf-v5-c-form-control {
|
|
1
|
+
.pf-v5-c-number-input .pf-v5-c-form-control > :is(input) {
|
|
2
2
|
appearance: textfield;
|
|
3
3
|
}
|
|
4
|
-
.pf-v5-c-number-input .pf-v5-c-form-control::-webkit-inner-spin-button, .pf-v5-c-number-input .pf-v5-c-form-control::-webkit-outer-spin-button {
|
|
4
|
+
.pf-v5-c-number-input .pf-v5-c-form-control > :is(input)::-webkit-inner-spin-button, .pf-v5-c-number-input .pf-v5-c-form-control > :is(input)::-webkit-outer-spin-button {
|
|
5
5
|
appearance: none;
|
|
6
6
|
margin: 0;
|
|
7
7
|
}
|
|
@@ -27,6 +27,8 @@
|
|
|
27
27
|
}
|
|
28
28
|
.pf-v5-c-number-input .pf-v5-c-form-control {
|
|
29
29
|
width: var(--pf-v5-c-number-input--c-form-control--Width);
|
|
30
|
+
}
|
|
31
|
+
.pf-v5-c-number-input .pf-v5-c-form-control > :is(input) {
|
|
30
32
|
text-align: right;
|
|
31
33
|
}
|
|
32
34
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
.pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control {
|
|
1
|
+
.pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control > :is(input) {
|
|
2
2
|
appearance: textfield;
|
|
3
3
|
}
|
|
4
|
-
.pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control::-webkit-inner-spin-button, .pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control::-webkit-outer-spin-button {
|
|
4
|
+
.pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control > :is(input)::-webkit-inner-spin-button, .pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control > :is(input)::-webkit-outer-spin-button {
|
|
5
5
|
appearance: none;
|
|
6
6
|
margin: 0;
|
|
7
7
|
}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
--pf-v5-c-pagination--m-bottom--child--MarginRight: 0;
|
|
17
17
|
--pf-v5-c-pagination--m-bottom--child--md--MarginRight: var(--pf-v5-global--spacer--lg);
|
|
18
18
|
--pf-v5-c-pagination--m-compact--child--MarginRight: var(--pf-v5-global--spacer--sm);
|
|
19
|
-
--pf-v5-c-pagination--c-
|
|
19
|
+
--pf-v5-c-pagination--c-menu-toggle--FontSize: var(--pf-v5-global--FontSize--sm);
|
|
20
20
|
--pf-v5-c-pagination__nav--Display: none;
|
|
21
21
|
--pf-v5-c-pagination--m-display-summary__nav--Display: none;
|
|
22
22
|
--pf-v5-c-pagination--m-display-full__nav--Display: inline-flex;
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
--pf-v5-c-pagination--m-bottom--xl--PaddingRight: var(--pf-v5-global--spacer--lg);
|
|
61
61
|
--pf-v5-c-pagination--m-bottom--xl--PaddingLeft: var(--pf-v5-global--spacer--lg);
|
|
62
62
|
--pf-v5-c-pagination--m-bottom--m-sticky--BoxShadow: var(--pf-v5-global--BoxShadow--sm-top);
|
|
63
|
-
--pf-v5-c-pagination--c-
|
|
64
|
-
--pf-v5-c-pagination--m-display-summary--c-
|
|
65
|
-
--pf-v5-c-pagination--m-display-full--c-
|
|
63
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: none;
|
|
64
|
+
--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display: none;
|
|
65
|
+
--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display: inline-flex;
|
|
66
66
|
display: flex;
|
|
67
67
|
flex-wrap: wrap;
|
|
68
68
|
align-items: center;
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
--pf-v5-c-pagination--m-bottom--child--MarginRight: var(--pf-v5-c-pagination--m-bottom--child--md--MarginRight);
|
|
80
80
|
--pf-v5-c-pagination--m-bottom__nav-control--c-button--OutlineOffset: 0;
|
|
81
81
|
--pf-v5-c-pagination--m-bottom--BoxShadow: none;
|
|
82
|
-
--pf-v5-c-pagination--c-
|
|
82
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: inline-flex;
|
|
83
83
|
--pf-v5-c-pagination__nav--Display: inline-flex;
|
|
84
84
|
--pf-v5-c-pagination__total-items--Display: none;
|
|
85
85
|
}
|
|
@@ -95,8 +95,9 @@
|
|
|
95
95
|
.pf-v5-c-pagination > *:not(:last-child):not(.pf-v5-c-pagination__total-items) {
|
|
96
96
|
margin-right: var(--pf-v5-c-pagination--child--MarginRight);
|
|
97
97
|
}
|
|
98
|
-
.pf-v5-c-pagination .pf-v5-c-
|
|
99
|
-
display: var(--pf-v5-c-pagination--c-
|
|
98
|
+
.pf-v5-c-pagination .pf-v5-c-menu-toggle {
|
|
99
|
+
display: var(--pf-v5-c-pagination--c-menu-toggle--Display);
|
|
100
|
+
font-size: var(--pf-v5-c-pagination--c-menu-toggle--FontSize);
|
|
100
101
|
}
|
|
101
102
|
.pf-v5-c-pagination.pf-m-bottom {
|
|
102
103
|
--pf-v5-c-pagination--child--MarginRight: var(--pf-v5-c-pagination--m-bottom--child--MarginRight);
|
|
@@ -126,7 +127,7 @@
|
|
|
126
127
|
.pf-v5-c-pagination.pf-m-bottom .pf-v5-c-pagination__nav-page-select {
|
|
127
128
|
display: none;
|
|
128
129
|
}
|
|
129
|
-
.pf-v5-c-pagination.pf-m-bottom .pf-v5-c-
|
|
130
|
+
.pf-v5-c-pagination.pf-m-bottom .pf-v5-c-menu-toggle {
|
|
130
131
|
position: absolute;
|
|
131
132
|
display: block;
|
|
132
133
|
}
|
|
@@ -149,7 +150,10 @@
|
|
|
149
150
|
.pf-v5-c-pagination.pf-m-bottom .pf-v5-c-pagination__nav-page-select {
|
|
150
151
|
display: block;
|
|
151
152
|
}
|
|
152
|
-
.pf-v5-c-pagination.pf-m-bottom .pf-v5-c-
|
|
153
|
+
.pf-v5-c-pagination.pf-m-bottom .pf-v5-c-pagination__nav-page-select {
|
|
154
|
+
display: inline-flex;
|
|
155
|
+
}
|
|
156
|
+
.pf-v5-c-pagination.pf-m-bottom .pf-v5-c-menu-toggle {
|
|
153
157
|
position: relative;
|
|
154
158
|
}
|
|
155
159
|
.pf-v5-c-pagination.pf-m-bottom .pf-v5-c-pagination__nav {
|
|
@@ -174,9 +178,6 @@
|
|
|
174
178
|
padding: var(--pf-v5-c-pagination--m-sticky--md--PaddingTop) var(--pf-v5-c-pagination--m-sticky--md--PaddingRight) var(--pf-v5-c-pagination--m-sticky--md--PaddingBottom) var(--pf-v5-c-pagination--m-sticky--md--PaddingLeft);
|
|
175
179
|
}
|
|
176
180
|
}
|
|
177
|
-
.pf-v5-c-pagination .pf-v5-c-options-menu__toggle {
|
|
178
|
-
font-size: var(--pf-v5-c-pagination--c-options-menu__toggle--FontSize);
|
|
179
|
-
}
|
|
180
181
|
.pf-v5-c-pagination.pf-m-compact {
|
|
181
182
|
--pf-v5-c-pagination--child--MarginRight: var(--pf-v5-c-pagination--m-compact--child--MarginRight);
|
|
182
183
|
}
|
|
@@ -214,19 +215,18 @@
|
|
|
214
215
|
.pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control {
|
|
215
216
|
width: var(--pf-v5-c-pagination__nav-page-select--c-form-control--Width);
|
|
216
217
|
}
|
|
217
|
-
|
|
218
218
|
.pf-v5-c-pagination__total-items {
|
|
219
219
|
display: var(--pf-v5-c-pagination__total-items--Display);
|
|
220
220
|
}
|
|
221
221
|
|
|
222
222
|
.pf-v5-c-pagination.pf-m-display-summary {
|
|
223
223
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
|
|
224
|
-
--pf-v5-c-pagination--c-
|
|
224
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
|
|
225
225
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
|
|
226
226
|
}
|
|
227
227
|
.pf-v5-c-pagination.pf-m-display-full {
|
|
228
228
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
|
|
229
|
-
--pf-v5-c-pagination--c-
|
|
229
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
|
|
230
230
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
|
|
231
231
|
}
|
|
232
232
|
.pf-v5-c-pagination.pf-m-inset-none {
|
|
@@ -250,12 +250,12 @@
|
|
|
250
250
|
@media (min-width: 576px) {
|
|
251
251
|
.pf-v5-c-pagination.pf-m-display-summary-on-sm {
|
|
252
252
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
|
|
253
|
-
--pf-v5-c-pagination--c-
|
|
253
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
|
|
254
254
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
|
|
255
255
|
}
|
|
256
256
|
.pf-v5-c-pagination.pf-m-display-full-on-sm {
|
|
257
257
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
|
|
258
|
-
--pf-v5-c-pagination--c-
|
|
258
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
|
|
259
259
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
|
|
260
260
|
}
|
|
261
261
|
.pf-v5-c-pagination.pf-m-inset-none-on-sm {
|
|
@@ -280,12 +280,12 @@
|
|
|
280
280
|
@media (min-width: 768px) {
|
|
281
281
|
.pf-v5-c-pagination.pf-m-display-summary-on-md {
|
|
282
282
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
|
|
283
|
-
--pf-v5-c-pagination--c-
|
|
283
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
|
|
284
284
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
|
|
285
285
|
}
|
|
286
286
|
.pf-v5-c-pagination.pf-m-display-full-on-md {
|
|
287
287
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
|
|
288
|
-
--pf-v5-c-pagination--c-
|
|
288
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
|
|
289
289
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
|
|
290
290
|
}
|
|
291
291
|
.pf-v5-c-pagination.pf-m-inset-none-on-md {
|
|
@@ -310,12 +310,12 @@
|
|
|
310
310
|
@media (min-width: 992px) {
|
|
311
311
|
.pf-v5-c-pagination.pf-m-display-summary-on-lg {
|
|
312
312
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
|
|
313
|
-
--pf-v5-c-pagination--c-
|
|
313
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
|
|
314
314
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
|
|
315
315
|
}
|
|
316
316
|
.pf-v5-c-pagination.pf-m-display-full-on-lg {
|
|
317
317
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
|
|
318
|
-
--pf-v5-c-pagination--c-
|
|
318
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
|
|
319
319
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
|
|
320
320
|
}
|
|
321
321
|
.pf-v5-c-pagination.pf-m-inset-none-on-lg {
|
|
@@ -340,12 +340,12 @@
|
|
|
340
340
|
@media (min-width: 1200px) {
|
|
341
341
|
.pf-v5-c-pagination.pf-m-display-summary-on-xl {
|
|
342
342
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
|
|
343
|
-
--pf-v5-c-pagination--c-
|
|
343
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
|
|
344
344
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
|
|
345
345
|
}
|
|
346
346
|
.pf-v5-c-pagination.pf-m-display-full-on-xl {
|
|
347
347
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
|
|
348
|
-
--pf-v5-c-pagination--c-
|
|
348
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
|
|
349
349
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
|
|
350
350
|
}
|
|
351
351
|
.pf-v5-c-pagination.pf-m-inset-none-on-xl {
|
|
@@ -370,12 +370,12 @@
|
|
|
370
370
|
@media (min-width: 1450px) {
|
|
371
371
|
.pf-v5-c-pagination.pf-m-display-summary-on-2xl {
|
|
372
372
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
|
|
373
|
-
--pf-v5-c-pagination--c-
|
|
373
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
|
|
374
374
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
|
|
375
375
|
}
|
|
376
376
|
.pf-v5-c-pagination.pf-m-display-full-on-2xl {
|
|
377
377
|
--pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
|
|
378
|
-
--pf-v5-c-pagination--c-
|
|
378
|
+
--pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
|
|
379
379
|
--pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
|
|
380
380
|
}
|
|
381
381
|
.pf-v5-c-pagination.pf-m-inset-none-on-2xl {
|
|
@@ -18,7 +18,7 @@ $pf-v5-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
|
|
|
18
18
|
--#{$pagination}--m-compact--child--MarginRight: var(--#{$pf-global}--spacer--sm);
|
|
19
19
|
|
|
20
20
|
// dropdown
|
|
21
|
-
--#{$pagination}--c-
|
|
21
|
+
--#{$pagination}--c-menu-toggle--FontSize: var(--#{$pf-global}--FontSize--sm);
|
|
22
22
|
|
|
23
23
|
// nav
|
|
24
24
|
--#{$pagination}__nav--Display: none;
|
|
@@ -76,9 +76,9 @@ $pf-v5-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
|
|
|
76
76
|
--#{$pagination}--m-bottom--m-sticky--BoxShadow: var(--#{$pf-global}--BoxShadow--sm-top);
|
|
77
77
|
|
|
78
78
|
// options menu
|
|
79
|
-
--#{$pagination}--c-
|
|
80
|
-
--#{$pagination}--m-display-summary--c-
|
|
81
|
-
--#{$pagination}--m-display-full--c-
|
|
79
|
+
--#{$pagination}--c-menu-toggle--Display: none;
|
|
80
|
+
--#{$pagination}--m-display-summary--c-menu-toggle--Display: none;
|
|
81
|
+
--#{$pagination}--m-display-full--c-menu-toggle--Display: inline-flex;
|
|
82
82
|
|
|
83
83
|
@media screen and (min-width: $pf-v5-global--breakpoint--md) {
|
|
84
84
|
--#{$pagination}--m-bottom__nav-control--c-button--PaddingTop: var(--#{$pagination}--m-bottom__nav-control--c-button--md--PaddingTop);
|
|
@@ -88,7 +88,7 @@ $pf-v5-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
|
|
|
88
88
|
--#{$pagination}--m-bottom--child--MarginRight: var(--#{$pagination}--m-bottom--child--md--MarginRight);
|
|
89
89
|
--#{$pagination}--m-bottom__nav-control--c-button--OutlineOffset: 0;
|
|
90
90
|
--#{$pagination}--m-bottom--BoxShadow: none;
|
|
91
|
-
--#{$pagination}--c-
|
|
91
|
+
--#{$pagination}--c-menu-toggle--Display: inline-flex;
|
|
92
92
|
--#{$pagination}__nav--Display: inline-flex;
|
|
93
93
|
--#{$pagination}__total-items--Display: none;
|
|
94
94
|
}
|
|
@@ -113,8 +113,9 @@ $pf-v5-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
|
|
|
113
113
|
margin-right: var(--#{$pagination}--child--MarginRight);
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
.#{$
|
|
117
|
-
display: var(--#{$pagination}--c-
|
|
116
|
+
.#{$menu-toggle} {
|
|
117
|
+
display: var(--#{$pagination}--c-menu-toggle--Display);
|
|
118
|
+
font-size: var(--#{$pagination}--c-menu-toggle--FontSize);
|
|
118
119
|
}
|
|
119
120
|
|
|
120
121
|
&.pf-m-bottom {
|
|
@@ -153,7 +154,7 @@ $pf-v5-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
|
|
|
153
154
|
display: none;
|
|
154
155
|
}
|
|
155
156
|
|
|
156
|
-
.#{$
|
|
157
|
+
.#{$menu-toggle} {
|
|
157
158
|
position: absolute;
|
|
158
159
|
display: block;
|
|
159
160
|
}
|
|
@@ -179,7 +180,11 @@ $pf-v5-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
|
|
|
179
180
|
display: block;
|
|
180
181
|
}
|
|
181
182
|
|
|
182
|
-
.#{$
|
|
183
|
+
.#{$pagination}__nav-page-select {
|
|
184
|
+
display: inline-flex;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.#{$menu-toggle} {
|
|
183
188
|
position: relative;
|
|
184
189
|
}
|
|
185
190
|
|
|
@@ -208,10 +213,6 @@ $pf-v5-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
|
|
|
208
213
|
}
|
|
209
214
|
}
|
|
210
215
|
|
|
211
|
-
.#{$options-menu}__toggle {
|
|
212
|
-
font-size: var(--#{$pagination}--c-options-menu__toggle--FontSize);
|
|
213
|
-
}
|
|
214
|
-
|
|
215
216
|
&.pf-m-compact {
|
|
216
217
|
--#{$pagination}--child--MarginRight: var(--#{$pagination}--m-compact--child--MarginRight);
|
|
217
218
|
}
|
|
@@ -260,7 +261,9 @@ $pf-v5-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
|
|
|
260
261
|
.#{$form-control} {
|
|
261
262
|
width: var(--#{$pagination}__nav-page-select--c-form-control--Width);
|
|
262
263
|
|
|
263
|
-
|
|
264
|
+
> :is(input) {
|
|
265
|
+
@extend %pf-v5-remove-num-arrows;
|
|
266
|
+
}
|
|
264
267
|
}
|
|
265
268
|
}
|
|
266
269
|
|
|
@@ -277,13 +280,13 @@ $pf-v5-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
|
|
|
277
280
|
@include pf-v5-apply-breakpoint($breakpoint) {
|
|
278
281
|
&.pf-m-display-summary#{$breakpoint-name} {
|
|
279
282
|
--#{$pagination}__nav--Display: var(--#{$pagination}--m-display-summary__nav--Display);
|
|
280
|
-
--#{$pagination}--c-
|
|
283
|
+
--#{$pagination}--c-menu-toggle--Display: var(--#{$pagination}--m-display-summary--c-menu-toggle--Display);
|
|
281
284
|
--#{$pagination}__total-items--Display: var(--#{$pagination}--m-display-summary__total-items--Display);
|
|
282
285
|
}
|
|
283
286
|
|
|
284
287
|
&.pf-m-display-full#{$breakpoint-name} {
|
|
285
288
|
--#{$pagination}__nav--Display: var(--#{$pagination}--m-display-full__nav--Display);
|
|
286
|
-
--#{$pagination}--c-
|
|
289
|
+
--#{$pagination}--c-menu-toggle--Display: var(--#{$pagination}--m-display-full--c-menu-toggle--Display);
|
|
287
290
|
--#{$pagination}__total-items--Display: var(--#{$pagination}--m-display-full__total-items--Display);
|
|
288
291
|
}
|
|
289
292
|
|
|
@@ -31,7 +31,7 @@ cssPrefix: pf-v5-c-clipboard-copy
|
|
|
31
31
|
<br />
|
|
32
32
|
<div class="pf-v5-c-clipboard-copy">
|
|
33
33
|
<div class="pf-v5-c-clipboard-copy__group">
|
|
34
|
-
<div class="pf-v5-c-form-control">
|
|
34
|
+
<div class="pf-v5-c-form-control pf-m-readonly">
|
|
35
35
|
<input
|
|
36
36
|
readonly
|
|
37
37
|
type="text"
|
|
@@ -109,7 +109,7 @@ cssPrefix: pf-v5-c-clipboard-copy
|
|
|
109
109
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
110
110
|
</div>
|
|
111
111
|
</button>
|
|
112
|
-
<div class="pf-v5-c-form-control">
|
|
112
|
+
<div class="pf-v5-c-form-control pf-m-readonly">
|
|
113
113
|
<input
|
|
114
114
|
readonly
|
|
115
115
|
type="text"
|
|
@@ -149,7 +149,7 @@ cssPrefix: pf-v5-c-clipboard-copy
|
|
|
149
149
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
150
150
|
</div>
|
|
151
151
|
</button>
|
|
152
|
-
<div class="pf-v5-c-form-control">
|
|
152
|
+
<div class="pf-v5-c-form-control pf-m-readonly">
|
|
153
153
|
<input
|
|
154
154
|
readonly
|
|
155
155
|
type="text"
|
|
@@ -188,7 +188,7 @@ cssPrefix: pf-v5-c-clipboard-copy
|
|
|
188
188
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
189
189
|
</div>
|
|
190
190
|
</button>
|
|
191
|
-
<div class="pf-v5-c-form-control">
|
|
191
|
+
<div class="pf-v5-c-form-control pf-m-readonly">
|
|
192
192
|
<input
|
|
193
193
|
readonly
|
|
194
194
|
type="text"
|
|
@@ -85,7 +85,7 @@ cssPrefix: pf-v5-c-date-picker
|
|
|
85
85
|
<div class="pf-v5-c-date-picker__input">
|
|
86
86
|
<div class="pf-v5-c-input-group">
|
|
87
87
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
88
|
-
<div class="pf-v5-c-form-control">
|
|
88
|
+
<div class="pf-v5-c-form-control pf-m-error">
|
|
89
89
|
<input
|
|
90
90
|
aria-invalid="true"
|
|
91
91
|
type="text"
|
|
@@ -94,6 +94,11 @@ cssPrefix: pf-v5-c-date-picker
|
|
|
94
94
|
name="invalid-input"
|
|
95
95
|
aria-label="Date picker"
|
|
96
96
|
/>
|
|
97
|
+
<div class="pf-v5-c-form-control__utilities">
|
|
98
|
+
<div class="pf-v5-c-form-control__icon pf-m-status">
|
|
99
|
+
<i class="fas fa-exclamation-circle" aria-hidden="true"></i>
|
|
100
|
+
</div>
|
|
101
|
+
</div>
|
|
97
102
|
</div>
|
|
98
103
|
</div>
|
|
99
104
|
<div class="pf-v5-c-input-group__item">
|
|
@@ -12,12 +12,12 @@ cssPrefix: pf-v5-c-file-upload
|
|
|
12
12
|
<div class="pf-v5-c-file-upload__file-select">
|
|
13
13
|
<div class="pf-v5-c-input-group">
|
|
14
14
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
15
|
-
<div class="pf-v5-c-form-control">
|
|
15
|
+
<div class="pf-v5-c-form-control pf-m-readonly">
|
|
16
16
|
<input
|
|
17
|
+
readonly
|
|
17
18
|
id="basic-file-upload-text-input"
|
|
18
19
|
name="basic-file-upload-text-input"
|
|
19
20
|
aria-label="Drag and drop a file or upload one"
|
|
20
|
-
readonly
|
|
21
21
|
placeholder="Drag and drop a file or upload one"
|
|
22
22
|
aria-describedby="basic-file-upload-browse"
|
|
23
23
|
/>
|
|
@@ -55,12 +55,12 @@ cssPrefix: pf-v5-c-file-upload
|
|
|
55
55
|
<div class="pf-v5-c-file-upload__file-select">
|
|
56
56
|
<div class="pf-v5-c-input-group">
|
|
57
57
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
58
|
-
<div class="pf-v5-c-form-control">
|
|
58
|
+
<div class="pf-v5-c-form-control pf-m-readonly">
|
|
59
59
|
<input
|
|
60
|
+
readonly
|
|
60
61
|
id="browsed-file-upload-complete-text-input"
|
|
61
62
|
name="browsed-file-upload-complete-text-input"
|
|
62
63
|
aria-label="Read only filename"
|
|
63
|
-
readonly
|
|
64
64
|
value="Read only filename"
|
|
65
65
|
aria-describedby="browsed-file-upload-complete-browse"
|
|
66
66
|
/>
|
|
@@ -78,13 +78,13 @@ cssPrefix: pf-v5-c-file-upload
|
|
|
78
78
|
</div>
|
|
79
79
|
</div>
|
|
80
80
|
</div>
|
|
81
|
-
<div class="pf-v5-c-file-upload__file-details"
|
|
82
|
-
<div class="pf-v5-c-form-control pf-m-resize-vertical">
|
|
81
|
+
<div class="pf-v5-c-file-upload__file-details">
|
|
82
|
+
<div class="pf-v5-c-form-control pf-m-readonly pf-m-resize-vertical">
|
|
83
83
|
<textarea
|
|
84
|
+
readonly
|
|
84
85
|
id="browsed-file-upload-complete-file-details"
|
|
85
86
|
name="browsed-file-upload-complete-file-details"
|
|
86
87
|
aria-label="Text area"
|
|
87
|
-
readonly
|
|
88
88
|
>Ssh-Rsa AAh3zJFkzjjakCJialksjfB3zJFkzzAAhhMskjjakCJialksjfB3z89z3zJFkz3 +kzMAjsauoox88aaZXphBx4fczJFkzMAjsauoox88aaZXphBx4fczJFkzMAjsauoox88aaZXphBx4fc
|
|
89
89
|
|
|
90
90
|
</textarea>
|
|
@@ -101,12 +101,12 @@ cssPrefix: pf-v5-c-file-upload
|
|
|
101
101
|
<div class="pf-v5-c-file-upload__file-select">
|
|
102
102
|
<div class="pf-v5-c-input-group">
|
|
103
103
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
104
|
-
<div class="pf-v5-c-form-control">
|
|
104
|
+
<div class="pf-v5-c-form-control pf-m-readonly">
|
|
105
105
|
<input
|
|
106
|
+
readonly
|
|
106
107
|
id="drop-file-text-input"
|
|
107
108
|
name="drop-file-text-input"
|
|
108
109
|
aria-label="Read only filename"
|
|
109
|
-
readonly
|
|
110
110
|
value="Sample.txt"
|
|
111
111
|
aria-describedby="drop-file-browse"
|
|
112
112
|
/>
|
|
@@ -146,12 +146,12 @@ cssPrefix: pf-v5-c-file-upload
|
|
|
146
146
|
<div class="pf-v5-c-file-upload__file-select">
|
|
147
147
|
<div class="pf-v5-c-input-group">
|
|
148
148
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
149
|
-
<div class="pf-v5-c-form-control">
|
|
149
|
+
<div class="pf-v5-c-form-control pf-m-readonly">
|
|
150
150
|
<input
|
|
151
|
+
readonly
|
|
151
152
|
id="drag-file-hover-component-text-input"
|
|
152
153
|
name="drag-file-hover-component-text-input"
|
|
153
154
|
aria-label="Drag and drop a file or upload one"
|
|
154
|
-
readonly
|
|
155
155
|
placeholder="Drag and drop a file or upload one"
|
|
156
156
|
aria-describedby="drag-file-hover-component-browse"
|
|
157
157
|
/>
|
|
@@ -191,12 +191,12 @@ cssPrefix: pf-v5-c-file-upload
|
|
|
191
191
|
<div class="pf-v5-c-file-upload__file-select">
|
|
192
192
|
<div class="pf-v5-c-input-group">
|
|
193
193
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
194
|
-
<div class="pf-v5-c-form-control">
|
|
194
|
+
<div class="pf-v5-c-form-control pf-m-required">
|
|
195
195
|
<input
|
|
196
|
+
required
|
|
196
197
|
id="file-upload-error-text-input"
|
|
197
198
|
name="file-upload-error-text-input"
|
|
198
199
|
aria-label="File upload error"
|
|
199
|
-
required
|
|
200
200
|
value="Sample.png"
|
|
201
201
|
aria-describedby="file-upload-error-browse"
|
|
202
202
|
/>
|
|
@@ -219,7 +219,7 @@ cssPrefix: pf-v5-c-file-upload
|
|
|
219
219
|
aria-describedby="textAreaHelperText1"
|
|
220
220
|
aria-invalid="true"
|
|
221
221
|
>
|
|
222
|
-
<div class="pf-v5-c-form-control pf-m-resize-vertical">
|
|
222
|
+
<div class="pf-v5-c-form-control pf-m-error pf-m-resize-vertical">
|
|
223
223
|
<textarea
|
|
224
224
|
id="file-upload-error-file-details"
|
|
225
225
|
name="file-upload-error-file-details"
|
|
@@ -227,6 +227,11 @@ cssPrefix: pf-v5-c-file-upload
|
|
|
227
227
|
aria-describedby="textAreaHelperText1"
|
|
228
228
|
aria-invalid="true"
|
|
229
229
|
></textarea>
|
|
230
|
+
<div class="pf-v5-c-form-control__utilities">
|
|
231
|
+
<div class="pf-v5-c-form-control__icon pf-m-status">
|
|
232
|
+
<i class="fas fa-exclamation-circle" aria-hidden="true"></i>
|
|
233
|
+
</div>
|
|
234
|
+
</div>
|
|
230
235
|
</div>
|
|
231
236
|
</div>
|
|
232
237
|
</div>
|
|
@@ -254,12 +259,12 @@ cssPrefix: pf-v5-c-file-upload
|
|
|
254
259
|
<div class="pf-v5-c-file-upload__file-select">
|
|
255
260
|
<div class="pf-v5-c-input-group">
|
|
256
261
|
<div class="pf-v5-c-input-group__item pf-m-fill">
|
|
257
|
-
<div class="pf-v5-c-form-control">
|
|
262
|
+
<div class="pf-v5-c-form-control pf-m-readonly">
|
|
258
263
|
<input
|
|
264
|
+
readonly
|
|
259
265
|
id="file-upload-loading-text-input"
|
|
260
266
|
name="file-upload-loading"
|
|
261
267
|
aria-label="Read only filename"
|
|
262
|
-
readonly
|
|
263
268
|
value="Sample.png"
|
|
264
269
|
aria-describedby="file-upload-loading-browse"
|
|
265
270
|
/>
|