@patternfly/patternfly 5.0.0-alpha.30 → 5.0.0-alpha.32
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 +61 -85
- package/components/InputGroup/input-group.scss +55 -61
- package/components/InputGroup/themes/dark/input-group.scss +11 -25
- package/components/OptionsMenu/options-menu.css +0 -5
- package/components/OptionsMenu/options-menu.scss +0 -6
- package/components/Toolbar/toolbar.css +11 -4
- package/components/Toolbar/toolbar.scss +11 -5
- package/docs/components/CalendarMonth/examples/CalendarMonth.md +268 -252
- package/docs/components/DatePicker/examples/DatePicker.md +115 -91
- package/docs/components/FileUpload/examples/FileUpload.md +127 -91
- package/docs/components/InputGroup/examples/InputGroup.md +219 -169
- package/docs/components/NumberInput/examples/NumberInput.md +299 -227
- package/docs/components/SearchInput/examples/SearchInput.md +151 -113
- package/docs/components/Slider/examples/Slider.md +60 -38
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +168 -132
- package/docs/components/Toolbar/examples/Toolbar.md +374 -345
- package/docs/demos/DataList/examples/DataList.md +158 -150
- package/docs/demos/Form/examples/BasicForms.md +77 -66
- package/docs/demos/Masthead/examples/Masthead.md +279 -258
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +21 -17
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +103 -121
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +266 -238
- package/docs/demos/Table/examples/Table.md +949 -901
- package/docs/demos/Toolbar/examples/Toolbar.md +313 -294
- package/package.json +1 -1
- package/patternfly-no-reset.css +71 -83
- package/patternfly.css +71 -83
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -19,73 +19,77 @@ cssPrefix: pf-c-calendar-month
|
|
|
19
19
|
</button>
|
|
20
20
|
</div>
|
|
21
21
|
<div class="pf-c-input-group">
|
|
22
|
-
<div class="pf-c-
|
|
23
|
-
<div class="pf-c-
|
|
24
|
-
<
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
23
|
+
<div class="pf-c-calendar-month__header-month">
|
|
24
|
+
<div class="pf-c-select">
|
|
25
|
+
<span
|
|
26
|
+
id="calendar-month-date-selected-month-select-label"
|
|
27
|
+
hidden
|
|
28
|
+
>Month</span>
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
30
|
+
<button
|
|
31
|
+
class="pf-c-select__toggle"
|
|
32
|
+
type="button"
|
|
33
|
+
id="calendar-month-date-selected-month-select-toggle"
|
|
34
|
+
aria-haspopup="true"
|
|
35
|
+
aria-expanded="false"
|
|
36
|
+
aria-labelledby="calendar-month-date-selected-month-select-label calendar-month-date-selected-month-select-toggle"
|
|
37
|
+
>
|
|
38
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
39
|
+
<span class="pf-c-select__toggle-text">October</span>
|
|
40
|
+
</div>
|
|
41
|
+
<span class="pf-c-select__toggle-arrow">
|
|
42
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
43
|
+
</span>
|
|
44
|
+
</button>
|
|
44
45
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
46
|
+
<ul
|
|
47
|
+
class="pf-c-select__menu"
|
|
48
|
+
role="listbox"
|
|
49
|
+
aria-labelledby="calendar-month-date-selected-month-select-label"
|
|
50
|
+
hidden
|
|
51
|
+
>
|
|
52
|
+
<li role="presentation">
|
|
53
|
+
<button class="pf-c-select__menu-item" role="option">Running</button>
|
|
54
|
+
</li>
|
|
55
|
+
<li role="presentation">
|
|
56
|
+
<button
|
|
57
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
58
|
+
role="option"
|
|
59
|
+
aria-selected="true"
|
|
60
|
+
>
|
|
61
|
+
Stopped
|
|
62
|
+
<span class="pf-c-select__menu-item-icon">
|
|
63
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
64
|
+
</span>
|
|
65
|
+
</button>
|
|
66
|
+
</li>
|
|
67
|
+
<li role="presentation">
|
|
68
|
+
<button class="pf-c-select__menu-item" role="option">Down</button>
|
|
69
|
+
</li>
|
|
70
|
+
<li role="presentation">
|
|
71
|
+
<button class="pf-c-select__menu-item" role="option">Degraded</button>
|
|
72
|
+
</li>
|
|
73
|
+
<li role="presentation">
|
|
74
|
+
<button
|
|
75
|
+
class="pf-c-select__menu-item"
|
|
76
|
+
role="option"
|
|
77
|
+
>Needs maintenance</button>
|
|
78
|
+
</li>
|
|
79
|
+
</ul>
|
|
80
|
+
</div>
|
|
79
81
|
</div>
|
|
80
82
|
</div>
|
|
81
|
-
<div class="pf-c-
|
|
82
|
-
<
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
83
|
+
<div class="pf-c-input-group__item">
|
|
84
|
+
<div class="pf-c-calendar-month__header-year">
|
|
85
|
+
<input
|
|
86
|
+
class="pf-c-form-control"
|
|
87
|
+
type="number"
|
|
88
|
+
value="2020"
|
|
89
|
+
id="calendar-month-date-selected-year"
|
|
90
|
+
aria-label="Select year"
|
|
91
|
+
/>
|
|
92
|
+
</div>
|
|
89
93
|
</div>
|
|
90
94
|
</div>
|
|
91
95
|
<div class="pf-c-calendar-month__header-nav-control pf-m-next-month">
|
|
@@ -408,73 +412,77 @@ cssPrefix: pf-c-calendar-month
|
|
|
408
412
|
</button>
|
|
409
413
|
</div>
|
|
410
414
|
<div class="pf-c-input-group">
|
|
411
|
-
<div class="pf-c-
|
|
412
|
-
<div class="pf-c-
|
|
413
|
-
<
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
415
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
416
|
+
<div class="pf-c-calendar-month__header-month">
|
|
417
|
+
<div class="pf-c-select">
|
|
418
|
+
<span
|
|
419
|
+
id="calendar-month-range-start-date-selected-month-select-label"
|
|
420
|
+
hidden
|
|
421
|
+
>Month</span>
|
|
417
422
|
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
423
|
+
<button
|
|
424
|
+
class="pf-c-select__toggle"
|
|
425
|
+
type="button"
|
|
426
|
+
id="calendar-month-range-start-date-selected-month-select-toggle"
|
|
427
|
+
aria-haspopup="true"
|
|
428
|
+
aria-expanded="false"
|
|
429
|
+
aria-labelledby="calendar-month-range-start-date-selected-month-select-label calendar-month-range-start-date-selected-month-select-toggle"
|
|
430
|
+
>
|
|
431
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
432
|
+
<span class="pf-c-select__toggle-text">October</span>
|
|
433
|
+
</div>
|
|
434
|
+
<span class="pf-c-select__toggle-arrow">
|
|
435
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
436
|
+
</span>
|
|
437
|
+
</button>
|
|
433
438
|
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
439
|
+
<ul
|
|
440
|
+
class="pf-c-select__menu"
|
|
441
|
+
role="listbox"
|
|
442
|
+
aria-labelledby="calendar-month-range-start-date-selected-month-select-label"
|
|
443
|
+
hidden
|
|
444
|
+
>
|
|
445
|
+
<li role="presentation">
|
|
446
|
+
<button class="pf-c-select__menu-item" role="option">Running</button>
|
|
447
|
+
</li>
|
|
448
|
+
<li role="presentation">
|
|
449
|
+
<button
|
|
450
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
451
|
+
role="option"
|
|
452
|
+
aria-selected="true"
|
|
453
|
+
>
|
|
454
|
+
Stopped
|
|
455
|
+
<span class="pf-c-select__menu-item-icon">
|
|
456
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
457
|
+
</span>
|
|
458
|
+
</button>
|
|
459
|
+
</li>
|
|
460
|
+
<li role="presentation">
|
|
461
|
+
<button class="pf-c-select__menu-item" role="option">Down</button>
|
|
462
|
+
</li>
|
|
463
|
+
<li role="presentation">
|
|
464
|
+
<button class="pf-c-select__menu-item" role="option">Degraded</button>
|
|
465
|
+
</li>
|
|
466
|
+
<li role="presentation">
|
|
467
|
+
<button
|
|
468
|
+
class="pf-c-select__menu-item"
|
|
469
|
+
role="option"
|
|
470
|
+
>Needs maintenance</button>
|
|
471
|
+
</li>
|
|
472
|
+
</ul>
|
|
473
|
+
</div>
|
|
468
474
|
</div>
|
|
469
475
|
</div>
|
|
470
|
-
<div class="pf-c-
|
|
471
|
-
<
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
476
|
+
<div class="pf-c-input-group__item">
|
|
477
|
+
<div class="pf-c-calendar-month__header-year">
|
|
478
|
+
<input
|
|
479
|
+
class="pf-c-form-control"
|
|
480
|
+
type="number"
|
|
481
|
+
value="2020"
|
|
482
|
+
id="calendar-month-range-start-date-selected-year"
|
|
483
|
+
aria-label="Select year"
|
|
484
|
+
/>
|
|
485
|
+
</div>
|
|
478
486
|
</div>
|
|
479
487
|
</div>
|
|
480
488
|
<div class="pf-c-calendar-month__header-nav-control pf-m-next-month">
|
|
@@ -808,73 +816,77 @@ cssPrefix: pf-c-calendar-month
|
|
|
808
816
|
</button>
|
|
809
817
|
</div>
|
|
810
818
|
<div class="pf-c-input-group">
|
|
811
|
-
<div class="pf-c-
|
|
812
|
-
<div class="pf-c-
|
|
813
|
-
<
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
819
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
820
|
+
<div class="pf-c-calendar-month__header-month">
|
|
821
|
+
<div class="pf-c-select">
|
|
822
|
+
<span
|
|
823
|
+
id="calendar-month-range-end-date-selected-month-select-label"
|
|
824
|
+
hidden
|
|
825
|
+
>Month</span>
|
|
817
826
|
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
827
|
+
<button
|
|
828
|
+
class="pf-c-select__toggle"
|
|
829
|
+
type="button"
|
|
830
|
+
id="calendar-month-range-end-date-selected-month-select-toggle"
|
|
831
|
+
aria-haspopup="true"
|
|
832
|
+
aria-expanded="false"
|
|
833
|
+
aria-labelledby="calendar-month-range-end-date-selected-month-select-label calendar-month-range-end-date-selected-month-select-toggle"
|
|
834
|
+
>
|
|
835
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
836
|
+
<span class="pf-c-select__toggle-text">October</span>
|
|
837
|
+
</div>
|
|
838
|
+
<span class="pf-c-select__toggle-arrow">
|
|
839
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
840
|
+
</span>
|
|
841
|
+
</button>
|
|
833
842
|
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
843
|
+
<ul
|
|
844
|
+
class="pf-c-select__menu"
|
|
845
|
+
role="listbox"
|
|
846
|
+
aria-labelledby="calendar-month-range-end-date-selected-month-select-label"
|
|
847
|
+
hidden
|
|
848
|
+
>
|
|
849
|
+
<li role="presentation">
|
|
850
|
+
<button class="pf-c-select__menu-item" role="option">Running</button>
|
|
851
|
+
</li>
|
|
852
|
+
<li role="presentation">
|
|
853
|
+
<button
|
|
854
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
855
|
+
role="option"
|
|
856
|
+
aria-selected="true"
|
|
857
|
+
>
|
|
858
|
+
Stopped
|
|
859
|
+
<span class="pf-c-select__menu-item-icon">
|
|
860
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
861
|
+
</span>
|
|
862
|
+
</button>
|
|
863
|
+
</li>
|
|
864
|
+
<li role="presentation">
|
|
865
|
+
<button class="pf-c-select__menu-item" role="option">Down</button>
|
|
866
|
+
</li>
|
|
867
|
+
<li role="presentation">
|
|
868
|
+
<button class="pf-c-select__menu-item" role="option">Degraded</button>
|
|
869
|
+
</li>
|
|
870
|
+
<li role="presentation">
|
|
871
|
+
<button
|
|
872
|
+
class="pf-c-select__menu-item"
|
|
873
|
+
role="option"
|
|
874
|
+
>Needs maintenance</button>
|
|
875
|
+
</li>
|
|
876
|
+
</ul>
|
|
877
|
+
</div>
|
|
868
878
|
</div>
|
|
869
879
|
</div>
|
|
870
|
-
<div class="pf-c-
|
|
871
|
-
<
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
880
|
+
<div class="pf-c-input-group__item">
|
|
881
|
+
<div class="pf-c-calendar-month__header-year">
|
|
882
|
+
<input
|
|
883
|
+
class="pf-c-form-control"
|
|
884
|
+
type="number"
|
|
885
|
+
value="2020"
|
|
886
|
+
id="calendar-month-range-end-date-selected-year"
|
|
887
|
+
aria-label="Select year"
|
|
888
|
+
/>
|
|
889
|
+
</div>
|
|
878
890
|
</div>
|
|
879
891
|
</div>
|
|
880
892
|
<div class="pf-c-calendar-month__header-nav-control pf-m-next-month">
|
|
@@ -1208,73 +1220,77 @@ cssPrefix: pf-c-calendar-month
|
|
|
1208
1220
|
</button>
|
|
1209
1221
|
</div>
|
|
1210
1222
|
<div class="pf-c-input-group">
|
|
1211
|
-
<div class="pf-c-
|
|
1212
|
-
<div class="pf-c-
|
|
1213
|
-
<
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1223
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
1224
|
+
<div class="pf-c-calendar-month__header-month">
|
|
1225
|
+
<div class="pf-c-select">
|
|
1226
|
+
<span
|
|
1227
|
+
id="calendar-month-range-start-and-end-dates-selected-month-select-label"
|
|
1228
|
+
hidden
|
|
1229
|
+
>Month</span>
|
|
1217
1230
|
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1231
|
+
<button
|
|
1232
|
+
class="pf-c-select__toggle"
|
|
1233
|
+
type="button"
|
|
1234
|
+
id="calendar-month-range-start-and-end-dates-selected-month-select-toggle"
|
|
1235
|
+
aria-haspopup="true"
|
|
1236
|
+
aria-expanded="false"
|
|
1237
|
+
aria-labelledby="calendar-month-range-start-and-end-dates-selected-month-select-label calendar-month-range-start-and-end-dates-selected-month-select-toggle"
|
|
1238
|
+
>
|
|
1239
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
1240
|
+
<span class="pf-c-select__toggle-text">October</span>
|
|
1241
|
+
</div>
|
|
1242
|
+
<span class="pf-c-select__toggle-arrow">
|
|
1243
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
1244
|
+
</span>
|
|
1245
|
+
</button>
|
|
1233
1246
|
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1247
|
+
<ul
|
|
1248
|
+
class="pf-c-select__menu"
|
|
1249
|
+
role="listbox"
|
|
1250
|
+
aria-labelledby="calendar-month-range-start-and-end-dates-selected-month-select-label"
|
|
1251
|
+
hidden
|
|
1252
|
+
>
|
|
1253
|
+
<li role="presentation">
|
|
1254
|
+
<button class="pf-c-select__menu-item" role="option">Running</button>
|
|
1255
|
+
</li>
|
|
1256
|
+
<li role="presentation">
|
|
1257
|
+
<button
|
|
1258
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
1259
|
+
role="option"
|
|
1260
|
+
aria-selected="true"
|
|
1261
|
+
>
|
|
1262
|
+
Stopped
|
|
1263
|
+
<span class="pf-c-select__menu-item-icon">
|
|
1264
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
1265
|
+
</span>
|
|
1266
|
+
</button>
|
|
1267
|
+
</li>
|
|
1268
|
+
<li role="presentation">
|
|
1269
|
+
<button class="pf-c-select__menu-item" role="option">Down</button>
|
|
1270
|
+
</li>
|
|
1271
|
+
<li role="presentation">
|
|
1272
|
+
<button class="pf-c-select__menu-item" role="option">Degraded</button>
|
|
1273
|
+
</li>
|
|
1274
|
+
<li role="presentation">
|
|
1275
|
+
<button
|
|
1276
|
+
class="pf-c-select__menu-item"
|
|
1277
|
+
role="option"
|
|
1278
|
+
>Needs maintenance</button>
|
|
1279
|
+
</li>
|
|
1280
|
+
</ul>
|
|
1281
|
+
</div>
|
|
1268
1282
|
</div>
|
|
1269
1283
|
</div>
|
|
1270
|
-
<div class="pf-c-
|
|
1271
|
-
<
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1284
|
+
<div class="pf-c-input-group__item">
|
|
1285
|
+
<div class="pf-c-calendar-month__header-year">
|
|
1286
|
+
<input
|
|
1287
|
+
class="pf-c-form-control"
|
|
1288
|
+
type="number"
|
|
1289
|
+
value="2020"
|
|
1290
|
+
id="calendar-month-range-start-and-end-dates-selected-year"
|
|
1291
|
+
aria-label="Select year"
|
|
1292
|
+
/>
|
|
1293
|
+
</div>
|
|
1278
1294
|
</div>
|
|
1279
1295
|
</div>
|
|
1280
1296
|
<div class="pf-c-calendar-month__header-nav-control pf-m-next-month">
|