@patternfly/patternfly 6.0.0-alpha.201 → 6.0.0-alpha.202
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/Masthead/masthead.css +172 -95
- package/components/Masthead/masthead.scss +74 -49
- package/components/Nav/nav.css +5 -4
- package/components/Nav/nav.scss +5 -4
- package/components/Page/page.css +18 -12
- package/components/Page/page.scss +18 -12
- package/components/_index.css +195 -111
- package/docs/components/Masthead/examples/masthead.md +506 -493
- package/docs/components/Nav/examples/Navigation.md +0 -1
- package/docs/components/Page/examples/Page.md +98 -89
- package/docs/components/Wizard/examples/Wizard.md +1 -1
- package/docs/demos/AboutModal/examples/AboutModal.md +87 -83
- package/docs/demos/Alert/examples/Alert.md +263 -251
- package/docs/demos/BackToTop/examples/BackToTop.md +87 -83
- package/docs/demos/Banner/examples/Banner.md +177 -173
- package/docs/demos/CardView/examples/CardView.md +90 -88
- package/docs/demos/Dashboard/examples/Dashboard.md +87 -83
- package/docs/demos/DataList/examples/DataList.md +352 -344
- package/docs/demos/DescriptionList/examples/DescriptionList.md +262 -252
- package/docs/demos/Drawer/examples/Drawer.md +437 -423
- package/docs/demos/JumpLinks/examples/JumpLinks.md +524 -500
- package/docs/demos/Masthead/examples/Masthead.md +772 -736
- package/docs/demos/Modal/examples/Modal.md +522 -498
- package/docs/demos/Nav/examples/Nav.md +511 -487
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +435 -425
- package/docs/demos/Page/examples/Page.md +959 -915
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +611 -584
- package/docs/demos/Skeleton/examples/Skeleton.md +87 -83
- package/docs/demos/Table/examples/Table.md +1320 -1288
- package/docs/demos/Tabs/examples/Tabs.md +526 -504
- package/docs/demos/Toolbar/examples/Toolbar.md +174 -166
- package/docs/demos/Wizard/examples/Wizard.md +790 -767
- package/package.json +1 -1
- package/patternfly-no-globals.css +195 -111
- package/patternfly.css +195 -111
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -17,90 +17,94 @@ wrapperTag: div
|
|
|
17
17
|
</a>
|
|
18
18
|
</div>
|
|
19
19
|
<header class="pf-v6-c-masthead" id="wizard-basic-example-masthead">
|
|
20
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
21
|
-
<button
|
|
22
|
-
class="pf-v6-c-button pf-m-plain"
|
|
23
|
-
type="button"
|
|
24
|
-
aria-label="Global navigation"
|
|
25
|
-
>
|
|
26
|
-
<span class="pf-v6-c-button__icon">
|
|
27
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
28
|
-
</span>
|
|
29
|
-
</button>
|
|
30
|
-
</span>
|
|
31
20
|
<div class="pf-v6-c-masthead__main">
|
|
32
|
-
<
|
|
33
|
-
<
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
21
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
22
|
+
<button
|
|
23
|
+
class="pf-v6-c-button pf-m-plain"
|
|
24
|
+
type="button"
|
|
25
|
+
aria-label="Global navigation"
|
|
26
|
+
>
|
|
27
|
+
<span class="pf-v6-c-button__icon">
|
|
28
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
29
|
+
</span>
|
|
30
|
+
</button>
|
|
31
|
+
</span>
|
|
32
|
+
<div class="pf-v6-c-masthead__brand">
|
|
33
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
34
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
35
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
36
|
+
<defs>
|
|
37
|
+
<linearGradient
|
|
38
|
+
x1="68%"
|
|
39
|
+
y1="2.25860997e-13%"
|
|
40
|
+
x2="32%"
|
|
41
|
+
y2="100%"
|
|
42
|
+
id="linearGradient-wizard-basic-example-masthead"
|
|
43
|
+
>
|
|
44
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
45
|
+
<stop
|
|
46
|
+
stop-color="#73BCF7"
|
|
47
|
+
stop-opacity="0.502212631"
|
|
48
|
+
offset="100%"
|
|
49
|
+
/>
|
|
50
|
+
</linearGradient>
|
|
51
|
+
</defs>
|
|
52
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
53
|
+
<g
|
|
54
|
+
transform="translate(206.000000, 45.750000)"
|
|
55
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
56
|
+
fill-rule="nonzero"
|
|
57
|
+
>
|
|
58
|
+
<path
|
|
59
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
60
|
+
/>
|
|
61
|
+
<path
|
|
62
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
63
|
+
/>
|
|
64
|
+
<path
|
|
65
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
66
|
+
/>
|
|
67
|
+
<path
|
|
68
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
69
|
+
/>
|
|
70
|
+
<path
|
|
71
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
72
|
+
/>
|
|
73
|
+
<path
|
|
74
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
75
|
+
/>
|
|
76
|
+
<path
|
|
77
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
78
|
+
/>
|
|
79
|
+
<polygon
|
|
80
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
81
|
+
/>
|
|
82
|
+
<polygon
|
|
83
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
84
|
+
/>
|
|
85
|
+
<path
|
|
86
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
87
|
+
/>
|
|
88
|
+
</g>
|
|
89
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
90
|
+
<path
|
|
91
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
92
|
+
fill="#0066CC"
|
|
93
|
+
/>
|
|
94
|
+
<path
|
|
95
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
96
|
+
fill="url(#linearGradient-wizard-basic-example-masthead)"
|
|
97
|
+
/>
|
|
98
|
+
<path
|
|
99
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
100
|
+
fill="url(#linearGradient-wizard-basic-example-masthead)"
|
|
101
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
102
|
+
/>
|
|
103
|
+
</g>
|
|
100
104
|
</g>
|
|
101
|
-
</
|
|
102
|
-
</
|
|
103
|
-
</
|
|
105
|
+
</svg>
|
|
106
|
+
</a>
|
|
107
|
+
</div>
|
|
104
108
|
</div>
|
|
105
109
|
<div class="pf-v6-c-masthead__content">
|
|
106
110
|
<div
|
|
@@ -254,7 +258,7 @@ wrapperTag: div
|
|
|
254
258
|
</nav>
|
|
255
259
|
</div>
|
|
256
260
|
</section>
|
|
257
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
261
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
258
262
|
<div class="pf-v6-c-page__main-body">
|
|
259
263
|
<div class="pf-v6-c-content">
|
|
260
264
|
<h1>Main title</h1>
|
|
@@ -617,90 +621,94 @@ wrapperTag: div
|
|
|
617
621
|
</a>
|
|
618
622
|
</div>
|
|
619
623
|
<header class="pf-v6-c-masthead" id="wizard-nav-expanded-example-masthead">
|
|
620
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
621
|
-
<button
|
|
622
|
-
class="pf-v6-c-button pf-m-plain"
|
|
623
|
-
type="button"
|
|
624
|
-
aria-label="Global navigation"
|
|
625
|
-
>
|
|
626
|
-
<span class="pf-v6-c-button__icon">
|
|
627
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
628
|
-
</span>
|
|
629
|
-
</button>
|
|
630
|
-
</span>
|
|
631
624
|
<div class="pf-v6-c-masthead__main">
|
|
632
|
-
<
|
|
633
|
-
<
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
625
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
626
|
+
<button
|
|
627
|
+
class="pf-v6-c-button pf-m-plain"
|
|
628
|
+
type="button"
|
|
629
|
+
aria-label="Global navigation"
|
|
630
|
+
>
|
|
631
|
+
<span class="pf-v6-c-button__icon">
|
|
632
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
633
|
+
</span>
|
|
634
|
+
</button>
|
|
635
|
+
</span>
|
|
636
|
+
<div class="pf-v6-c-masthead__brand">
|
|
637
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
638
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
639
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
640
|
+
<defs>
|
|
641
|
+
<linearGradient
|
|
642
|
+
x1="68%"
|
|
643
|
+
y1="2.25860997e-13%"
|
|
644
|
+
x2="32%"
|
|
645
|
+
y2="100%"
|
|
646
|
+
id="linearGradient-wizard-nav-expanded-example-masthead"
|
|
647
|
+
>
|
|
648
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
649
|
+
<stop
|
|
650
|
+
stop-color="#73BCF7"
|
|
651
|
+
stop-opacity="0.502212631"
|
|
652
|
+
offset="100%"
|
|
653
|
+
/>
|
|
654
|
+
</linearGradient>
|
|
655
|
+
</defs>
|
|
656
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
657
|
+
<g
|
|
658
|
+
transform="translate(206.000000, 45.750000)"
|
|
659
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
660
|
+
fill-rule="nonzero"
|
|
661
|
+
>
|
|
662
|
+
<path
|
|
663
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
664
|
+
/>
|
|
665
|
+
<path
|
|
666
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
667
|
+
/>
|
|
668
|
+
<path
|
|
669
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
670
|
+
/>
|
|
671
|
+
<path
|
|
672
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
673
|
+
/>
|
|
674
|
+
<path
|
|
675
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
676
|
+
/>
|
|
677
|
+
<path
|
|
678
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
679
|
+
/>
|
|
680
|
+
<path
|
|
681
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
682
|
+
/>
|
|
683
|
+
<polygon
|
|
684
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
685
|
+
/>
|
|
686
|
+
<polygon
|
|
687
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
688
|
+
/>
|
|
689
|
+
<path
|
|
690
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
691
|
+
/>
|
|
692
|
+
</g>
|
|
693
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
694
|
+
<path
|
|
695
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
696
|
+
fill="#0066CC"
|
|
697
|
+
/>
|
|
698
|
+
<path
|
|
699
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
700
|
+
fill="url(#linearGradient-wizard-nav-expanded-example-masthead)"
|
|
701
|
+
/>
|
|
702
|
+
<path
|
|
703
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
704
|
+
fill="url(#linearGradient-wizard-nav-expanded-example-masthead)"
|
|
705
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
706
|
+
/>
|
|
707
|
+
</g>
|
|
700
708
|
</g>
|
|
701
|
-
</
|
|
702
|
-
</
|
|
703
|
-
</
|
|
709
|
+
</svg>
|
|
710
|
+
</a>
|
|
711
|
+
</div>
|
|
704
712
|
</div>
|
|
705
713
|
<div class="pf-v6-c-masthead__content">
|
|
706
714
|
<div
|
|
@@ -854,7 +862,7 @@ wrapperTag: div
|
|
|
854
862
|
</nav>
|
|
855
863
|
</div>
|
|
856
864
|
</section>
|
|
857
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
865
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
858
866
|
<div class="pf-v6-c-page__main-body">
|
|
859
867
|
<div class="pf-v6-c-content">
|
|
860
868
|
<h1>Main title</h1>
|
|
@@ -1199,90 +1207,94 @@ wrapperTag: div
|
|
|
1199
1207
|
class="pf-v6-c-masthead"
|
|
1200
1208
|
id="wizard-with-drawer-closed-example-masthead"
|
|
1201
1209
|
>
|
|
1202
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1203
|
-
<button
|
|
1204
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1205
|
-
type="button"
|
|
1206
|
-
aria-label="Global navigation"
|
|
1207
|
-
>
|
|
1208
|
-
<span class="pf-v6-c-button__icon">
|
|
1209
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1210
|
-
</span>
|
|
1211
|
-
</button>
|
|
1212
|
-
</span>
|
|
1213
1210
|
<div class="pf-v6-c-masthead__main">
|
|
1214
|
-
<
|
|
1215
|
-
<
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
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
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1211
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1212
|
+
<button
|
|
1213
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1214
|
+
type="button"
|
|
1215
|
+
aria-label="Global navigation"
|
|
1216
|
+
>
|
|
1217
|
+
<span class="pf-v6-c-button__icon">
|
|
1218
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1219
|
+
</span>
|
|
1220
|
+
</button>
|
|
1221
|
+
</span>
|
|
1222
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1223
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1224
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1225
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1226
|
+
<defs>
|
|
1227
|
+
<linearGradient
|
|
1228
|
+
x1="68%"
|
|
1229
|
+
y1="2.25860997e-13%"
|
|
1230
|
+
x2="32%"
|
|
1231
|
+
y2="100%"
|
|
1232
|
+
id="linearGradient-wizard-with-drawer-closed-example-masthead"
|
|
1233
|
+
>
|
|
1234
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1235
|
+
<stop
|
|
1236
|
+
stop-color="#73BCF7"
|
|
1237
|
+
stop-opacity="0.502212631"
|
|
1238
|
+
offset="100%"
|
|
1239
|
+
/>
|
|
1240
|
+
</linearGradient>
|
|
1241
|
+
</defs>
|
|
1242
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1243
|
+
<g
|
|
1244
|
+
transform="translate(206.000000, 45.750000)"
|
|
1245
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1246
|
+
fill-rule="nonzero"
|
|
1247
|
+
>
|
|
1248
|
+
<path
|
|
1249
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
1250
|
+
/>
|
|
1251
|
+
<path
|
|
1252
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
1253
|
+
/>
|
|
1254
|
+
<path
|
|
1255
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
1256
|
+
/>
|
|
1257
|
+
<path
|
|
1258
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
1259
|
+
/>
|
|
1260
|
+
<path
|
|
1261
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
1262
|
+
/>
|
|
1263
|
+
<path
|
|
1264
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
1265
|
+
/>
|
|
1266
|
+
<path
|
|
1267
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
1268
|
+
/>
|
|
1269
|
+
<polygon
|
|
1270
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
1271
|
+
/>
|
|
1272
|
+
<polygon
|
|
1273
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
1274
|
+
/>
|
|
1275
|
+
<path
|
|
1276
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
1277
|
+
/>
|
|
1278
|
+
</g>
|
|
1279
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
1280
|
+
<path
|
|
1281
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
1282
|
+
fill="#0066CC"
|
|
1283
|
+
/>
|
|
1284
|
+
<path
|
|
1285
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
1286
|
+
fill="url(#linearGradient-wizard-with-drawer-closed-example-masthead)"
|
|
1287
|
+
/>
|
|
1288
|
+
<path
|
|
1289
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
1290
|
+
fill="url(#linearGradient-wizard-with-drawer-closed-example-masthead)"
|
|
1291
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
1292
|
+
/>
|
|
1293
|
+
</g>
|
|
1282
1294
|
</g>
|
|
1283
|
-
</
|
|
1284
|
-
</
|
|
1285
|
-
</
|
|
1295
|
+
</svg>
|
|
1296
|
+
</a>
|
|
1297
|
+
</div>
|
|
1286
1298
|
</div>
|
|
1287
1299
|
<div class="pf-v6-c-masthead__content">
|
|
1288
1300
|
<div
|
|
@@ -1436,7 +1448,7 @@ wrapperTag: div
|
|
|
1436
1448
|
</nav>
|
|
1437
1449
|
</div>
|
|
1438
1450
|
</section>
|
|
1439
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
1451
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
1440
1452
|
<div class="pf-v6-c-page__main-body">
|
|
1441
1453
|
<div class="pf-v6-c-content">
|
|
1442
1454
|
<h1>Main title</h1>
|
|
@@ -1762,10 +1774,7 @@ wrapperTag: div
|
|
|
1762
1774
|
</form>
|
|
1763
1775
|
</div>
|
|
1764
1776
|
</div>
|
|
1765
|
-
<div
|
|
1766
|
-
class="pf-v6-c-drawer__panel pf-m-light-200 pf-m-width-33"
|
|
1767
|
-
hidden
|
|
1768
|
-
>
|
|
1777
|
+
<div class="pf-v6-c-drawer__panel pf-m-width-33" hidden>
|
|
1769
1778
|
<div class="pf-v6-c-drawer__body">
|
|
1770
1779
|
<div class="pf-v6-c-drawer__head">
|
|
1771
1780
|
<h2
|
|
@@ -1869,90 +1878,94 @@ wrapperTag: div
|
|
|
1869
1878
|
class="pf-v6-c-masthead"
|
|
1870
1879
|
id="wizard-with-drawer-expanded-example-masthead"
|
|
1871
1880
|
>
|
|
1872
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1873
|
-
<button
|
|
1874
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1875
|
-
type="button"
|
|
1876
|
-
aria-label="Global navigation"
|
|
1877
|
-
>
|
|
1878
|
-
<span class="pf-v6-c-button__icon">
|
|
1879
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1880
|
-
</span>
|
|
1881
|
-
</button>
|
|
1882
|
-
</span>
|
|
1883
1881
|
<div class="pf-v6-c-masthead__main">
|
|
1884
|
-
<
|
|
1885
|
-
<
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1882
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1883
|
+
<button
|
|
1884
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1885
|
+
type="button"
|
|
1886
|
+
aria-label="Global navigation"
|
|
1887
|
+
>
|
|
1888
|
+
<span class="pf-v6-c-button__icon">
|
|
1889
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1890
|
+
</span>
|
|
1891
|
+
</button>
|
|
1892
|
+
</span>
|
|
1893
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1894
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1895
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1896
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1897
|
+
<defs>
|
|
1898
|
+
<linearGradient
|
|
1899
|
+
x1="68%"
|
|
1900
|
+
y1="2.25860997e-13%"
|
|
1901
|
+
x2="32%"
|
|
1902
|
+
y2="100%"
|
|
1903
|
+
id="linearGradient-wizard-with-drawer-expanded-example-masthead"
|
|
1904
|
+
>
|
|
1905
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1906
|
+
<stop
|
|
1907
|
+
stop-color="#73BCF7"
|
|
1908
|
+
stop-opacity="0.502212631"
|
|
1909
|
+
offset="100%"
|
|
1910
|
+
/>
|
|
1911
|
+
</linearGradient>
|
|
1912
|
+
</defs>
|
|
1913
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1914
|
+
<g
|
|
1915
|
+
transform="translate(206.000000, 45.750000)"
|
|
1916
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1917
|
+
fill-rule="nonzero"
|
|
1918
|
+
>
|
|
1919
|
+
<path
|
|
1920
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
1921
|
+
/>
|
|
1922
|
+
<path
|
|
1923
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
1924
|
+
/>
|
|
1925
|
+
<path
|
|
1926
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
1927
|
+
/>
|
|
1928
|
+
<path
|
|
1929
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
1930
|
+
/>
|
|
1931
|
+
<path
|
|
1932
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
1933
|
+
/>
|
|
1934
|
+
<path
|
|
1935
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
1936
|
+
/>
|
|
1937
|
+
<path
|
|
1938
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
1939
|
+
/>
|
|
1940
|
+
<polygon
|
|
1941
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
1942
|
+
/>
|
|
1943
|
+
<polygon
|
|
1944
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
1945
|
+
/>
|
|
1946
|
+
<path
|
|
1947
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
1948
|
+
/>
|
|
1949
|
+
</g>
|
|
1950
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
1951
|
+
<path
|
|
1952
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
1953
|
+
fill="#0066CC"
|
|
1954
|
+
/>
|
|
1955
|
+
<path
|
|
1956
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
1957
|
+
fill="url(#linearGradient-wizard-with-drawer-expanded-example-masthead)"
|
|
1958
|
+
/>
|
|
1959
|
+
<path
|
|
1960
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
1961
|
+
fill="url(#linearGradient-wizard-with-drawer-expanded-example-masthead)"
|
|
1962
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
1963
|
+
/>
|
|
1964
|
+
</g>
|
|
1952
1965
|
</g>
|
|
1953
|
-
</
|
|
1954
|
-
</
|
|
1955
|
-
</
|
|
1966
|
+
</svg>
|
|
1967
|
+
</a>
|
|
1968
|
+
</div>
|
|
1956
1969
|
</div>
|
|
1957
1970
|
<div class="pf-v6-c-masthead__content">
|
|
1958
1971
|
<div
|
|
@@ -2106,7 +2119,7 @@ wrapperTag: div
|
|
|
2106
2119
|
</nav>
|
|
2107
2120
|
</div>
|
|
2108
2121
|
</section>
|
|
2109
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
2122
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
2110
2123
|
<div class="pf-v6-c-page__main-body">
|
|
2111
2124
|
<div class="pf-v6-c-content">
|
|
2112
2125
|
<h1>Main title</h1>
|
|
@@ -2432,9 +2445,7 @@ wrapperTag: div
|
|
|
2432
2445
|
</form>
|
|
2433
2446
|
</div>
|
|
2434
2447
|
</div>
|
|
2435
|
-
<div
|
|
2436
|
-
class="pf-v6-c-drawer__panel pf-m-light-200 pf-m-width-33"
|
|
2437
|
-
>
|
|
2448
|
+
<div class="pf-v6-c-drawer__panel pf-m-width-33">
|
|
2438
2449
|
<div class="pf-v6-c-drawer__body">
|
|
2439
2450
|
<div class="pf-v6-c-drawer__head">
|
|
2440
2451
|
<h2
|
|
@@ -2538,90 +2549,94 @@ wrapperTag: div
|
|
|
2538
2549
|
class="pf-v6-c-masthead"
|
|
2539
2550
|
id="wizard-with-drawer-info-example-masthead"
|
|
2540
2551
|
>
|
|
2541
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
2542
|
-
<button
|
|
2543
|
-
class="pf-v6-c-button pf-m-plain"
|
|
2544
|
-
type="button"
|
|
2545
|
-
aria-label="Global navigation"
|
|
2546
|
-
>
|
|
2547
|
-
<span class="pf-v6-c-button__icon">
|
|
2548
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
2549
|
-
</span>
|
|
2550
|
-
</button>
|
|
2551
|
-
</span>
|
|
2552
2552
|
<div class="pf-v6-c-masthead__main">
|
|
2553
|
-
<
|
|
2554
|
-
<
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2553
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
2554
|
+
<button
|
|
2555
|
+
class="pf-v6-c-button pf-m-plain"
|
|
2556
|
+
type="button"
|
|
2557
|
+
aria-label="Global navigation"
|
|
2558
|
+
>
|
|
2559
|
+
<span class="pf-v6-c-button__icon">
|
|
2560
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
2561
|
+
</span>
|
|
2562
|
+
</button>
|
|
2563
|
+
</span>
|
|
2564
|
+
<div class="pf-v6-c-masthead__brand">
|
|
2565
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
2566
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
2567
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
2568
|
+
<defs>
|
|
2569
|
+
<linearGradient
|
|
2570
|
+
x1="68%"
|
|
2571
|
+
y1="2.25860997e-13%"
|
|
2572
|
+
x2="32%"
|
|
2573
|
+
y2="100%"
|
|
2574
|
+
id="linearGradient-wizard-with-drawer-info-example-masthead"
|
|
2575
|
+
>
|
|
2576
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
2577
|
+
<stop
|
|
2578
|
+
stop-color="#73BCF7"
|
|
2579
|
+
stop-opacity="0.502212631"
|
|
2580
|
+
offset="100%"
|
|
2581
|
+
/>
|
|
2582
|
+
</linearGradient>
|
|
2583
|
+
</defs>
|
|
2584
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
2585
|
+
<g
|
|
2586
|
+
transform="translate(206.000000, 45.750000)"
|
|
2587
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
2588
|
+
fill-rule="nonzero"
|
|
2589
|
+
>
|
|
2590
|
+
<path
|
|
2591
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
2592
|
+
/>
|
|
2593
|
+
<path
|
|
2594
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
2595
|
+
/>
|
|
2596
|
+
<path
|
|
2597
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
2598
|
+
/>
|
|
2599
|
+
<path
|
|
2600
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
2601
|
+
/>
|
|
2602
|
+
<path
|
|
2603
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
2604
|
+
/>
|
|
2605
|
+
<path
|
|
2606
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
2607
|
+
/>
|
|
2608
|
+
<path
|
|
2609
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
2610
|
+
/>
|
|
2611
|
+
<polygon
|
|
2612
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
2613
|
+
/>
|
|
2614
|
+
<polygon
|
|
2615
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
2616
|
+
/>
|
|
2617
|
+
<path
|
|
2618
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
2619
|
+
/>
|
|
2620
|
+
</g>
|
|
2621
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
2622
|
+
<path
|
|
2623
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
2624
|
+
fill="#0066CC"
|
|
2625
|
+
/>
|
|
2626
|
+
<path
|
|
2627
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
2628
|
+
fill="url(#linearGradient-wizard-with-drawer-info-example-masthead)"
|
|
2629
|
+
/>
|
|
2630
|
+
<path
|
|
2631
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
2632
|
+
fill="url(#linearGradient-wizard-with-drawer-info-example-masthead)"
|
|
2633
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
2634
|
+
/>
|
|
2635
|
+
</g>
|
|
2621
2636
|
</g>
|
|
2622
|
-
</
|
|
2623
|
-
</
|
|
2624
|
-
</
|
|
2637
|
+
</svg>
|
|
2638
|
+
</a>
|
|
2639
|
+
</div>
|
|
2625
2640
|
</div>
|
|
2626
2641
|
<div class="pf-v6-c-masthead__content">
|
|
2627
2642
|
<div
|
|
@@ -2775,7 +2790,7 @@ wrapperTag: div
|
|
|
2775
2790
|
</nav>
|
|
2776
2791
|
</div>
|
|
2777
2792
|
</section>
|
|
2778
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
2793
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
2779
2794
|
<div class="pf-v6-c-page__main-body">
|
|
2780
2795
|
<div class="pf-v6-c-content">
|
|
2781
2796
|
<h1>Main title</h1>
|
|
@@ -2974,10 +2989,7 @@ wrapperTag: div
|
|
|
2974
2989
|
</div>
|
|
2975
2990
|
</div>
|
|
2976
2991
|
</div>
|
|
2977
|
-
<div
|
|
2978
|
-
class="pf-v6-c-drawer__panel pf-m-light-200 pf-m-width-33"
|
|
2979
|
-
hidden
|
|
2980
|
-
>
|
|
2992
|
+
<div class="pf-v6-c-drawer__panel pf-m-width-33" hidden>
|
|
2981
2993
|
<div class="pf-v6-c-drawer__body">
|
|
2982
2994
|
<div class="pf-v6-c-drawer__head">
|
|
2983
2995
|
<h2
|
|
@@ -3078,90 +3090,94 @@ wrapperTag: div
|
|
|
3078
3090
|
</a>
|
|
3079
3091
|
</div>
|
|
3080
3092
|
<header class="pf-v6-c-masthead" id="wizard-in-page-example-masthead">
|
|
3081
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
3082
|
-
<button
|
|
3083
|
-
class="pf-v6-c-button pf-m-plain"
|
|
3084
|
-
type="button"
|
|
3085
|
-
aria-label="Global navigation"
|
|
3086
|
-
>
|
|
3087
|
-
<span class="pf-v6-c-button__icon">
|
|
3088
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3089
|
-
</span>
|
|
3090
|
-
</button>
|
|
3091
|
-
</span>
|
|
3092
3093
|
<div class="pf-v6-c-masthead__main">
|
|
3093
|
-
<
|
|
3094
|
-
<
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3094
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
3095
|
+
<button
|
|
3096
|
+
class="pf-v6-c-button pf-m-plain"
|
|
3097
|
+
type="button"
|
|
3098
|
+
aria-label="Global navigation"
|
|
3099
|
+
>
|
|
3100
|
+
<span class="pf-v6-c-button__icon">
|
|
3101
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3102
|
+
</span>
|
|
3103
|
+
</button>
|
|
3104
|
+
</span>
|
|
3105
|
+
<div class="pf-v6-c-masthead__brand">
|
|
3106
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
3107
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
3108
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
3109
|
+
<defs>
|
|
3110
|
+
<linearGradient
|
|
3111
|
+
x1="68%"
|
|
3112
|
+
y1="2.25860997e-13%"
|
|
3113
|
+
x2="32%"
|
|
3114
|
+
y2="100%"
|
|
3115
|
+
id="linearGradient-wizard-in-page-example-masthead"
|
|
3116
|
+
>
|
|
3117
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
3118
|
+
<stop
|
|
3119
|
+
stop-color="#73BCF7"
|
|
3120
|
+
stop-opacity="0.502212631"
|
|
3121
|
+
offset="100%"
|
|
3122
|
+
/>
|
|
3123
|
+
</linearGradient>
|
|
3124
|
+
</defs>
|
|
3125
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
3126
|
+
<g
|
|
3127
|
+
transform="translate(206.000000, 45.750000)"
|
|
3128
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
3129
|
+
fill-rule="nonzero"
|
|
3130
|
+
>
|
|
3131
|
+
<path
|
|
3132
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
3133
|
+
/>
|
|
3134
|
+
<path
|
|
3135
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
3136
|
+
/>
|
|
3137
|
+
<path
|
|
3138
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
3139
|
+
/>
|
|
3140
|
+
<path
|
|
3141
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
3142
|
+
/>
|
|
3143
|
+
<path
|
|
3144
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
3145
|
+
/>
|
|
3146
|
+
<path
|
|
3147
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
3148
|
+
/>
|
|
3149
|
+
<path
|
|
3150
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
3151
|
+
/>
|
|
3152
|
+
<polygon
|
|
3153
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
3154
|
+
/>
|
|
3155
|
+
<polygon
|
|
3156
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
3157
|
+
/>
|
|
3158
|
+
<path
|
|
3159
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
3160
|
+
/>
|
|
3161
|
+
</g>
|
|
3162
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
3163
|
+
<path
|
|
3164
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
3165
|
+
fill="#0066CC"
|
|
3166
|
+
/>
|
|
3167
|
+
<path
|
|
3168
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
3169
|
+
fill="url(#linearGradient-wizard-in-page-example-masthead)"
|
|
3170
|
+
/>
|
|
3171
|
+
<path
|
|
3172
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
3173
|
+
fill="url(#linearGradient-wizard-in-page-example-masthead)"
|
|
3174
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
3175
|
+
/>
|
|
3176
|
+
</g>
|
|
3161
3177
|
</g>
|
|
3162
|
-
</
|
|
3163
|
-
</
|
|
3164
|
-
</
|
|
3178
|
+
</svg>
|
|
3179
|
+
</a>
|
|
3180
|
+
</div>
|
|
3165
3181
|
</div>
|
|
3166
3182
|
<div class="pf-v6-c-masthead__content">
|
|
3167
3183
|
<div
|
|
@@ -3315,7 +3331,7 @@ wrapperTag: div
|
|
|
3315
3331
|
</nav>
|
|
3316
3332
|
</div>
|
|
3317
3333
|
</section>
|
|
3318
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
3334
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
3319
3335
|
<div class="pf-v6-c-page__main-body">
|
|
3320
3336
|
<div class="pf-v6-c-content">
|
|
3321
3337
|
<h1>Main title</h1>
|
|
@@ -3622,90 +3638,94 @@ wrapperTag: div
|
|
|
3622
3638
|
</a>
|
|
3623
3639
|
</div>
|
|
3624
3640
|
<header class="pf-v6-c-masthead" id="in-page-nav-expanded-example-masthead">
|
|
3625
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
3626
|
-
<button
|
|
3627
|
-
class="pf-v6-c-button pf-m-plain"
|
|
3628
|
-
type="button"
|
|
3629
|
-
aria-label="Global navigation"
|
|
3630
|
-
>
|
|
3631
|
-
<span class="pf-v6-c-button__icon">
|
|
3632
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3633
|
-
</span>
|
|
3634
|
-
</button>
|
|
3635
|
-
</span>
|
|
3636
3641
|
<div class="pf-v6-c-masthead__main">
|
|
3637
|
-
<
|
|
3638
|
-
<
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3642
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
3643
|
+
<button
|
|
3644
|
+
class="pf-v6-c-button pf-m-plain"
|
|
3645
|
+
type="button"
|
|
3646
|
+
aria-label="Global navigation"
|
|
3647
|
+
>
|
|
3648
|
+
<span class="pf-v6-c-button__icon">
|
|
3649
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3650
|
+
</span>
|
|
3651
|
+
</button>
|
|
3652
|
+
</span>
|
|
3653
|
+
<div class="pf-v6-c-masthead__brand">
|
|
3654
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
3655
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
3656
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
3657
|
+
<defs>
|
|
3658
|
+
<linearGradient
|
|
3659
|
+
x1="68%"
|
|
3660
|
+
y1="2.25860997e-13%"
|
|
3661
|
+
x2="32%"
|
|
3662
|
+
y2="100%"
|
|
3663
|
+
id="linearGradient-in-page-nav-expanded-example-masthead"
|
|
3664
|
+
>
|
|
3665
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
3666
|
+
<stop
|
|
3667
|
+
stop-color="#73BCF7"
|
|
3668
|
+
stop-opacity="0.502212631"
|
|
3669
|
+
offset="100%"
|
|
3670
|
+
/>
|
|
3671
|
+
</linearGradient>
|
|
3672
|
+
</defs>
|
|
3673
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
3674
|
+
<g
|
|
3675
|
+
transform="translate(206.000000, 45.750000)"
|
|
3676
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
3677
|
+
fill-rule="nonzero"
|
|
3678
|
+
>
|
|
3679
|
+
<path
|
|
3680
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
3681
|
+
/>
|
|
3682
|
+
<path
|
|
3683
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
3684
|
+
/>
|
|
3685
|
+
<path
|
|
3686
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
3687
|
+
/>
|
|
3688
|
+
<path
|
|
3689
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
3690
|
+
/>
|
|
3691
|
+
<path
|
|
3692
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
3693
|
+
/>
|
|
3694
|
+
<path
|
|
3695
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
3696
|
+
/>
|
|
3697
|
+
<path
|
|
3698
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
3699
|
+
/>
|
|
3700
|
+
<polygon
|
|
3701
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
3702
|
+
/>
|
|
3703
|
+
<polygon
|
|
3704
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
3705
|
+
/>
|
|
3706
|
+
<path
|
|
3707
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
3708
|
+
/>
|
|
3709
|
+
</g>
|
|
3710
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
3711
|
+
<path
|
|
3712
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
3713
|
+
fill="#0066CC"
|
|
3714
|
+
/>
|
|
3715
|
+
<path
|
|
3716
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
3717
|
+
fill="url(#linearGradient-in-page-nav-expanded-example-masthead)"
|
|
3718
|
+
/>
|
|
3719
|
+
<path
|
|
3720
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
3721
|
+
fill="url(#linearGradient-in-page-nav-expanded-example-masthead)"
|
|
3722
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
3723
|
+
/>
|
|
3724
|
+
</g>
|
|
3705
3725
|
</g>
|
|
3706
|
-
</
|
|
3707
|
-
</
|
|
3708
|
-
</
|
|
3726
|
+
</svg>
|
|
3727
|
+
</a>
|
|
3728
|
+
</div>
|
|
3709
3729
|
</div>
|
|
3710
3730
|
<div class="pf-v6-c-masthead__content">
|
|
3711
3731
|
<div
|
|
@@ -3859,7 +3879,7 @@ wrapperTag: div
|
|
|
3859
3879
|
</nav>
|
|
3860
3880
|
</div>
|
|
3861
3881
|
</section>
|
|
3862
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
3882
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
3863
3883
|
<div class="pf-v6-c-page__main-body">
|
|
3864
3884
|
<div class="pf-v6-c-content">
|
|
3865
3885
|
<h1>Main title</h1>
|
|
@@ -4148,90 +4168,94 @@ wrapperTag: div
|
|
|
4148
4168
|
class="pf-v6-c-masthead"
|
|
4149
4169
|
id="wizard-with-drawer-in-page-example-masthead"
|
|
4150
4170
|
>
|
|
4151
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
4152
|
-
<button
|
|
4153
|
-
class="pf-v6-c-button pf-m-plain"
|
|
4154
|
-
type="button"
|
|
4155
|
-
aria-label="Global navigation"
|
|
4156
|
-
>
|
|
4157
|
-
<span class="pf-v6-c-button__icon">
|
|
4158
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
4159
|
-
</span>
|
|
4160
|
-
</button>
|
|
4161
|
-
</span>
|
|
4162
4171
|
<div class="pf-v6-c-masthead__main">
|
|
4163
|
-
<
|
|
4164
|
-
<
|
|
4165
|
-
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
|
|
4212
|
-
|
|
4213
|
-
|
|
4214
|
-
|
|
4215
|
-
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
|
|
4219
|
-
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
|
|
4230
|
-
|
|
4172
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
4173
|
+
<button
|
|
4174
|
+
class="pf-v6-c-button pf-m-plain"
|
|
4175
|
+
type="button"
|
|
4176
|
+
aria-label="Global navigation"
|
|
4177
|
+
>
|
|
4178
|
+
<span class="pf-v6-c-button__icon">
|
|
4179
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
4180
|
+
</span>
|
|
4181
|
+
</button>
|
|
4182
|
+
</span>
|
|
4183
|
+
<div class="pf-v6-c-masthead__brand">
|
|
4184
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
4185
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
4186
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
4187
|
+
<defs>
|
|
4188
|
+
<linearGradient
|
|
4189
|
+
x1="68%"
|
|
4190
|
+
y1="2.25860997e-13%"
|
|
4191
|
+
x2="32%"
|
|
4192
|
+
y2="100%"
|
|
4193
|
+
id="linearGradient-wizard-with-drawer-in-page-example-masthead"
|
|
4194
|
+
>
|
|
4195
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
4196
|
+
<stop
|
|
4197
|
+
stop-color="#73BCF7"
|
|
4198
|
+
stop-opacity="0.502212631"
|
|
4199
|
+
offset="100%"
|
|
4200
|
+
/>
|
|
4201
|
+
</linearGradient>
|
|
4202
|
+
</defs>
|
|
4203
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
4204
|
+
<g
|
|
4205
|
+
transform="translate(206.000000, 45.750000)"
|
|
4206
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
4207
|
+
fill-rule="nonzero"
|
|
4208
|
+
>
|
|
4209
|
+
<path
|
|
4210
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
4211
|
+
/>
|
|
4212
|
+
<path
|
|
4213
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
4214
|
+
/>
|
|
4215
|
+
<path
|
|
4216
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
4217
|
+
/>
|
|
4218
|
+
<path
|
|
4219
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
4220
|
+
/>
|
|
4221
|
+
<path
|
|
4222
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
4223
|
+
/>
|
|
4224
|
+
<path
|
|
4225
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
4226
|
+
/>
|
|
4227
|
+
<path
|
|
4228
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
4229
|
+
/>
|
|
4230
|
+
<polygon
|
|
4231
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
4232
|
+
/>
|
|
4233
|
+
<polygon
|
|
4234
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
4235
|
+
/>
|
|
4236
|
+
<path
|
|
4237
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
4238
|
+
/>
|
|
4239
|
+
</g>
|
|
4240
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
4241
|
+
<path
|
|
4242
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
4243
|
+
fill="#0066CC"
|
|
4244
|
+
/>
|
|
4245
|
+
<path
|
|
4246
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
4247
|
+
fill="url(#linearGradient-wizard-with-drawer-in-page-example-masthead)"
|
|
4248
|
+
/>
|
|
4249
|
+
<path
|
|
4250
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
4251
|
+
fill="url(#linearGradient-wizard-with-drawer-in-page-example-masthead)"
|
|
4252
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
4253
|
+
/>
|
|
4254
|
+
</g>
|
|
4231
4255
|
</g>
|
|
4232
|
-
</
|
|
4233
|
-
</
|
|
4234
|
-
</
|
|
4256
|
+
</svg>
|
|
4257
|
+
</a>
|
|
4258
|
+
</div>
|
|
4235
4259
|
</div>
|
|
4236
4260
|
<div class="pf-v6-c-masthead__content">
|
|
4237
4261
|
<div
|
|
@@ -4385,7 +4409,7 @@ wrapperTag: div
|
|
|
4385
4409
|
</nav>
|
|
4386
4410
|
</div>
|
|
4387
4411
|
</section>
|
|
4388
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
4412
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
4389
4413
|
<div class="pf-v6-c-page__main-body">
|
|
4390
4414
|
<div class="pf-v6-c-content">
|
|
4391
4415
|
<h1>Main title</h1>
|
|
@@ -4393,7 +4417,7 @@ wrapperTag: div
|
|
|
4393
4417
|
</div>
|
|
4394
4418
|
</div>
|
|
4395
4419
|
</section>
|
|
4396
|
-
<section class="pf-v6-c-page__main-wizard
|
|
4420
|
+
<section class="pf-v6-c-page__main-wizard">
|
|
4397
4421
|
<div class="pf-v6-c-wizard">
|
|
4398
4422
|
<button
|
|
4399
4423
|
aria-label="Wizard Header Toggle"
|
|
@@ -4648,10 +4672,7 @@ wrapperTag: div
|
|
|
4648
4672
|
</form>
|
|
4649
4673
|
</div>
|
|
4650
4674
|
</div>
|
|
4651
|
-
<div
|
|
4652
|
-
class="pf-v6-c-drawer__panel pf-m-light-200 pf-m-width-33"
|
|
4653
|
-
hidden
|
|
4654
|
-
>
|
|
4675
|
+
<div class="pf-v6-c-drawer__panel pf-m-width-33" hidden>
|
|
4655
4676
|
<div class="pf-v6-c-drawer__body">
|
|
4656
4677
|
<div class="pf-v6-c-drawer__head">
|
|
4657
4678
|
<h2
|
|
@@ -4748,90 +4769,94 @@ wrapperTag: div
|
|
|
4748
4769
|
class="pf-v6-c-masthead"
|
|
4749
4770
|
id="wizard-with-drawer-in-page-expanded-example-masthead"
|
|
4750
4771
|
>
|
|
4751
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
4752
|
-
<button
|
|
4753
|
-
class="pf-v6-c-button pf-m-plain"
|
|
4754
|
-
type="button"
|
|
4755
|
-
aria-label="Global navigation"
|
|
4756
|
-
>
|
|
4757
|
-
<span class="pf-v6-c-button__icon">
|
|
4758
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
4759
|
-
</span>
|
|
4760
|
-
</button>
|
|
4761
|
-
</span>
|
|
4762
4772
|
<div class="pf-v6-c-masthead__main">
|
|
4763
|
-
<
|
|
4764
|
-
<
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
|
|
4808
|
-
|
|
4809
|
-
|
|
4810
|
-
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
|
|
4815
|
-
|
|
4816
|
-
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
|
|
4829
|
-
|
|
4830
|
-
|
|
4773
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
4774
|
+
<button
|
|
4775
|
+
class="pf-v6-c-button pf-m-plain"
|
|
4776
|
+
type="button"
|
|
4777
|
+
aria-label="Global navigation"
|
|
4778
|
+
>
|
|
4779
|
+
<span class="pf-v6-c-button__icon">
|
|
4780
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
4781
|
+
</span>
|
|
4782
|
+
</button>
|
|
4783
|
+
</span>
|
|
4784
|
+
<div class="pf-v6-c-masthead__brand">
|
|
4785
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
4786
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
4787
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
4788
|
+
<defs>
|
|
4789
|
+
<linearGradient
|
|
4790
|
+
x1="68%"
|
|
4791
|
+
y1="2.25860997e-13%"
|
|
4792
|
+
x2="32%"
|
|
4793
|
+
y2="100%"
|
|
4794
|
+
id="linearGradient-wizard-with-drawer-in-page-expanded-example-masthead"
|
|
4795
|
+
>
|
|
4796
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
4797
|
+
<stop
|
|
4798
|
+
stop-color="#73BCF7"
|
|
4799
|
+
stop-opacity="0.502212631"
|
|
4800
|
+
offset="100%"
|
|
4801
|
+
/>
|
|
4802
|
+
</linearGradient>
|
|
4803
|
+
</defs>
|
|
4804
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
4805
|
+
<g
|
|
4806
|
+
transform="translate(206.000000, 45.750000)"
|
|
4807
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
4808
|
+
fill-rule="nonzero"
|
|
4809
|
+
>
|
|
4810
|
+
<path
|
|
4811
|
+
d="M0,65.25 L0,2.25 L33.21,2.25 C37.35,2.25 41.025,3.135 44.235,4.905 C47.445,6.675 49.98,9.09 51.84,12.15 C53.7,15.21 54.63,18.72 54.63,22.68 C54.63,26.46 53.7,29.865 51.84,32.895 C49.98,35.925 47.43,38.31 44.19,40.05 C40.95,41.79 37.29,42.66 33.21,42.66 L15.48,42.66 L15.48,65.25 L0,65.25 Z M15.48,29.88 L31.41,29.88 C33.69,29.88 35.52,29.22 36.9,27.9 C38.28,26.58 38.97,24.87 38.97,22.77 C38.97,20.61 38.28,18.855 36.9,17.505 C35.52,16.155 33.69,15.48 31.41,15.48 L15.48,15.48 L15.48,29.88 Z"
|
|
4812
|
+
/>
|
|
4813
|
+
<path
|
|
4814
|
+
d="M77.04,66.06 C73.68,66.06 70.695,65.43 68.085,64.17 C65.475,62.91 63.435,61.17 61.965,58.95 C60.495,56.73 59.76,54.18 59.76,51.3 C59.76,46.74 61.485,43.215 64.935,40.725 C68.385,38.235 73.2,36.99 79.38,36.99 C83.1,36.99 86.7,37.44 90.18,38.34 L90.18,36 C90.18,31.26 87.15,28.89 81.09,28.89 C77.49,28.89 72.69,30.15 66.69,32.67 L61.47,21.96 C69.15,18.48 76.56,16.74 83.7,16.74 C90.3,16.74 95.43,18.315 99.09,21.465 C102.75,24.615 104.58,29.04 104.58,34.74 L104.58,65.25 L90.18,65.25 L90.18,62.37 C88.26,63.69 86.235,64.635 84.105,65.205 C81.975,65.775 79.62,66.06 77.04,66.06 Z M73.62,51.03 C73.62,52.53 74.28,53.7 75.6,54.54 C76.92,55.38 78.75,55.8 81.09,55.8 C84.69,55.8 87.72,55.05 90.18,53.55 L90.18,47.43 C87.42,46.71 84.54,46.35 81.54,46.35 C79.02,46.35 77.07,46.755 75.69,47.565 C74.31,48.375 73.62,49.53 73.62,51.03 Z"
|
|
4815
|
+
/>
|
|
4816
|
+
<path
|
|
4817
|
+
d="M137.25,65.88 C125.73,65.88 119.97,60.84 119.97,50.76 L119.97,29.79 L110.34,29.79 L110.34,17.64 L119.97,17.64 L119.97,5.4 L134.55,2.25 L134.55,17.64 L147.87,17.64 L147.87,29.79 L134.55,29.79 L134.55,47.88 C134.55,49.98 135.015,51.465 135.945,52.335 C136.875,53.205 138.51,53.64 140.85,53.64 C143.01,53.64 145.2,53.31 147.42,52.65 L147.42,64.44 C146.1,64.86 144.42,65.205 142.38,65.475 C140.34,65.745 138.63,65.88 137.25,65.88 Z"
|
|
4818
|
+
/>
|
|
4819
|
+
<path
|
|
4820
|
+
d="M177.57,65.88 C166.05,65.88 160.29,60.84 160.29,50.76 L160.29,29.79 L150.66,29.79 L150.66,17.64 L160.29,17.64 L160.29,5.4 L174.87,2.25 L174.87,17.64 L188.19,17.64 L188.19,29.79 L174.87,29.79 L174.87,47.88 C174.87,49.98 175.335,51.465 176.265,52.335 C177.195,53.205 178.83,53.64 181.17,53.64 C183.33,53.64 185.52,53.31 187.74,52.65 L187.74,64.44 C186.42,64.86 184.74,65.205 182.7,65.475 C180.66,65.745 178.95,65.88 177.57,65.88 Z"
|
|
4821
|
+
/>
|
|
4822
|
+
<path
|
|
4823
|
+
d="M217.62,66.15 C212.76,66.15 208.365,65.055 204.435,62.865 C200.505,60.675 197.4,57.72 195.12,54 C192.84,50.28 191.7,46.11 191.7,41.49 C191.7,36.87 192.795,32.7 194.985,28.98 C197.175,25.26 200.16,22.305 203.94,20.115 C207.72,17.925 211.92,16.83 216.54,16.83 C221.22,16.83 225.36,17.955 228.96,20.205 C232.56,22.455 235.395,25.53 237.465,29.43 C239.535,33.33 240.57,37.8 240.57,42.84 L240.57,46.44 L206.64,46.44 C207.6,48.66 209.1,50.475 211.14,51.885 C213.18,53.295 215.58,54 218.34,54 C222.42,54 225.6,52.8 227.88,50.4 L237.51,58.95 C234.51,61.47 231.435,63.3 228.285,64.44 C225.135,65.58 221.58,66.15 217.62,66.15 Z M206.37,36.27 L226.26,36.27 C225.48,33.99 224.205,32.16 222.435,30.78 C220.665,29.4 218.61,28.71 216.27,28.71 C213.87,28.71 211.8,29.37 210.06,30.69 C208.32,32.01 207.09,33.87 206.37,36.27 Z"
|
|
4824
|
+
/>
|
|
4825
|
+
<path
|
|
4826
|
+
d="M247.41,65.25 L247.41,17.64 L261.99,17.64 L261.99,22.41 C265.23,18.51 269.4,16.56 274.5,16.56 C277.08,16.62 278.91,17.01 279.99,17.73 L279.99,30.42 C277.95,29.46 275.64,28.98 273.06,28.98 C270.78,28.98 268.665,29.505 266.715,30.555 C264.765,31.605 263.19,33.09 261.99,35.01 L261.99,65.25 L247.41,65.25 Z"
|
|
4827
|
+
/>
|
|
4828
|
+
<path
|
|
4829
|
+
d="M286.29,65.25 L286.29,17.64 L300.87,17.64 L300.87,20.88 C304.47,18.12 308.73,16.74 313.65,16.74 C317.37,16.74 320.655,17.55 323.505,19.17 C326.355,20.79 328.59,23.04 330.21,25.92 C331.83,28.8 332.64,32.13 332.64,35.91 L332.64,65.25 L318.06,65.25 L318.06,37.89 C318.06,35.25 317.28,33.15 315.72,31.59 C314.16,30.03 312.06,29.25 309.42,29.25 C305.76,29.25 302.91,30.51 300.87,33.03 L300.87,65.25 L286.29,65.25 Z"
|
|
4830
|
+
/>
|
|
4831
|
+
<polygon
|
|
4832
|
+
points="342 65.25 342 2.25 392.04 2.25 392.04 15.66 357.48 15.66 357.48 27.45 380.52 27.45 380.52 40.41 357.48 40.41 357.48 65.25"
|
|
4833
|
+
/>
|
|
4834
|
+
<polygon
|
|
4835
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
4836
|
+
/>
|
|
4837
|
+
<path
|
|
4838
|
+
d="M429.21,84.69 C428.07,84.69 426.96,84.645 425.88,84.555 C424.8,84.465 423.9,84.33 423.18,84.15 L423.18,71.73 C424.38,71.97 425.88,72.09 427.68,72.09 C432.36,72.09 435.51,70.05 437.13,65.97 L437.13,65.88 L418.86,17.64 L434.97,17.64 L445.5,47.61 L457.74,17.64 L473.49,17.64 L452.16,67.68 C450.42,71.82 448.5,75.135 446.4,77.625 C444.3,80.115 441.87,81.915 439.11,83.025 C436.35,84.135 433.05,84.69 429.21,84.69 Z"
|
|
4839
|
+
/>
|
|
4840
|
+
</g>
|
|
4841
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
4842
|
+
<path
|
|
4843
|
+
d="M61.826087,0 L158,0 L158,96.173913 L147.695652,96.173913 C100.271201,96.173913 61.826087,57.7287992 61.826087,10.3043478 L61.826087,0 L61.826087,0 Z"
|
|
4844
|
+
fill="#0066CC"
|
|
4845
|
+
/>
|
|
4846
|
+
<path
|
|
4847
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
4848
|
+
fill="url(#linearGradient-wizard-with-drawer-in-page-expanded-example-masthead)"
|
|
4849
|
+
/>
|
|
4850
|
+
<path
|
|
4851
|
+
d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
|
|
4852
|
+
fill="url(#linearGradient-wizard-with-drawer-in-page-expanded-example-masthead)"
|
|
4853
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
4854
|
+
/>
|
|
4855
|
+
</g>
|
|
4831
4856
|
</g>
|
|
4832
|
-
</
|
|
4833
|
-
</
|
|
4834
|
-
</
|
|
4857
|
+
</svg>
|
|
4858
|
+
</a>
|
|
4859
|
+
</div>
|
|
4835
4860
|
</div>
|
|
4836
4861
|
<div class="pf-v6-c-masthead__content">
|
|
4837
4862
|
<div
|
|
@@ -4985,7 +5010,7 @@ wrapperTag: div
|
|
|
4985
5010
|
</nav>
|
|
4986
5011
|
</div>
|
|
4987
5012
|
</section>
|
|
4988
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
5013
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
4989
5014
|
<div class="pf-v6-c-page__main-body">
|
|
4990
5015
|
<div class="pf-v6-c-content">
|
|
4991
5016
|
<h1>Main title</h1>
|
|
@@ -4993,7 +5018,7 @@ wrapperTag: div
|
|
|
4993
5018
|
</div>
|
|
4994
5019
|
</div>
|
|
4995
5020
|
</section>
|
|
4996
|
-
<section class="pf-v6-c-page__main-wizard
|
|
5021
|
+
<section class="pf-v6-c-page__main-wizard">
|
|
4997
5022
|
<div class="pf-v6-c-wizard">
|
|
4998
5023
|
<button
|
|
4999
5024
|
aria-label="Wizard Header Toggle"
|
|
@@ -5248,9 +5273,7 @@ wrapperTag: div
|
|
|
5248
5273
|
</form>
|
|
5249
5274
|
</div>
|
|
5250
5275
|
</div>
|
|
5251
|
-
<div
|
|
5252
|
-
class="pf-v6-c-drawer__panel pf-m-light-200 pf-m-width-33"
|
|
5253
|
-
>
|
|
5276
|
+
<div class="pf-v6-c-drawer__panel pf-m-width-33">
|
|
5254
5277
|
<div class="pf-v6-c-drawer__body">
|
|
5255
5278
|
<div class="pf-v6-c-drawer__head">
|
|
5256
5279
|
<h2
|