@patternfly/patternfly 4.196.2 → 4.196.3
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/CalendarMonth/calendar-month.css +4 -4
- package/components/CalendarMonth/calendar-month.scss +4 -4
- package/docs/components/CalendarMonth/examples/CalendarMonth.md +264 -253
- package/package.json +1 -1
- package/patternfly-no-reset.css +4 -4
- package/patternfly.css +4 -4
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
--pf-c-calendar-month__header-year--Width: 8ch;
|
|
20
20
|
--pf-c-calendar-month__header-nav-control--MarginRight: 0;
|
|
21
21
|
--pf-c-calendar-month__header-nav-control--MarginLeft: 0;
|
|
22
|
-
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginRight:
|
|
23
|
-
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginLeft:
|
|
24
|
-
--pf-c-calendar-month__header-nav-control--m-next-month--MarginRight:
|
|
25
|
-
--pf-c-calendar-month__header-nav-control--m-next-month--MarginLeft:
|
|
22
|
+
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginRight: 0;
|
|
23
|
+
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginLeft: 0;
|
|
24
|
+
--pf-c-calendar-month__header-nav-control--m-next-month--MarginRight: 0;
|
|
25
|
+
--pf-c-calendar-month__header-nav-control--m-next-month--MarginLeft: 0;
|
|
26
26
|
--pf-c-calendar-month__days--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
|
|
27
27
|
--pf-c-calendar-month__days--BorderBottomColor: var(--pf-global--BorderColor--100);
|
|
28
28
|
--pf-c-calendar-month__day--PaddingBottom: var(--pf-global--spacer--md);
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
--pf-c-calendar-month__header-year--Width: 8ch;
|
|
12
12
|
--pf-c-calendar-month__header-nav-control--MarginRight: 0;
|
|
13
13
|
--pf-c-calendar-month__header-nav-control--MarginLeft: 0;
|
|
14
|
-
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginRight:
|
|
15
|
-
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginLeft:
|
|
16
|
-
--pf-c-calendar-month__header-nav-control--m-next-month--MarginRight:
|
|
17
|
-
--pf-c-calendar-month__header-nav-control--m-next-month--MarginLeft:
|
|
14
|
+
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginRight: 0; // remove in breaking change
|
|
15
|
+
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginLeft: 0; // remove in breaking change
|
|
16
|
+
--pf-c-calendar-month__header-nav-control--m-next-month--MarginRight: 0; // remove in breaking change
|
|
17
|
+
--pf-c-calendar-month__header-nav-control--m-next-month--MarginLeft: 0; // remove in breaking change
|
|
18
18
|
|
|
19
19
|
// week days thead
|
|
20
20
|
--pf-c-calendar-month__days--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
|
|
@@ -19,70 +19,75 @@ cssPrefix: pf-c-calendar-month
|
|
|
19
19
|
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
20
20
|
</button>
|
|
21
21
|
</div>
|
|
22
|
-
<div class="pf-c-
|
|
23
|
-
<div class="pf-c-
|
|
24
|
-
<
|
|
22
|
+
<div class="pf-c-input-group">
|
|
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>
|
|
25
29
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
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>
|
|
41
45
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
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
|
-
|
|
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>
|
|
81
|
+
</div>
|
|
82
|
+
<div class="pf-c-calendar-month__header-year">
|
|
83
|
+
<input
|
|
84
|
+
class="pf-c-form-control"
|
|
85
|
+
type="number"
|
|
86
|
+
value="2020"
|
|
87
|
+
id="calendar-month-date-selected-year"
|
|
88
|
+
aria-label="Select year"
|
|
89
|
+
/>
|
|
76
90
|
</div>
|
|
77
|
-
</div>
|
|
78
|
-
<div class="pf-c-calendar-month__header-year">
|
|
79
|
-
<input
|
|
80
|
-
class="pf-c-form-control"
|
|
81
|
-
type="number"
|
|
82
|
-
value="2020"
|
|
83
|
-
id="calendar-month-date-selected-year"
|
|
84
|
-
aria-label="Select year"
|
|
85
|
-
/>
|
|
86
91
|
</div>
|
|
87
92
|
<div class="pf-c-calendar-month__header-nav-control pf-m-next-month">
|
|
88
93
|
<button
|
|
@@ -403,73 +408,75 @@ cssPrefix: pf-c-calendar-month
|
|
|
403
408
|
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
404
409
|
</button>
|
|
405
410
|
</div>
|
|
406
|
-
<div class="pf-c-
|
|
407
|
-
<div class="pf-c-
|
|
408
|
-
<
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
411
|
+
<div class="pf-c-input-group">
|
|
412
|
+
<div class="pf-c-calendar-month__header-month">
|
|
413
|
+
<div class="pf-c-select">
|
|
414
|
+
<span
|
|
415
|
+
id="calendar-month-range-start-date-selected-month-select-label"
|
|
416
|
+
hidden
|
|
417
|
+
>Month</span>
|
|
412
418
|
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
419
|
+
<button
|
|
420
|
+
class="pf-c-select__toggle"
|
|
421
|
+
type="button"
|
|
422
|
+
id="calendar-month-range-start-date-selected-month-select-toggle"
|
|
423
|
+
aria-haspopup="true"
|
|
424
|
+
aria-expanded="false"
|
|
425
|
+
aria-labelledby="calendar-month-range-start-date-selected-month-select-label calendar-month-range-start-date-selected-month-select-toggle"
|
|
426
|
+
>
|
|
427
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
428
|
+
<span class="pf-c-select__toggle-text">October</span>
|
|
429
|
+
</div>
|
|
430
|
+
<span class="pf-c-select__toggle-arrow">
|
|
431
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
432
|
+
</span>
|
|
433
|
+
</button>
|
|
428
434
|
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
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
|
-
|
|
435
|
+
<ul
|
|
436
|
+
class="pf-c-select__menu"
|
|
437
|
+
role="listbox"
|
|
438
|
+
aria-labelledby="calendar-month-range-start-date-selected-month-select-label"
|
|
439
|
+
hidden
|
|
440
|
+
>
|
|
441
|
+
<li role="presentation">
|
|
442
|
+
<button class="pf-c-select__menu-item" role="option">Running</button>
|
|
443
|
+
</li>
|
|
444
|
+
<li role="presentation">
|
|
445
|
+
<button
|
|
446
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
447
|
+
role="option"
|
|
448
|
+
aria-selected="true"
|
|
449
|
+
>
|
|
450
|
+
Stopped
|
|
451
|
+
<span class="pf-c-select__menu-item-icon">
|
|
452
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
453
|
+
</span>
|
|
454
|
+
</button>
|
|
455
|
+
</li>
|
|
456
|
+
<li role="presentation">
|
|
457
|
+
<button class="pf-c-select__menu-item" role="option">Down</button>
|
|
458
|
+
</li>
|
|
459
|
+
<li role="presentation">
|
|
460
|
+
<button class="pf-c-select__menu-item" role="option">Degraded</button>
|
|
461
|
+
</li>
|
|
462
|
+
<li role="presentation">
|
|
463
|
+
<button
|
|
464
|
+
class="pf-c-select__menu-item"
|
|
465
|
+
role="option"
|
|
466
|
+
>Needs maintenance</button>
|
|
467
|
+
</li>
|
|
468
|
+
</ul>
|
|
469
|
+
</div>
|
|
470
|
+
</div>
|
|
471
|
+
<div class="pf-c-calendar-month__header-year">
|
|
472
|
+
<input
|
|
473
|
+
class="pf-c-form-control"
|
|
474
|
+
type="number"
|
|
475
|
+
value="2020"
|
|
476
|
+
id="calendar-month-range-start-date-selected-year"
|
|
477
|
+
aria-label="Select year"
|
|
478
|
+
/>
|
|
463
479
|
</div>
|
|
464
|
-
</div>
|
|
465
|
-
<div class="pf-c-calendar-month__header-year">
|
|
466
|
-
<input
|
|
467
|
-
class="pf-c-form-control"
|
|
468
|
-
type="number"
|
|
469
|
-
value="2020"
|
|
470
|
-
id="calendar-month-range-start-date-selected-year"
|
|
471
|
-
aria-label="Select year"
|
|
472
|
-
/>
|
|
473
480
|
</div>
|
|
474
481
|
<div class="pf-c-calendar-month__header-nav-control pf-m-next-month">
|
|
475
482
|
<button
|
|
@@ -801,73 +808,75 @@ cssPrefix: pf-c-calendar-month
|
|
|
801
808
|
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
802
809
|
</button>
|
|
803
810
|
</div>
|
|
804
|
-
<div class="pf-c-
|
|
805
|
-
<div class="pf-c-
|
|
806
|
-
<
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
811
|
+
<div class="pf-c-input-group">
|
|
812
|
+
<div class="pf-c-calendar-month__header-month">
|
|
813
|
+
<div class="pf-c-select">
|
|
814
|
+
<span
|
|
815
|
+
id="calendar-month-range-end-date-selected-month-select-label"
|
|
816
|
+
hidden
|
|
817
|
+
>Month</span>
|
|
810
818
|
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
819
|
+
<button
|
|
820
|
+
class="pf-c-select__toggle"
|
|
821
|
+
type="button"
|
|
822
|
+
id="calendar-month-range-end-date-selected-month-select-toggle"
|
|
823
|
+
aria-haspopup="true"
|
|
824
|
+
aria-expanded="false"
|
|
825
|
+
aria-labelledby="calendar-month-range-end-date-selected-month-select-label calendar-month-range-end-date-selected-month-select-toggle"
|
|
826
|
+
>
|
|
827
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
828
|
+
<span class="pf-c-select__toggle-text">October</span>
|
|
829
|
+
</div>
|
|
830
|
+
<span class="pf-c-select__toggle-arrow">
|
|
831
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
832
|
+
</span>
|
|
833
|
+
</button>
|
|
826
834
|
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
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
|
-
|
|
835
|
+
<ul
|
|
836
|
+
class="pf-c-select__menu"
|
|
837
|
+
role="listbox"
|
|
838
|
+
aria-labelledby="calendar-month-range-end-date-selected-month-select-label"
|
|
839
|
+
hidden
|
|
840
|
+
>
|
|
841
|
+
<li role="presentation">
|
|
842
|
+
<button class="pf-c-select__menu-item" role="option">Running</button>
|
|
843
|
+
</li>
|
|
844
|
+
<li role="presentation">
|
|
845
|
+
<button
|
|
846
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
847
|
+
role="option"
|
|
848
|
+
aria-selected="true"
|
|
849
|
+
>
|
|
850
|
+
Stopped
|
|
851
|
+
<span class="pf-c-select__menu-item-icon">
|
|
852
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
853
|
+
</span>
|
|
854
|
+
</button>
|
|
855
|
+
</li>
|
|
856
|
+
<li role="presentation">
|
|
857
|
+
<button class="pf-c-select__menu-item" role="option">Down</button>
|
|
858
|
+
</li>
|
|
859
|
+
<li role="presentation">
|
|
860
|
+
<button class="pf-c-select__menu-item" role="option">Degraded</button>
|
|
861
|
+
</li>
|
|
862
|
+
<li role="presentation">
|
|
863
|
+
<button
|
|
864
|
+
class="pf-c-select__menu-item"
|
|
865
|
+
role="option"
|
|
866
|
+
>Needs maintenance</button>
|
|
867
|
+
</li>
|
|
868
|
+
</ul>
|
|
869
|
+
</div>
|
|
870
|
+
</div>
|
|
871
|
+
<div class="pf-c-calendar-month__header-year">
|
|
872
|
+
<input
|
|
873
|
+
class="pf-c-form-control"
|
|
874
|
+
type="number"
|
|
875
|
+
value="2020"
|
|
876
|
+
id="calendar-month-range-end-date-selected-year"
|
|
877
|
+
aria-label="Select year"
|
|
878
|
+
/>
|
|
861
879
|
</div>
|
|
862
|
-
</div>
|
|
863
|
-
<div class="pf-c-calendar-month__header-year">
|
|
864
|
-
<input
|
|
865
|
-
class="pf-c-form-control"
|
|
866
|
-
type="number"
|
|
867
|
-
value="2020"
|
|
868
|
-
id="calendar-month-range-end-date-selected-year"
|
|
869
|
-
aria-label="Select year"
|
|
870
|
-
/>
|
|
871
880
|
</div>
|
|
872
881
|
<div class="pf-c-calendar-month__header-nav-control pf-m-next-month">
|
|
873
882
|
<button
|
|
@@ -1199,73 +1208,75 @@ cssPrefix: pf-c-calendar-month
|
|
|
1199
1208
|
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
1200
1209
|
</button>
|
|
1201
1210
|
</div>
|
|
1202
|
-
<div class="pf-c-
|
|
1203
|
-
<div class="pf-c-
|
|
1204
|
-
<
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1211
|
+
<div class="pf-c-input-group">
|
|
1212
|
+
<div class="pf-c-calendar-month__header-month">
|
|
1213
|
+
<div class="pf-c-select">
|
|
1214
|
+
<span
|
|
1215
|
+
id="calendar-month-range-start-and-end-dates-selected-month-select-label"
|
|
1216
|
+
hidden
|
|
1217
|
+
>Month</span>
|
|
1208
1218
|
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1219
|
+
<button
|
|
1220
|
+
class="pf-c-select__toggle"
|
|
1221
|
+
type="button"
|
|
1222
|
+
id="calendar-month-range-start-and-end-dates-selected-month-select-toggle"
|
|
1223
|
+
aria-haspopup="true"
|
|
1224
|
+
aria-expanded="false"
|
|
1225
|
+
aria-labelledby="calendar-month-range-start-and-end-dates-selected-month-select-label calendar-month-range-start-and-end-dates-selected-month-select-toggle"
|
|
1226
|
+
>
|
|
1227
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
1228
|
+
<span class="pf-c-select__toggle-text">October</span>
|
|
1229
|
+
</div>
|
|
1230
|
+
<span class="pf-c-select__toggle-arrow">
|
|
1231
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
1232
|
+
</span>
|
|
1233
|
+
</button>
|
|
1224
1234
|
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
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
|
-
|
|
1235
|
+
<ul
|
|
1236
|
+
class="pf-c-select__menu"
|
|
1237
|
+
role="listbox"
|
|
1238
|
+
aria-labelledby="calendar-month-range-start-and-end-dates-selected-month-select-label"
|
|
1239
|
+
hidden
|
|
1240
|
+
>
|
|
1241
|
+
<li role="presentation">
|
|
1242
|
+
<button class="pf-c-select__menu-item" role="option">Running</button>
|
|
1243
|
+
</li>
|
|
1244
|
+
<li role="presentation">
|
|
1245
|
+
<button
|
|
1246
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
1247
|
+
role="option"
|
|
1248
|
+
aria-selected="true"
|
|
1249
|
+
>
|
|
1250
|
+
Stopped
|
|
1251
|
+
<span class="pf-c-select__menu-item-icon">
|
|
1252
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
1253
|
+
</span>
|
|
1254
|
+
</button>
|
|
1255
|
+
</li>
|
|
1256
|
+
<li role="presentation">
|
|
1257
|
+
<button class="pf-c-select__menu-item" role="option">Down</button>
|
|
1258
|
+
</li>
|
|
1259
|
+
<li role="presentation">
|
|
1260
|
+
<button class="pf-c-select__menu-item" role="option">Degraded</button>
|
|
1261
|
+
</li>
|
|
1262
|
+
<li role="presentation">
|
|
1263
|
+
<button
|
|
1264
|
+
class="pf-c-select__menu-item"
|
|
1265
|
+
role="option"
|
|
1266
|
+
>Needs maintenance</button>
|
|
1267
|
+
</li>
|
|
1268
|
+
</ul>
|
|
1269
|
+
</div>
|
|
1270
|
+
</div>
|
|
1271
|
+
<div class="pf-c-calendar-month__header-year">
|
|
1272
|
+
<input
|
|
1273
|
+
class="pf-c-form-control"
|
|
1274
|
+
type="number"
|
|
1275
|
+
value="2020"
|
|
1276
|
+
id="calendar-month-range-start-and-end-dates-selected-year"
|
|
1277
|
+
aria-label="Select year"
|
|
1278
|
+
/>
|
|
1259
1279
|
</div>
|
|
1260
|
-
</div>
|
|
1261
|
-
<div class="pf-c-calendar-month__header-year">
|
|
1262
|
-
<input
|
|
1263
|
-
class="pf-c-form-control"
|
|
1264
|
-
type="number"
|
|
1265
|
-
value="2020"
|
|
1266
|
-
id="calendar-month-range-start-and-end-dates-selected-year"
|
|
1267
|
-
aria-label="Select year"
|
|
1268
|
-
/>
|
|
1269
1280
|
</div>
|
|
1270
1281
|
<div class="pf-c-calendar-month__header-nav-control pf-m-next-month">
|
|
1271
1282
|
<button
|
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -7856,10 +7856,10 @@ button.pf-c-breadcrumb__link {
|
|
|
7856
7856
|
--pf-c-calendar-month__header-year--Width: 8ch;
|
|
7857
7857
|
--pf-c-calendar-month__header-nav-control--MarginRight: 0;
|
|
7858
7858
|
--pf-c-calendar-month__header-nav-control--MarginLeft: 0;
|
|
7859
|
-
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginRight:
|
|
7860
|
-
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginLeft:
|
|
7861
|
-
--pf-c-calendar-month__header-nav-control--m-next-month--MarginRight:
|
|
7862
|
-
--pf-c-calendar-month__header-nav-control--m-next-month--MarginLeft:
|
|
7859
|
+
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginRight: 0;
|
|
7860
|
+
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginLeft: 0;
|
|
7861
|
+
--pf-c-calendar-month__header-nav-control--m-next-month--MarginRight: 0;
|
|
7862
|
+
--pf-c-calendar-month__header-nav-control--m-next-month--MarginLeft: 0;
|
|
7863
7863
|
--pf-c-calendar-month__days--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
|
|
7864
7864
|
--pf-c-calendar-month__days--BorderBottomColor: var(--pf-global--BorderColor--100);
|
|
7865
7865
|
--pf-c-calendar-month__day--PaddingBottom: var(--pf-global--spacer--md);
|
package/patternfly.css
CHANGED
|
@@ -7983,10 +7983,10 @@ button.pf-c-breadcrumb__link {
|
|
|
7983
7983
|
--pf-c-calendar-month__header-year--Width: 8ch;
|
|
7984
7984
|
--pf-c-calendar-month__header-nav-control--MarginRight: 0;
|
|
7985
7985
|
--pf-c-calendar-month__header-nav-control--MarginLeft: 0;
|
|
7986
|
-
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginRight:
|
|
7987
|
-
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginLeft:
|
|
7988
|
-
--pf-c-calendar-month__header-nav-control--m-next-month--MarginRight:
|
|
7989
|
-
--pf-c-calendar-month__header-nav-control--m-next-month--MarginLeft:
|
|
7986
|
+
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginRight: 0;
|
|
7987
|
+
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginLeft: 0;
|
|
7988
|
+
--pf-c-calendar-month__header-nav-control--m-next-month--MarginRight: 0;
|
|
7989
|
+
--pf-c-calendar-month__header-nav-control--m-next-month--MarginLeft: 0;
|
|
7990
7990
|
--pf-c-calendar-month__days--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
|
|
7991
7991
|
--pf-c-calendar-month__days--BorderBottomColor: var(--pf-global--BorderColor--100);
|
|
7992
7992
|
--pf-c-calendar-month__day--PaddingBottom: var(--pf-global--spacer--md);
|