@patternfly/patternfly 6.0.0-alpha.201 → 6.0.0-alpha.203
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 +194 -96
- package/components/Masthead/masthead.scss +83 -50
- package/components/Nav/nav.css +5 -4
- package/components/Nav/nav.scss +5 -4
- package/components/Page/page.css +32 -18
- package/components/Page/page.scss +33 -20
- package/components/_index.css +231 -118
- 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 +1567 -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 +231 -118
- package/patternfly.css +231 -118
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -16,90 +16,94 @@ wrapperTag: div
|
|
|
16
16
|
</a>
|
|
17
17
|
</div>
|
|
18
18
|
<header class="pf-v6-c-masthead" id="page-demo-basic-masthead">
|
|
19
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
20
|
-
<button
|
|
21
|
-
class="pf-v6-c-button pf-m-plain"
|
|
22
|
-
type="button"
|
|
23
|
-
aria-label="Global navigation"
|
|
24
|
-
>
|
|
25
|
-
<span class="pf-v6-c-button__icon">
|
|
26
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
27
|
-
</span>
|
|
28
|
-
</button>
|
|
29
|
-
</span>
|
|
30
19
|
<div class="pf-v6-c-masthead__main">
|
|
31
|
-
<
|
|
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
|
-
|
|
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
|
+
<div class="pf-v6-c-masthead__brand">
|
|
32
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
33
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
34
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
35
|
+
<defs>
|
|
36
|
+
<linearGradient
|
|
37
|
+
x1="68%"
|
|
38
|
+
y1="2.25860997e-13%"
|
|
39
|
+
x2="32%"
|
|
40
|
+
y2="100%"
|
|
41
|
+
id="linearGradient-page-demo-basic-masthead"
|
|
42
|
+
>
|
|
43
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
44
|
+
<stop
|
|
45
|
+
stop-color="#73BCF7"
|
|
46
|
+
stop-opacity="0.502212631"
|
|
47
|
+
offset="100%"
|
|
48
|
+
/>
|
|
49
|
+
</linearGradient>
|
|
50
|
+
</defs>
|
|
51
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
52
|
+
<g
|
|
53
|
+
transform="translate(206.000000, 45.750000)"
|
|
54
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
55
|
+
fill-rule="nonzero"
|
|
56
|
+
>
|
|
57
|
+
<path
|
|
58
|
+
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"
|
|
59
|
+
/>
|
|
60
|
+
<path
|
|
61
|
+
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"
|
|
62
|
+
/>
|
|
63
|
+
<path
|
|
64
|
+
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"
|
|
65
|
+
/>
|
|
66
|
+
<path
|
|
67
|
+
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"
|
|
68
|
+
/>
|
|
69
|
+
<path
|
|
70
|
+
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"
|
|
71
|
+
/>
|
|
72
|
+
<path
|
|
73
|
+
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"
|
|
74
|
+
/>
|
|
75
|
+
<path
|
|
76
|
+
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"
|
|
77
|
+
/>
|
|
78
|
+
<polygon
|
|
79
|
+
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"
|
|
80
|
+
/>
|
|
81
|
+
<polygon
|
|
82
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
83
|
+
/>
|
|
84
|
+
<path
|
|
85
|
+
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"
|
|
86
|
+
/>
|
|
87
|
+
</g>
|
|
88
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
89
|
+
<path
|
|
90
|
+
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"
|
|
91
|
+
fill="#0066CC"
|
|
92
|
+
/>
|
|
93
|
+
<path
|
|
94
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
95
|
+
fill="url(#linearGradient-page-demo-basic-masthead)"
|
|
96
|
+
/>
|
|
97
|
+
<path
|
|
98
|
+
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"
|
|
99
|
+
fill="url(#linearGradient-page-demo-basic-masthead)"
|
|
100
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
101
|
+
/>
|
|
102
|
+
</g>
|
|
99
103
|
</g>
|
|
100
|
-
</
|
|
101
|
-
</
|
|
102
|
-
</
|
|
104
|
+
</svg>
|
|
105
|
+
</a>
|
|
106
|
+
</div>
|
|
103
107
|
</div>
|
|
104
108
|
<div class="pf-v6-c-masthead__content">
|
|
105
109
|
<div
|
|
@@ -253,7 +257,7 @@ wrapperTag: div
|
|
|
253
257
|
</nav>
|
|
254
258
|
</div>
|
|
255
259
|
</section>
|
|
256
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
260
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
257
261
|
<div class="pf-v6-c-page__main-body">
|
|
258
262
|
<div class="pf-v6-c-content">
|
|
259
263
|
<h1>Main title</h1>
|
|
@@ -319,90 +323,94 @@ wrapperTag: div
|
|
|
319
323
|
class="pf-v6-c-masthead"
|
|
320
324
|
id="multiple-sidebar-body-elements-demo-masthead"
|
|
321
325
|
>
|
|
322
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
323
|
-
<button
|
|
324
|
-
class="pf-v6-c-button pf-m-plain"
|
|
325
|
-
type="button"
|
|
326
|
-
aria-label="Global navigation"
|
|
327
|
-
>
|
|
328
|
-
<span class="pf-v6-c-button__icon">
|
|
329
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
330
|
-
</span>
|
|
331
|
-
</button>
|
|
332
|
-
</span>
|
|
333
326
|
<div class="pf-v6-c-masthead__main">
|
|
334
|
-
<
|
|
335
|
-
<
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
327
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
328
|
+
<button
|
|
329
|
+
class="pf-v6-c-button pf-m-plain"
|
|
330
|
+
type="button"
|
|
331
|
+
aria-label="Global navigation"
|
|
332
|
+
>
|
|
333
|
+
<span class="pf-v6-c-button__icon">
|
|
334
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
335
|
+
</span>
|
|
336
|
+
</button>
|
|
337
|
+
</span>
|
|
338
|
+
<div class="pf-v6-c-masthead__brand">
|
|
339
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
340
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
341
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
342
|
+
<defs>
|
|
343
|
+
<linearGradient
|
|
344
|
+
x1="68%"
|
|
345
|
+
y1="2.25860997e-13%"
|
|
346
|
+
x2="32%"
|
|
347
|
+
y2="100%"
|
|
348
|
+
id="linearGradient-multiple-sidebar-body-elements-demo-masthead"
|
|
349
|
+
>
|
|
350
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
351
|
+
<stop
|
|
352
|
+
stop-color="#73BCF7"
|
|
353
|
+
stop-opacity="0.502212631"
|
|
354
|
+
offset="100%"
|
|
355
|
+
/>
|
|
356
|
+
</linearGradient>
|
|
357
|
+
</defs>
|
|
358
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
359
|
+
<g
|
|
360
|
+
transform="translate(206.000000, 45.750000)"
|
|
361
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
362
|
+
fill-rule="nonzero"
|
|
363
|
+
>
|
|
364
|
+
<path
|
|
365
|
+
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"
|
|
366
|
+
/>
|
|
367
|
+
<path
|
|
368
|
+
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"
|
|
369
|
+
/>
|
|
370
|
+
<path
|
|
371
|
+
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"
|
|
372
|
+
/>
|
|
373
|
+
<path
|
|
374
|
+
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"
|
|
375
|
+
/>
|
|
376
|
+
<path
|
|
377
|
+
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"
|
|
378
|
+
/>
|
|
379
|
+
<path
|
|
380
|
+
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"
|
|
381
|
+
/>
|
|
382
|
+
<path
|
|
383
|
+
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"
|
|
384
|
+
/>
|
|
385
|
+
<polygon
|
|
386
|
+
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"
|
|
387
|
+
/>
|
|
388
|
+
<polygon
|
|
389
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
390
|
+
/>
|
|
391
|
+
<path
|
|
392
|
+
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"
|
|
393
|
+
/>
|
|
394
|
+
</g>
|
|
395
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
396
|
+
<path
|
|
397
|
+
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"
|
|
398
|
+
fill="#0066CC"
|
|
399
|
+
/>
|
|
400
|
+
<path
|
|
401
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
402
|
+
fill="url(#linearGradient-multiple-sidebar-body-elements-demo-masthead)"
|
|
403
|
+
/>
|
|
404
|
+
<path
|
|
405
|
+
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"
|
|
406
|
+
fill="url(#linearGradient-multiple-sidebar-body-elements-demo-masthead)"
|
|
407
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
408
|
+
/>
|
|
409
|
+
</g>
|
|
402
410
|
</g>
|
|
403
|
-
</
|
|
404
|
-
</
|
|
405
|
-
</
|
|
411
|
+
</svg>
|
|
412
|
+
</a>
|
|
413
|
+
</div>
|
|
406
414
|
</div>
|
|
407
415
|
<div class="pf-v6-c-masthead__content">
|
|
408
416
|
<div
|
|
@@ -571,7 +579,7 @@ wrapperTag: div
|
|
|
571
579
|
</nav>
|
|
572
580
|
</div>
|
|
573
581
|
</section>
|
|
574
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
582
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
575
583
|
<div class="pf-v6-c-page__main-body">
|
|
576
584
|
<div class="pf-v6-c-content">
|
|
577
585
|
<h1>Main title</h1>
|
|
@@ -637,90 +645,94 @@ wrapperTag: div
|
|
|
637
645
|
class="pf-v6-c-masthead"
|
|
638
646
|
id="page-demo-sticky-top-horizontal-subnav-masthead"
|
|
639
647
|
>
|
|
640
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
641
|
-
<button
|
|
642
|
-
class="pf-v6-c-button pf-m-plain"
|
|
643
|
-
type="button"
|
|
644
|
-
aria-label="Global navigation"
|
|
645
|
-
>
|
|
646
|
-
<span class="pf-v6-c-button__icon">
|
|
647
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
648
|
-
</span>
|
|
649
|
-
</button>
|
|
650
|
-
</span>
|
|
651
648
|
<div class="pf-v6-c-masthead__main">
|
|
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
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
649
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
650
|
+
<button
|
|
651
|
+
class="pf-v6-c-button pf-m-plain"
|
|
652
|
+
type="button"
|
|
653
|
+
aria-label="Global navigation"
|
|
654
|
+
>
|
|
655
|
+
<span class="pf-v6-c-button__icon">
|
|
656
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
657
|
+
</span>
|
|
658
|
+
</button>
|
|
659
|
+
</span>
|
|
660
|
+
<div class="pf-v6-c-masthead__brand">
|
|
661
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
662
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
663
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
664
|
+
<defs>
|
|
665
|
+
<linearGradient
|
|
666
|
+
x1="68%"
|
|
667
|
+
y1="2.25860997e-13%"
|
|
668
|
+
x2="32%"
|
|
669
|
+
y2="100%"
|
|
670
|
+
id="linearGradient-page-demo-sticky-top-horizontal-subnav-masthead"
|
|
671
|
+
>
|
|
672
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
673
|
+
<stop
|
|
674
|
+
stop-color="#73BCF7"
|
|
675
|
+
stop-opacity="0.502212631"
|
|
676
|
+
offset="100%"
|
|
677
|
+
/>
|
|
678
|
+
</linearGradient>
|
|
679
|
+
</defs>
|
|
680
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
681
|
+
<g
|
|
682
|
+
transform="translate(206.000000, 45.750000)"
|
|
683
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
684
|
+
fill-rule="nonzero"
|
|
685
|
+
>
|
|
686
|
+
<path
|
|
687
|
+
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"
|
|
688
|
+
/>
|
|
689
|
+
<path
|
|
690
|
+
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"
|
|
691
|
+
/>
|
|
692
|
+
<path
|
|
693
|
+
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"
|
|
694
|
+
/>
|
|
695
|
+
<path
|
|
696
|
+
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"
|
|
697
|
+
/>
|
|
698
|
+
<path
|
|
699
|
+
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"
|
|
700
|
+
/>
|
|
701
|
+
<path
|
|
702
|
+
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"
|
|
703
|
+
/>
|
|
704
|
+
<path
|
|
705
|
+
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"
|
|
706
|
+
/>
|
|
707
|
+
<polygon
|
|
708
|
+
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"
|
|
709
|
+
/>
|
|
710
|
+
<polygon
|
|
711
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
712
|
+
/>
|
|
713
|
+
<path
|
|
714
|
+
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"
|
|
715
|
+
/>
|
|
716
|
+
</g>
|
|
717
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
718
|
+
<path
|
|
719
|
+
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"
|
|
720
|
+
fill="#0066CC"
|
|
721
|
+
/>
|
|
722
|
+
<path
|
|
723
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
724
|
+
fill="url(#linearGradient-page-demo-sticky-top-horizontal-subnav-masthead)"
|
|
725
|
+
/>
|
|
726
|
+
<path
|
|
727
|
+
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"
|
|
728
|
+
fill="url(#linearGradient-page-demo-sticky-top-horizontal-subnav-masthead)"
|
|
729
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
730
|
+
/>
|
|
731
|
+
</g>
|
|
720
732
|
</g>
|
|
721
|
-
</
|
|
722
|
-
</
|
|
723
|
-
</
|
|
733
|
+
</svg>
|
|
734
|
+
</a>
|
|
735
|
+
</div>
|
|
724
736
|
</div>
|
|
725
737
|
<div class="pf-v6-c-masthead__content">
|
|
726
738
|
<div
|
|
@@ -901,7 +913,7 @@ wrapperTag: div
|
|
|
901
913
|
</nav>
|
|
902
914
|
</div>
|
|
903
915
|
</section>
|
|
904
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
916
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
905
917
|
<div class="pf-v6-c-page__main-body">
|
|
906
918
|
<div class="pf-v6-c-content">
|
|
907
919
|
<h1>Main title</h1>
|
|
@@ -1087,90 +1099,94 @@ wrapperTag: div
|
|
|
1087
1099
|
class="pf-v6-c-masthead"
|
|
1088
1100
|
id="page-demo-sticky-top-breadcrumb-masthead"
|
|
1089
1101
|
>
|
|
1090
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1091
|
-
<button
|
|
1092
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1093
|
-
type="button"
|
|
1094
|
-
aria-label="Global navigation"
|
|
1095
|
-
>
|
|
1096
|
-
<span class="pf-v6-c-button__icon">
|
|
1097
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1098
|
-
</span>
|
|
1099
|
-
</button>
|
|
1100
|
-
</span>
|
|
1101
1102
|
<div class="pf-v6-c-masthead__main">
|
|
1102
|
-
<
|
|
1103
|
-
<
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1103
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1104
|
+
<button
|
|
1105
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1106
|
+
type="button"
|
|
1107
|
+
aria-label="Global navigation"
|
|
1108
|
+
>
|
|
1109
|
+
<span class="pf-v6-c-button__icon">
|
|
1110
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1111
|
+
</span>
|
|
1112
|
+
</button>
|
|
1113
|
+
</span>
|
|
1114
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1115
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1116
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1117
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1118
|
+
<defs>
|
|
1119
|
+
<linearGradient
|
|
1120
|
+
x1="68%"
|
|
1121
|
+
y1="2.25860997e-13%"
|
|
1122
|
+
x2="32%"
|
|
1123
|
+
y2="100%"
|
|
1124
|
+
id="linearGradient-page-demo-sticky-top-breadcrumb-masthead"
|
|
1125
|
+
>
|
|
1126
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1127
|
+
<stop
|
|
1128
|
+
stop-color="#73BCF7"
|
|
1129
|
+
stop-opacity="0.502212631"
|
|
1130
|
+
offset="100%"
|
|
1131
|
+
/>
|
|
1132
|
+
</linearGradient>
|
|
1133
|
+
</defs>
|
|
1134
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1135
|
+
<g
|
|
1136
|
+
transform="translate(206.000000, 45.750000)"
|
|
1137
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1138
|
+
fill-rule="nonzero"
|
|
1139
|
+
>
|
|
1140
|
+
<path
|
|
1141
|
+
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"
|
|
1142
|
+
/>
|
|
1143
|
+
<path
|
|
1144
|
+
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"
|
|
1145
|
+
/>
|
|
1146
|
+
<path
|
|
1147
|
+
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"
|
|
1148
|
+
/>
|
|
1149
|
+
<path
|
|
1150
|
+
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"
|
|
1151
|
+
/>
|
|
1152
|
+
<path
|
|
1153
|
+
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"
|
|
1154
|
+
/>
|
|
1155
|
+
<path
|
|
1156
|
+
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"
|
|
1157
|
+
/>
|
|
1158
|
+
<path
|
|
1159
|
+
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"
|
|
1160
|
+
/>
|
|
1161
|
+
<polygon
|
|
1162
|
+
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"
|
|
1163
|
+
/>
|
|
1164
|
+
<polygon
|
|
1165
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
1166
|
+
/>
|
|
1167
|
+
<path
|
|
1168
|
+
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"
|
|
1169
|
+
/>
|
|
1170
|
+
</g>
|
|
1171
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
1172
|
+
<path
|
|
1173
|
+
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"
|
|
1174
|
+
fill="#0066CC"
|
|
1175
|
+
/>
|
|
1176
|
+
<path
|
|
1177
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
1178
|
+
fill="url(#linearGradient-page-demo-sticky-top-breadcrumb-masthead)"
|
|
1179
|
+
/>
|
|
1180
|
+
<path
|
|
1181
|
+
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"
|
|
1182
|
+
fill="url(#linearGradient-page-demo-sticky-top-breadcrumb-masthead)"
|
|
1183
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
1184
|
+
/>
|
|
1185
|
+
</g>
|
|
1170
1186
|
</g>
|
|
1171
|
-
</
|
|
1172
|
-
</
|
|
1173
|
-
</
|
|
1187
|
+
</svg>
|
|
1188
|
+
</a>
|
|
1189
|
+
</div>
|
|
1174
1190
|
</div>
|
|
1175
1191
|
<div class="pf-v6-c-masthead__content">
|
|
1176
1192
|
<div
|
|
@@ -1326,7 +1342,7 @@ wrapperTag: div
|
|
|
1326
1342
|
</nav>
|
|
1327
1343
|
</div>
|
|
1328
1344
|
</section>
|
|
1329
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
1345
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
1330
1346
|
<div class="pf-v6-c-page__main-body">
|
|
1331
1347
|
<div class="pf-v6-c-content">
|
|
1332
1348
|
<h1>Main title</h1>
|
|
@@ -1512,90 +1528,94 @@ wrapperTag: div
|
|
|
1512
1528
|
class="pf-v6-c-masthead"
|
|
1513
1529
|
id="page-demo-sticky-top-breadcrumb-masthead"
|
|
1514
1530
|
>
|
|
1515
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1516
|
-
<button
|
|
1517
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1518
|
-
type="button"
|
|
1519
|
-
aria-label="Global navigation"
|
|
1520
|
-
>
|
|
1521
|
-
<span class="pf-v6-c-button__icon">
|
|
1522
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1523
|
-
</span>
|
|
1524
|
-
</button>
|
|
1525
|
-
</span>
|
|
1526
1531
|
<div class="pf-v6-c-masthead__main">
|
|
1527
|
-
<
|
|
1528
|
-
<
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1532
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1533
|
+
<button
|
|
1534
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1535
|
+
type="button"
|
|
1536
|
+
aria-label="Global navigation"
|
|
1537
|
+
>
|
|
1538
|
+
<span class="pf-v6-c-button__icon">
|
|
1539
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1540
|
+
</span>
|
|
1541
|
+
</button>
|
|
1542
|
+
</span>
|
|
1543
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1544
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1545
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1546
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1547
|
+
<defs>
|
|
1548
|
+
<linearGradient
|
|
1549
|
+
x1="68%"
|
|
1550
|
+
y1="2.25860997e-13%"
|
|
1551
|
+
x2="32%"
|
|
1552
|
+
y2="100%"
|
|
1553
|
+
id="linearGradient-page-demo-sticky-top-breadcrumb-masthead"
|
|
1554
|
+
>
|
|
1555
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1556
|
+
<stop
|
|
1557
|
+
stop-color="#73BCF7"
|
|
1558
|
+
stop-opacity="0.502212631"
|
|
1559
|
+
offset="100%"
|
|
1560
|
+
/>
|
|
1561
|
+
</linearGradient>
|
|
1562
|
+
</defs>
|
|
1563
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1564
|
+
<g
|
|
1565
|
+
transform="translate(206.000000, 45.750000)"
|
|
1566
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1567
|
+
fill-rule="nonzero"
|
|
1568
|
+
>
|
|
1569
|
+
<path
|
|
1570
|
+
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"
|
|
1571
|
+
/>
|
|
1572
|
+
<path
|
|
1573
|
+
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"
|
|
1574
|
+
/>
|
|
1575
|
+
<path
|
|
1576
|
+
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"
|
|
1577
|
+
/>
|
|
1578
|
+
<path
|
|
1579
|
+
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"
|
|
1580
|
+
/>
|
|
1581
|
+
<path
|
|
1582
|
+
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"
|
|
1583
|
+
/>
|
|
1584
|
+
<path
|
|
1585
|
+
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"
|
|
1586
|
+
/>
|
|
1587
|
+
<path
|
|
1588
|
+
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"
|
|
1589
|
+
/>
|
|
1590
|
+
<polygon
|
|
1591
|
+
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"
|
|
1592
|
+
/>
|
|
1593
|
+
<polygon
|
|
1594
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
1595
|
+
/>
|
|
1596
|
+
<path
|
|
1597
|
+
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"
|
|
1598
|
+
/>
|
|
1599
|
+
</g>
|
|
1600
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
1601
|
+
<path
|
|
1602
|
+
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"
|
|
1603
|
+
fill="#0066CC"
|
|
1604
|
+
/>
|
|
1605
|
+
<path
|
|
1606
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
1607
|
+
fill="url(#linearGradient-page-demo-sticky-top-breadcrumb-masthead)"
|
|
1608
|
+
/>
|
|
1609
|
+
<path
|
|
1610
|
+
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"
|
|
1611
|
+
fill="url(#linearGradient-page-demo-sticky-top-breadcrumb-masthead)"
|
|
1612
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
1613
|
+
/>
|
|
1614
|
+
</g>
|
|
1595
1615
|
</g>
|
|
1596
|
-
</
|
|
1597
|
-
</
|
|
1598
|
-
</
|
|
1616
|
+
</svg>
|
|
1617
|
+
</a>
|
|
1618
|
+
</div>
|
|
1599
1619
|
</div>
|
|
1600
1620
|
<div class="pf-v6-c-masthead__content">
|
|
1601
1621
|
<div
|
|
@@ -1751,7 +1771,7 @@ wrapperTag: div
|
|
|
1751
1771
|
</nav>
|
|
1752
1772
|
</div>
|
|
1753
1773
|
</section>
|
|
1754
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
1774
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
1755
1775
|
<div class="pf-v6-c-page__main-body">
|
|
1756
1776
|
<div class="pf-v6-c-content">
|
|
1757
1777
|
<h1>Main title</h1>
|
|
@@ -1937,90 +1957,94 @@ wrapperTag: div
|
|
|
1937
1957
|
class="pf-v6-c-masthead"
|
|
1938
1958
|
id="page-demo-sticky-top-section-group-masthead"
|
|
1939
1959
|
>
|
|
1940
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1941
|
-
<button
|
|
1942
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1943
|
-
type="button"
|
|
1944
|
-
aria-label="Global navigation"
|
|
1945
|
-
>
|
|
1946
|
-
<span class="pf-v6-c-button__icon">
|
|
1947
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1948
|
-
</span>
|
|
1949
|
-
</button>
|
|
1950
|
-
</span>
|
|
1951
1960
|
<div class="pf-v6-c-masthead__main">
|
|
1952
|
-
<
|
|
1953
|
-
<
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
1961
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1962
|
+
<button
|
|
1963
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1964
|
+
type="button"
|
|
1965
|
+
aria-label="Global navigation"
|
|
1966
|
+
>
|
|
1967
|
+
<span class="pf-v6-c-button__icon">
|
|
1968
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1969
|
+
</span>
|
|
1970
|
+
</button>
|
|
1971
|
+
</span>
|
|
1972
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1973
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1974
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1975
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1976
|
+
<defs>
|
|
1977
|
+
<linearGradient
|
|
1978
|
+
x1="68%"
|
|
1979
|
+
y1="2.25860997e-13%"
|
|
1980
|
+
x2="32%"
|
|
1981
|
+
y2="100%"
|
|
1982
|
+
id="linearGradient-page-demo-sticky-top-section-group-masthead"
|
|
1983
|
+
>
|
|
1984
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1985
|
+
<stop
|
|
1986
|
+
stop-color="#73BCF7"
|
|
1987
|
+
stop-opacity="0.502212631"
|
|
1988
|
+
offset="100%"
|
|
1989
|
+
/>
|
|
1990
|
+
</linearGradient>
|
|
1991
|
+
</defs>
|
|
1992
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1993
|
+
<g
|
|
1994
|
+
transform="translate(206.000000, 45.750000)"
|
|
1995
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1996
|
+
fill-rule="nonzero"
|
|
1997
|
+
>
|
|
1998
|
+
<path
|
|
1999
|
+
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"
|
|
2000
|
+
/>
|
|
2001
|
+
<path
|
|
2002
|
+
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"
|
|
2003
|
+
/>
|
|
2004
|
+
<path
|
|
2005
|
+
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"
|
|
2006
|
+
/>
|
|
2007
|
+
<path
|
|
2008
|
+
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"
|
|
2009
|
+
/>
|
|
2010
|
+
<path
|
|
2011
|
+
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"
|
|
2012
|
+
/>
|
|
2013
|
+
<path
|
|
2014
|
+
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"
|
|
2015
|
+
/>
|
|
2016
|
+
<path
|
|
2017
|
+
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"
|
|
2018
|
+
/>
|
|
2019
|
+
<polygon
|
|
2020
|
+
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"
|
|
2021
|
+
/>
|
|
2022
|
+
<polygon
|
|
2023
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
2024
|
+
/>
|
|
2025
|
+
<path
|
|
2026
|
+
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"
|
|
2027
|
+
/>
|
|
2028
|
+
</g>
|
|
2029
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
2030
|
+
<path
|
|
2031
|
+
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"
|
|
2032
|
+
fill="#0066CC"
|
|
2033
|
+
/>
|
|
2034
|
+
<path
|
|
2035
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
2036
|
+
fill="url(#linearGradient-page-demo-sticky-top-section-group-masthead)"
|
|
2037
|
+
/>
|
|
2038
|
+
<path
|
|
2039
|
+
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"
|
|
2040
|
+
fill="url(#linearGradient-page-demo-sticky-top-section-group-masthead)"
|
|
2041
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
2042
|
+
/>
|
|
2043
|
+
</g>
|
|
2020
2044
|
</g>
|
|
2021
|
-
</
|
|
2022
|
-
</
|
|
2023
|
-
</
|
|
2045
|
+
</svg>
|
|
2046
|
+
</a>
|
|
2047
|
+
</div>
|
|
2024
2048
|
</div>
|
|
2025
2049
|
<div class="pf-v6-c-masthead__content">
|
|
2026
2050
|
<div
|
|
@@ -2175,7 +2199,7 @@ wrapperTag: div
|
|
|
2175
2199
|
</nav>
|
|
2176
2200
|
</div>
|
|
2177
2201
|
</section>
|
|
2178
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
2202
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
2179
2203
|
<div class="pf-v6-c-page__main-body">
|
|
2180
2204
|
<div class="pf-v6-c-content">
|
|
2181
2205
|
<h1>Main title</h1>
|
|
@@ -2362,90 +2386,94 @@ wrapperTag: div
|
|
|
2362
2386
|
class="pf-v6-c-masthead"
|
|
2363
2387
|
id="page-demo-sticky-section-bottom-masthead"
|
|
2364
2388
|
>
|
|
2365
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
2366
|
-
<button
|
|
2367
|
-
class="pf-v6-c-button pf-m-plain"
|
|
2368
|
-
type="button"
|
|
2369
|
-
aria-label="Global navigation"
|
|
2370
|
-
>
|
|
2371
|
-
<span class="pf-v6-c-button__icon">
|
|
2372
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
2373
|
-
</span>
|
|
2374
|
-
</button>
|
|
2375
|
-
</span>
|
|
2376
2389
|
<div class="pf-v6-c-masthead__main">
|
|
2377
|
-
<
|
|
2378
|
-
<
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2390
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
2391
|
+
<button
|
|
2392
|
+
class="pf-v6-c-button pf-m-plain"
|
|
2393
|
+
type="button"
|
|
2394
|
+
aria-label="Global navigation"
|
|
2395
|
+
>
|
|
2396
|
+
<span class="pf-v6-c-button__icon">
|
|
2397
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
2398
|
+
</span>
|
|
2399
|
+
</button>
|
|
2400
|
+
</span>
|
|
2401
|
+
<div class="pf-v6-c-masthead__brand">
|
|
2402
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
2403
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
2404
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
2405
|
+
<defs>
|
|
2406
|
+
<linearGradient
|
|
2407
|
+
x1="68%"
|
|
2408
|
+
y1="2.25860997e-13%"
|
|
2409
|
+
x2="32%"
|
|
2410
|
+
y2="100%"
|
|
2411
|
+
id="linearGradient-page-demo-sticky-section-bottom-masthead"
|
|
2412
|
+
>
|
|
2413
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
2414
|
+
<stop
|
|
2415
|
+
stop-color="#73BCF7"
|
|
2416
|
+
stop-opacity="0.502212631"
|
|
2417
|
+
offset="100%"
|
|
2418
|
+
/>
|
|
2419
|
+
</linearGradient>
|
|
2420
|
+
</defs>
|
|
2421
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
2422
|
+
<g
|
|
2423
|
+
transform="translate(206.000000, 45.750000)"
|
|
2424
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
2425
|
+
fill-rule="nonzero"
|
|
2426
|
+
>
|
|
2427
|
+
<path
|
|
2428
|
+
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"
|
|
2429
|
+
/>
|
|
2430
|
+
<path
|
|
2431
|
+
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"
|
|
2432
|
+
/>
|
|
2433
|
+
<path
|
|
2434
|
+
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"
|
|
2435
|
+
/>
|
|
2436
|
+
<path
|
|
2437
|
+
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"
|
|
2438
|
+
/>
|
|
2439
|
+
<path
|
|
2440
|
+
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"
|
|
2441
|
+
/>
|
|
2442
|
+
<path
|
|
2443
|
+
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"
|
|
2444
|
+
/>
|
|
2445
|
+
<path
|
|
2446
|
+
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"
|
|
2447
|
+
/>
|
|
2448
|
+
<polygon
|
|
2449
|
+
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"
|
|
2450
|
+
/>
|
|
2451
|
+
<polygon
|
|
2452
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
2453
|
+
/>
|
|
2454
|
+
<path
|
|
2455
|
+
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"
|
|
2456
|
+
/>
|
|
2457
|
+
</g>
|
|
2458
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
2459
|
+
<path
|
|
2460
|
+
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"
|
|
2461
|
+
fill="#0066CC"
|
|
2462
|
+
/>
|
|
2463
|
+
<path
|
|
2464
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
2465
|
+
fill="url(#linearGradient-page-demo-sticky-section-bottom-masthead)"
|
|
2466
|
+
/>
|
|
2467
|
+
<path
|
|
2468
|
+
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"
|
|
2469
|
+
fill="url(#linearGradient-page-demo-sticky-section-bottom-masthead)"
|
|
2470
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
2471
|
+
/>
|
|
2472
|
+
</g>
|
|
2445
2473
|
</g>
|
|
2446
|
-
</
|
|
2447
|
-
</
|
|
2448
|
-
</
|
|
2474
|
+
</svg>
|
|
2475
|
+
</a>
|
|
2476
|
+
</div>
|
|
2449
2477
|
</div>
|
|
2450
2478
|
<div class="pf-v6-c-masthead__content">
|
|
2451
2479
|
<div
|
|
@@ -2599,7 +2627,7 @@ wrapperTag: div
|
|
|
2599
2627
|
</nav>
|
|
2600
2628
|
</div>
|
|
2601
2629
|
</section>
|
|
2602
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
2630
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
2603
2631
|
<div class="pf-v6-c-page__main-body">
|
|
2604
2632
|
<div class="pf-v6-c-content">
|
|
2605
2633
|
<h1>Main title</h1>
|
|
@@ -2764,7 +2792,7 @@ wrapperTag: div
|
|
|
2764
2792
|
</div>
|
|
2765
2793
|
</section>
|
|
2766
2794
|
<section
|
|
2767
|
-
class="pf-v6-c-page__main-section pf-m-limit-width pf-m-
|
|
2795
|
+
class="pf-v6-c-page__main-section pf-m-limit-width pf-m-sticky-bottom"
|
|
2768
2796
|
>
|
|
2769
2797
|
<div class="pf-v6-c-page__main-body">
|
|
2770
2798
|
<p>PatternFly is an open source design system built to drive consistency and unify teams. From documentation and components to code examples and tutorials, PatternFly is a place where design and development can thrive. We’re on a mission to help teams build consistent, accessible, and scalable enterprise product experiences—the open source way.</p>
|
|
@@ -2789,90 +2817,94 @@ wrapperTag: div
|
|
|
2789
2817
|
</a>
|
|
2790
2818
|
</div>
|
|
2791
2819
|
<header class="pf-v6-c-masthead" id="page-demo-overflow-scroll-masthead">
|
|
2792
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
2793
|
-
<button
|
|
2794
|
-
class="pf-v6-c-button pf-m-plain"
|
|
2795
|
-
type="button"
|
|
2796
|
-
aria-label="Global navigation"
|
|
2797
|
-
>
|
|
2798
|
-
<span class="pf-v6-c-button__icon">
|
|
2799
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
2800
|
-
</span>
|
|
2801
|
-
</button>
|
|
2802
|
-
</span>
|
|
2803
2820
|
<div class="pf-v6-c-masthead__main">
|
|
2804
|
-
<
|
|
2805
|
-
<
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2821
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
2822
|
+
<button
|
|
2823
|
+
class="pf-v6-c-button pf-m-plain"
|
|
2824
|
+
type="button"
|
|
2825
|
+
aria-label="Global navigation"
|
|
2826
|
+
>
|
|
2827
|
+
<span class="pf-v6-c-button__icon">
|
|
2828
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
2829
|
+
</span>
|
|
2830
|
+
</button>
|
|
2831
|
+
</span>
|
|
2832
|
+
<div class="pf-v6-c-masthead__brand">
|
|
2833
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
2834
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
2835
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
2836
|
+
<defs>
|
|
2837
|
+
<linearGradient
|
|
2838
|
+
x1="68%"
|
|
2839
|
+
y1="2.25860997e-13%"
|
|
2840
|
+
x2="32%"
|
|
2841
|
+
y2="100%"
|
|
2842
|
+
id="linearGradient-page-demo-overflow-scroll-masthead"
|
|
2843
|
+
>
|
|
2844
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
2845
|
+
<stop
|
|
2846
|
+
stop-color="#73BCF7"
|
|
2847
|
+
stop-opacity="0.502212631"
|
|
2848
|
+
offset="100%"
|
|
2849
|
+
/>
|
|
2850
|
+
</linearGradient>
|
|
2851
|
+
</defs>
|
|
2852
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
2853
|
+
<g
|
|
2854
|
+
transform="translate(206.000000, 45.750000)"
|
|
2855
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
2856
|
+
fill-rule="nonzero"
|
|
2857
|
+
>
|
|
2858
|
+
<path
|
|
2859
|
+
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"
|
|
2860
|
+
/>
|
|
2861
|
+
<path
|
|
2862
|
+
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"
|
|
2863
|
+
/>
|
|
2864
|
+
<path
|
|
2865
|
+
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"
|
|
2866
|
+
/>
|
|
2867
|
+
<path
|
|
2868
|
+
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"
|
|
2869
|
+
/>
|
|
2870
|
+
<path
|
|
2871
|
+
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"
|
|
2872
|
+
/>
|
|
2873
|
+
<path
|
|
2874
|
+
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"
|
|
2875
|
+
/>
|
|
2876
|
+
<path
|
|
2877
|
+
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"
|
|
2878
|
+
/>
|
|
2879
|
+
<polygon
|
|
2880
|
+
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"
|
|
2881
|
+
/>
|
|
2882
|
+
<polygon
|
|
2883
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
2884
|
+
/>
|
|
2885
|
+
<path
|
|
2886
|
+
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"
|
|
2887
|
+
/>
|
|
2888
|
+
</g>
|
|
2889
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
2890
|
+
<path
|
|
2891
|
+
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"
|
|
2892
|
+
fill="#0066CC"
|
|
2893
|
+
/>
|
|
2894
|
+
<path
|
|
2895
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
2896
|
+
fill="url(#linearGradient-page-demo-overflow-scroll-masthead)"
|
|
2897
|
+
/>
|
|
2898
|
+
<path
|
|
2899
|
+
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"
|
|
2900
|
+
fill="url(#linearGradient-page-demo-overflow-scroll-masthead)"
|
|
2901
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
2902
|
+
/>
|
|
2903
|
+
</g>
|
|
2872
2904
|
</g>
|
|
2873
|
-
</
|
|
2874
|
-
</
|
|
2875
|
-
</
|
|
2905
|
+
</svg>
|
|
2906
|
+
</a>
|
|
2907
|
+
</div>
|
|
2876
2908
|
</div>
|
|
2877
2909
|
<div class="pf-v6-c-masthead__content">
|
|
2878
2910
|
<div
|
|
@@ -3027,7 +3059,7 @@ wrapperTag: div
|
|
|
3027
3059
|
</div>
|
|
3028
3060
|
</section>
|
|
3029
3061
|
<section
|
|
3030
|
-
class="pf-v6-c-page__main-section pf-m-limit-width pf-m-
|
|
3062
|
+
class="pf-v6-c-page__main-section pf-m-limit-width pf-m-shadow-bottom"
|
|
3031
3063
|
>
|
|
3032
3064
|
<div class="pf-v6-c-page__main-body">
|
|
3033
3065
|
<div class="pf-v6-c-content">
|
|
@@ -3196,7 +3228,7 @@ wrapperTag: div
|
|
|
3196
3228
|
</div>
|
|
3197
3229
|
</section>
|
|
3198
3230
|
<section
|
|
3199
|
-
class="pf-v6-c-page__main-section pf-m-limit-width pf-m-
|
|
3231
|
+
class="pf-v6-c-page__main-section pf-m-limit-width pf-m-shadow-top"
|
|
3200
3232
|
>
|
|
3201
3233
|
<div class="pf-v6-c-page__main-body">
|
|
3202
3234
|
<p>PatternFly is an open source design system built to drive consistency and unify teams. From documentation and components to code examples and tutorials, PatternFly is a place where design and development can thrive. We’re on a mission to help teams build consistent, accessible, and scalable enterprise product experiences—the open source way.</p>
|
|
@@ -3221,90 +3253,94 @@ wrapperTag: div
|
|
|
3221
3253
|
</a>
|
|
3222
3254
|
</div>
|
|
3223
3255
|
<header class="pf-v6-c-masthead" id="page-demo-centered-section-masthead">
|
|
3224
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
3225
|
-
<button
|
|
3226
|
-
class="pf-v6-c-button pf-m-plain"
|
|
3227
|
-
type="button"
|
|
3228
|
-
aria-label="Global navigation"
|
|
3229
|
-
>
|
|
3230
|
-
<span class="pf-v6-c-button__icon">
|
|
3231
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3232
|
-
</span>
|
|
3233
|
-
</button>
|
|
3234
|
-
</span>
|
|
3235
3256
|
<div class="pf-v6-c-masthead__main">
|
|
3236
|
-
<
|
|
3237
|
-
<
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3257
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
3258
|
+
<button
|
|
3259
|
+
class="pf-v6-c-button pf-m-plain"
|
|
3260
|
+
type="button"
|
|
3261
|
+
aria-label="Global navigation"
|
|
3262
|
+
>
|
|
3263
|
+
<span class="pf-v6-c-button__icon">
|
|
3264
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3265
|
+
</span>
|
|
3266
|
+
</button>
|
|
3267
|
+
</span>
|
|
3268
|
+
<div class="pf-v6-c-masthead__brand">
|
|
3269
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
3270
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
3271
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
3272
|
+
<defs>
|
|
3273
|
+
<linearGradient
|
|
3274
|
+
x1="68%"
|
|
3275
|
+
y1="2.25860997e-13%"
|
|
3276
|
+
x2="32%"
|
|
3277
|
+
y2="100%"
|
|
3278
|
+
id="linearGradient-page-demo-centered-section-masthead"
|
|
3279
|
+
>
|
|
3280
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
3281
|
+
<stop
|
|
3282
|
+
stop-color="#73BCF7"
|
|
3283
|
+
stop-opacity="0.502212631"
|
|
3284
|
+
offset="100%"
|
|
3285
|
+
/>
|
|
3286
|
+
</linearGradient>
|
|
3287
|
+
</defs>
|
|
3288
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
3289
|
+
<g
|
|
3290
|
+
transform="translate(206.000000, 45.750000)"
|
|
3291
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
3292
|
+
fill-rule="nonzero"
|
|
3293
|
+
>
|
|
3294
|
+
<path
|
|
3295
|
+
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"
|
|
3296
|
+
/>
|
|
3297
|
+
<path
|
|
3298
|
+
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"
|
|
3299
|
+
/>
|
|
3300
|
+
<path
|
|
3301
|
+
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"
|
|
3302
|
+
/>
|
|
3303
|
+
<path
|
|
3304
|
+
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"
|
|
3305
|
+
/>
|
|
3306
|
+
<path
|
|
3307
|
+
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"
|
|
3308
|
+
/>
|
|
3309
|
+
<path
|
|
3310
|
+
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"
|
|
3311
|
+
/>
|
|
3312
|
+
<path
|
|
3313
|
+
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"
|
|
3314
|
+
/>
|
|
3315
|
+
<polygon
|
|
3316
|
+
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"
|
|
3317
|
+
/>
|
|
3318
|
+
<polygon
|
|
3319
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
3320
|
+
/>
|
|
3321
|
+
<path
|
|
3322
|
+
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"
|
|
3323
|
+
/>
|
|
3324
|
+
</g>
|
|
3325
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
3326
|
+
<path
|
|
3327
|
+
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"
|
|
3328
|
+
fill="#0066CC"
|
|
3329
|
+
/>
|
|
3330
|
+
<path
|
|
3331
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
3332
|
+
fill="url(#linearGradient-page-demo-centered-section-masthead)"
|
|
3333
|
+
/>
|
|
3334
|
+
<path
|
|
3335
|
+
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"
|
|
3336
|
+
fill="url(#linearGradient-page-demo-centered-section-masthead)"
|
|
3337
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
3338
|
+
/>
|
|
3339
|
+
</g>
|
|
3304
3340
|
</g>
|
|
3305
|
-
</
|
|
3306
|
-
</
|
|
3307
|
-
</
|
|
3341
|
+
</svg>
|
|
3342
|
+
</a>
|
|
3343
|
+
</div>
|
|
3308
3344
|
</div>
|
|
3309
3345
|
<div class="pf-v6-c-masthead__content">
|
|
3310
3346
|
<div
|
|
@@ -3423,7 +3459,7 @@ wrapperTag: div
|
|
|
3423
3459
|
id="main-content-page-demo-centered-section"
|
|
3424
3460
|
>
|
|
3425
3461
|
<section
|
|
3426
|
-
class="pf-v6-c-page__main-section pf-m-limit-width pf-m-align-center
|
|
3462
|
+
class="pf-v6-c-page__main-section pf-m-limit-width pf-m-align-center"
|
|
3427
3463
|
>
|
|
3428
3464
|
<div class="pf-v6-c-page__main-body">
|
|
3429
3465
|
<div class="pf-v6-c-content">
|
|
@@ -3509,90 +3545,94 @@ wrapperTag: div
|
|
|
3509
3545
|
</a>
|
|
3510
3546
|
</div>
|
|
3511
3547
|
<header class="pf-v6-c-masthead" id="page-context-selector-masthead">
|
|
3512
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
3513
|
-
<button
|
|
3514
|
-
class="pf-v6-c-button pf-m-plain"
|
|
3515
|
-
type="button"
|
|
3516
|
-
aria-label="Global navigation"
|
|
3517
|
-
>
|
|
3518
|
-
<span class="pf-v6-c-button__icon">
|
|
3519
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3520
|
-
</span>
|
|
3521
|
-
</button>
|
|
3522
|
-
</span>
|
|
3523
3548
|
<div class="pf-v6-c-masthead__main">
|
|
3524
|
-
<
|
|
3525
|
-
<
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3549
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
3550
|
+
<button
|
|
3551
|
+
class="pf-v6-c-button pf-m-plain"
|
|
3552
|
+
type="button"
|
|
3553
|
+
aria-label="Global navigation"
|
|
3554
|
+
>
|
|
3555
|
+
<span class="pf-v6-c-button__icon">
|
|
3556
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3557
|
+
</span>
|
|
3558
|
+
</button>
|
|
3559
|
+
</span>
|
|
3560
|
+
<div class="pf-v6-c-masthead__brand">
|
|
3561
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
3562
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
3563
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
3564
|
+
<defs>
|
|
3565
|
+
<linearGradient
|
|
3566
|
+
x1="68%"
|
|
3567
|
+
y1="2.25860997e-13%"
|
|
3568
|
+
x2="32%"
|
|
3569
|
+
y2="100%"
|
|
3570
|
+
id="linearGradient-page-context-selector-masthead"
|
|
3571
|
+
>
|
|
3572
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
3573
|
+
<stop
|
|
3574
|
+
stop-color="#73BCF7"
|
|
3575
|
+
stop-opacity="0.502212631"
|
|
3576
|
+
offset="100%"
|
|
3577
|
+
/>
|
|
3578
|
+
</linearGradient>
|
|
3579
|
+
</defs>
|
|
3580
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
3581
|
+
<g
|
|
3582
|
+
transform="translate(206.000000, 45.750000)"
|
|
3583
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
3584
|
+
fill-rule="nonzero"
|
|
3585
|
+
>
|
|
3586
|
+
<path
|
|
3587
|
+
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"
|
|
3588
|
+
/>
|
|
3589
|
+
<path
|
|
3590
|
+
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"
|
|
3591
|
+
/>
|
|
3592
|
+
<path
|
|
3593
|
+
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"
|
|
3594
|
+
/>
|
|
3595
|
+
<path
|
|
3596
|
+
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"
|
|
3597
|
+
/>
|
|
3598
|
+
<path
|
|
3599
|
+
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"
|
|
3600
|
+
/>
|
|
3601
|
+
<path
|
|
3602
|
+
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"
|
|
3603
|
+
/>
|
|
3604
|
+
<path
|
|
3605
|
+
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"
|
|
3606
|
+
/>
|
|
3607
|
+
<polygon
|
|
3608
|
+
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"
|
|
3609
|
+
/>
|
|
3610
|
+
<polygon
|
|
3611
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
3612
|
+
/>
|
|
3613
|
+
<path
|
|
3614
|
+
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"
|
|
3615
|
+
/>
|
|
3616
|
+
</g>
|
|
3617
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
3618
|
+
<path
|
|
3619
|
+
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"
|
|
3620
|
+
fill="#0066CC"
|
|
3621
|
+
/>
|
|
3622
|
+
<path
|
|
3623
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
3624
|
+
fill="url(#linearGradient-page-context-selector-masthead)"
|
|
3625
|
+
/>
|
|
3626
|
+
<path
|
|
3627
|
+
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"
|
|
3628
|
+
fill="url(#linearGradient-page-context-selector-masthead)"
|
|
3629
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
3630
|
+
/>
|
|
3631
|
+
</g>
|
|
3592
3632
|
</g>
|
|
3593
|
-
</
|
|
3594
|
-
</
|
|
3595
|
-
</
|
|
3633
|
+
</svg>
|
|
3634
|
+
</a>
|
|
3635
|
+
</div>
|
|
3596
3636
|
</div>
|
|
3597
3637
|
<div class="pf-v6-c-masthead__content">
|
|
3598
3638
|
<div
|
|
@@ -3763,7 +3803,7 @@ wrapperTag: div
|
|
|
3763
3803
|
</nav>
|
|
3764
3804
|
</div>
|
|
3765
3805
|
</section>
|
|
3766
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
3806
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
3767
3807
|
<div class="pf-v6-c-page__main-body">
|
|
3768
3808
|
<div class="pf-v6-c-content">
|
|
3769
3809
|
<h1>Main title</h1>
|
|
@@ -3826,90 +3866,94 @@ wrapperTag: div
|
|
|
3826
3866
|
</a>
|
|
3827
3867
|
</div>
|
|
3828
3868
|
<header class="pf-v6-c-masthead" id="page-context-selector-expanded-masthead">
|
|
3829
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
3830
|
-
<button
|
|
3831
|
-
class="pf-v6-c-button pf-m-plain"
|
|
3832
|
-
type="button"
|
|
3833
|
-
aria-label="Global navigation"
|
|
3834
|
-
>
|
|
3835
|
-
<span class="pf-v6-c-button__icon">
|
|
3836
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3837
|
-
</span>
|
|
3838
|
-
</button>
|
|
3839
|
-
</span>
|
|
3840
3869
|
<div class="pf-v6-c-masthead__main">
|
|
3841
|
-
<
|
|
3842
|
-
<
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
3870
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
3871
|
+
<button
|
|
3872
|
+
class="pf-v6-c-button pf-m-plain"
|
|
3873
|
+
type="button"
|
|
3874
|
+
aria-label="Global navigation"
|
|
3875
|
+
>
|
|
3876
|
+
<span class="pf-v6-c-button__icon">
|
|
3877
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3878
|
+
</span>
|
|
3879
|
+
</button>
|
|
3880
|
+
</span>
|
|
3881
|
+
<div class="pf-v6-c-masthead__brand">
|
|
3882
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
3883
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
3884
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
3885
|
+
<defs>
|
|
3886
|
+
<linearGradient
|
|
3887
|
+
x1="68%"
|
|
3888
|
+
y1="2.25860997e-13%"
|
|
3889
|
+
x2="32%"
|
|
3890
|
+
y2="100%"
|
|
3891
|
+
id="linearGradient-page-context-selector-expanded-masthead"
|
|
3892
|
+
>
|
|
3893
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
3894
|
+
<stop
|
|
3895
|
+
stop-color="#73BCF7"
|
|
3896
|
+
stop-opacity="0.502212631"
|
|
3897
|
+
offset="100%"
|
|
3898
|
+
/>
|
|
3899
|
+
</linearGradient>
|
|
3900
|
+
</defs>
|
|
3901
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
3902
|
+
<g
|
|
3903
|
+
transform="translate(206.000000, 45.750000)"
|
|
3904
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
3905
|
+
fill-rule="nonzero"
|
|
3906
|
+
>
|
|
3907
|
+
<path
|
|
3908
|
+
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"
|
|
3909
|
+
/>
|
|
3910
|
+
<path
|
|
3911
|
+
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"
|
|
3912
|
+
/>
|
|
3913
|
+
<path
|
|
3914
|
+
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"
|
|
3915
|
+
/>
|
|
3916
|
+
<path
|
|
3917
|
+
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"
|
|
3918
|
+
/>
|
|
3919
|
+
<path
|
|
3920
|
+
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"
|
|
3921
|
+
/>
|
|
3922
|
+
<path
|
|
3923
|
+
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"
|
|
3924
|
+
/>
|
|
3925
|
+
<path
|
|
3926
|
+
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"
|
|
3927
|
+
/>
|
|
3928
|
+
<polygon
|
|
3929
|
+
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"
|
|
3930
|
+
/>
|
|
3931
|
+
<polygon
|
|
3932
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
3933
|
+
/>
|
|
3934
|
+
<path
|
|
3935
|
+
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"
|
|
3936
|
+
/>
|
|
3937
|
+
</g>
|
|
3938
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
3939
|
+
<path
|
|
3940
|
+
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"
|
|
3941
|
+
fill="#0066CC"
|
|
3942
|
+
/>
|
|
3943
|
+
<path
|
|
3944
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
3945
|
+
fill="url(#linearGradient-page-context-selector-expanded-masthead)"
|
|
3946
|
+
/>
|
|
3947
|
+
<path
|
|
3948
|
+
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"
|
|
3949
|
+
fill="url(#linearGradient-page-context-selector-expanded-masthead)"
|
|
3950
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
3951
|
+
/>
|
|
3952
|
+
</g>
|
|
3909
3953
|
</g>
|
|
3910
|
-
</
|
|
3911
|
-
</
|
|
3912
|
-
</
|
|
3954
|
+
</svg>
|
|
3955
|
+
</a>
|
|
3956
|
+
</div>
|
|
3913
3957
|
</div>
|
|
3914
3958
|
<div class="pf-v6-c-masthead__content">
|
|
3915
3959
|
<div
|
|
@@ -4116,7 +4160,615 @@ wrapperTag: div
|
|
|
4116
4160
|
</nav>
|
|
4117
4161
|
</div>
|
|
4118
4162
|
</section>
|
|
4119
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
4163
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
4164
|
+
<div class="pf-v6-c-page__main-body">
|
|
4165
|
+
<div class="pf-v6-c-content">
|
|
4166
|
+
<h1>Main title</h1>
|
|
4167
|
+
<p>This is a full page demo.</p>
|
|
4168
|
+
</div>
|
|
4169
|
+
</div>
|
|
4170
|
+
</section>
|
|
4171
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
4172
|
+
<div class="pf-v6-c-page__main-body">
|
|
4173
|
+
<div class="pf-v6-l-gallery pf-m-gutter">
|
|
4174
|
+
<div class="pf-v6-c-card">
|
|
4175
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4176
|
+
</div>
|
|
4177
|
+
<div class="pf-v6-c-card">
|
|
4178
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4179
|
+
</div>
|
|
4180
|
+
<div class="pf-v6-c-card">
|
|
4181
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4182
|
+
</div>
|
|
4183
|
+
<div class="pf-v6-c-card">
|
|
4184
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4185
|
+
</div>
|
|
4186
|
+
<div class="pf-v6-c-card">
|
|
4187
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4188
|
+
</div>
|
|
4189
|
+
<div class="pf-v6-c-card">
|
|
4190
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4191
|
+
</div>
|
|
4192
|
+
<div class="pf-v6-c-card">
|
|
4193
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4194
|
+
</div>
|
|
4195
|
+
<div class="pf-v6-c-card">
|
|
4196
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4197
|
+
</div>
|
|
4198
|
+
<div class="pf-v6-c-card">
|
|
4199
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4200
|
+
</div>
|
|
4201
|
+
<div class="pf-v6-c-card">
|
|
4202
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4203
|
+
</div>
|
|
4204
|
+
</div>
|
|
4205
|
+
</div>
|
|
4206
|
+
</section>
|
|
4207
|
+
</main>
|
|
4208
|
+
</div>
|
|
4209
|
+
</div>
|
|
4210
|
+
|
|
4211
|
+
```
|
|
4212
|
+
|
|
4213
|
+
### Sidebar collapsed
|
|
4214
|
+
|
|
4215
|
+
```html isFullscreen
|
|
4216
|
+
<div class="pf-v6-c-page" id="page-demo-sidebar-collapsed">
|
|
4217
|
+
<div class="pf-v6-c-skip-to-content">
|
|
4218
|
+
<a
|
|
4219
|
+
class="pf-v6-c-button pf-m-primary"
|
|
4220
|
+
href="#main-content-page-demo-sidebar-collapsed"
|
|
4221
|
+
>
|
|
4222
|
+
<span class="pf-v6-c-button__text">Skip to content</span>
|
|
4223
|
+
</a>
|
|
4224
|
+
</div>
|
|
4225
|
+
<header class="pf-v6-c-masthead" id="page-demo-sidebar-collapsed-masthead">
|
|
4226
|
+
<div class="pf-v6-c-masthead__main">
|
|
4227
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
4228
|
+
<button
|
|
4229
|
+
class="pf-v6-c-button pf-m-plain"
|
|
4230
|
+
type="button"
|
|
4231
|
+
aria-label="Global navigation"
|
|
4232
|
+
>
|
|
4233
|
+
<span class="pf-v6-c-button__icon">
|
|
4234
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
4235
|
+
</span>
|
|
4236
|
+
</button>
|
|
4237
|
+
</span>
|
|
4238
|
+
<div class="pf-v6-c-masthead__brand">
|
|
4239
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
4240
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
4241
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
4242
|
+
<defs>
|
|
4243
|
+
<linearGradient
|
|
4244
|
+
x1="68%"
|
|
4245
|
+
y1="2.25860997e-13%"
|
|
4246
|
+
x2="32%"
|
|
4247
|
+
y2="100%"
|
|
4248
|
+
id="linearGradient-page-demo-sidebar-collapsed-masthead"
|
|
4249
|
+
>
|
|
4250
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
4251
|
+
<stop
|
|
4252
|
+
stop-color="#73BCF7"
|
|
4253
|
+
stop-opacity="0.502212631"
|
|
4254
|
+
offset="100%"
|
|
4255
|
+
/>
|
|
4256
|
+
</linearGradient>
|
|
4257
|
+
</defs>
|
|
4258
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
4259
|
+
<g
|
|
4260
|
+
transform="translate(206.000000, 45.750000)"
|
|
4261
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
4262
|
+
fill-rule="nonzero"
|
|
4263
|
+
>
|
|
4264
|
+
<path
|
|
4265
|
+
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"
|
|
4266
|
+
/>
|
|
4267
|
+
<path
|
|
4268
|
+
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"
|
|
4269
|
+
/>
|
|
4270
|
+
<path
|
|
4271
|
+
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"
|
|
4272
|
+
/>
|
|
4273
|
+
<path
|
|
4274
|
+
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"
|
|
4275
|
+
/>
|
|
4276
|
+
<path
|
|
4277
|
+
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"
|
|
4278
|
+
/>
|
|
4279
|
+
<path
|
|
4280
|
+
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"
|
|
4281
|
+
/>
|
|
4282
|
+
<path
|
|
4283
|
+
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"
|
|
4284
|
+
/>
|
|
4285
|
+
<polygon
|
|
4286
|
+
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"
|
|
4287
|
+
/>
|
|
4288
|
+
<polygon
|
|
4289
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
4290
|
+
/>
|
|
4291
|
+
<path
|
|
4292
|
+
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"
|
|
4293
|
+
/>
|
|
4294
|
+
</g>
|
|
4295
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
4296
|
+
<path
|
|
4297
|
+
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"
|
|
4298
|
+
fill="#0066CC"
|
|
4299
|
+
/>
|
|
4300
|
+
<path
|
|
4301
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
4302
|
+
fill="url(#linearGradient-page-demo-sidebar-collapsed-masthead)"
|
|
4303
|
+
/>
|
|
4304
|
+
<path
|
|
4305
|
+
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"
|
|
4306
|
+
fill="url(#linearGradient-page-demo-sidebar-collapsed-masthead)"
|
|
4307
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
4308
|
+
/>
|
|
4309
|
+
</g>
|
|
4310
|
+
</g>
|
|
4311
|
+
</svg>
|
|
4312
|
+
</a>
|
|
4313
|
+
</div>
|
|
4314
|
+
</div>
|
|
4315
|
+
<div class="pf-v6-c-masthead__content">
|
|
4316
|
+
<div
|
|
4317
|
+
class="pf-v6-c-toolbar pf-m-static"
|
|
4318
|
+
id="page-demo-sidebar-collapsed-masthead-toolbar"
|
|
4319
|
+
>
|
|
4320
|
+
<div class="pf-v6-c-toolbar__content">
|
|
4321
|
+
<div class="pf-v6-c-toolbar__content-section">
|
|
4322
|
+
<div
|
|
4323
|
+
class="pf-v6-c-toolbar__group pf-m-align-end pf-m-spacer-none pf-m-spacer-md-on-md pf-m-action-group-plain"
|
|
4324
|
+
>
|
|
4325
|
+
<div
|
|
4326
|
+
class="pf-v6-c-toolbar__group pf-m-hidden pf-m-visible-on-lg pf-m-action-group-plain"
|
|
4327
|
+
>
|
|
4328
|
+
<div class="pf-v6-c-toolbar__item">
|
|
4329
|
+
<button
|
|
4330
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4331
|
+
type="button"
|
|
4332
|
+
aria-expanded="false"
|
|
4333
|
+
aria-label="Application launcher"
|
|
4334
|
+
>
|
|
4335
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
4336
|
+
<i class="fas fa-th" aria-hidden="true"></i>
|
|
4337
|
+
</span>
|
|
4338
|
+
</button>
|
|
4339
|
+
</div>
|
|
4340
|
+
<div class="pf-v6-c-toolbar__item">
|
|
4341
|
+
<button
|
|
4342
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4343
|
+
type="button"
|
|
4344
|
+
aria-expanded="false"
|
|
4345
|
+
aria-label="Settings"
|
|
4346
|
+
>
|
|
4347
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
4348
|
+
<i class="fas fa-cog" aria-hidden="true"></i>
|
|
4349
|
+
</span>
|
|
4350
|
+
</button>
|
|
4351
|
+
</div>
|
|
4352
|
+
<div class="pf-v6-c-toolbar__item">
|
|
4353
|
+
<button
|
|
4354
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4355
|
+
type="button"
|
|
4356
|
+
aria-expanded="false"
|
|
4357
|
+
aria-label="Help"
|
|
4358
|
+
>
|
|
4359
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
4360
|
+
<i class="fas fa-question-circle" aria-hidden="true"></i>
|
|
4361
|
+
</span>
|
|
4362
|
+
</button>
|
|
4363
|
+
</div>
|
|
4364
|
+
</div>
|
|
4365
|
+
|
|
4366
|
+
<div class="pf-v6-c-toolbar__item pf-m-hidden-on-lg">
|
|
4367
|
+
<button
|
|
4368
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4369
|
+
type="button"
|
|
4370
|
+
aria-expanded="false"
|
|
4371
|
+
aria-label="Actions"
|
|
4372
|
+
>
|
|
4373
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
4374
|
+
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
4375
|
+
</span>
|
|
4376
|
+
</button>
|
|
4377
|
+
</div>
|
|
4378
|
+
</div>
|
|
4379
|
+
</div>
|
|
4380
|
+
</div>
|
|
4381
|
+
</div>
|
|
4382
|
+
</div>
|
|
4383
|
+
</header>
|
|
4384
|
+
<div class="pf-v6-c-page__sidebar pf-m-collapsed">
|
|
4385
|
+
<div class="pf-v6-c-page__sidebar-body">
|
|
4386
|
+
<nav
|
|
4387
|
+
class="pf-v6-c-nav"
|
|
4388
|
+
id="page-demo-sidebar-collapsed-primary-nav"
|
|
4389
|
+
aria-label="Global"
|
|
4390
|
+
>
|
|
4391
|
+
<ul class="pf-v6-c-nav__list" role="list">
|
|
4392
|
+
<li class="pf-v6-c-nav__item">
|
|
4393
|
+
<a href="#" class="pf-v6-c-nav__link">
|
|
4394
|
+
<span class="pf-v6-c-nav__link-text">System panel</span>
|
|
4395
|
+
</a>
|
|
4396
|
+
</li>
|
|
4397
|
+
<li class="pf-v6-c-nav__item">
|
|
4398
|
+
<a
|
|
4399
|
+
href="#"
|
|
4400
|
+
class="pf-v6-c-nav__link pf-m-current"
|
|
4401
|
+
aria-current="page"
|
|
4402
|
+
>
|
|
4403
|
+
<span class="pf-v6-c-nav__link-text">Policy</span>
|
|
4404
|
+
</a>
|
|
4405
|
+
</li>
|
|
4406
|
+
<li class="pf-v6-c-nav__item">
|
|
4407
|
+
<a href="#" class="pf-v6-c-nav__link">
|
|
4408
|
+
<span class="pf-v6-c-nav__link-text">Authentication</span>
|
|
4409
|
+
</a>
|
|
4410
|
+
</li>
|
|
4411
|
+
<li class="pf-v6-c-nav__item">
|
|
4412
|
+
<a href="#" class="pf-v6-c-nav__link">
|
|
4413
|
+
<span class="pf-v6-c-nav__link-text">Network services</span>
|
|
4414
|
+
</a>
|
|
4415
|
+
</li>
|
|
4416
|
+
<li class="pf-v6-c-nav__item">
|
|
4417
|
+
<a href="#" class="pf-v6-c-nav__link">
|
|
4418
|
+
<span class="pf-v6-c-nav__link-text">Server</span>
|
|
4419
|
+
</a>
|
|
4420
|
+
</li>
|
|
4421
|
+
</ul>
|
|
4422
|
+
</nav>
|
|
4423
|
+
</div>
|
|
4424
|
+
</div>
|
|
4425
|
+
<div class="pf-v6-c-page__main-container" tabindex="-1">
|
|
4426
|
+
<main
|
|
4427
|
+
class="pf-v6-c-page__main"
|
|
4428
|
+
tabindex="-1"
|
|
4429
|
+
id="main-content-page-demo-sidebar-collapsed"
|
|
4430
|
+
>
|
|
4431
|
+
<section class="pf-v6-c-page__main-breadcrumb pf-m-limit-width">
|
|
4432
|
+
<div class="pf-v6-c-page__main-body">
|
|
4433
|
+
<nav class="pf-v6-c-breadcrumb" aria-label="breadcrumb">
|
|
4434
|
+
<ol class="pf-v6-c-breadcrumb__list" role="list">
|
|
4435
|
+
<li class="pf-v6-c-breadcrumb__item">
|
|
4436
|
+
<a href="#" class="pf-v6-c-breadcrumb__link">Section home</a>
|
|
4437
|
+
</li>
|
|
4438
|
+
<li class="pf-v6-c-breadcrumb__item">
|
|
4439
|
+
<span class="pf-v6-c-breadcrumb__item-divider">
|
|
4440
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
4441
|
+
</span>
|
|
4442
|
+
|
|
4443
|
+
<a href="#" class="pf-v6-c-breadcrumb__link">Section title</a>
|
|
4444
|
+
</li>
|
|
4445
|
+
<li class="pf-v6-c-breadcrumb__item">
|
|
4446
|
+
<span class="pf-v6-c-breadcrumb__item-divider">
|
|
4447
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
4448
|
+
</span>
|
|
4449
|
+
|
|
4450
|
+
<a href="#" class="pf-v6-c-breadcrumb__link">Section title</a>
|
|
4451
|
+
</li>
|
|
4452
|
+
<li class="pf-v6-c-breadcrumb__item">
|
|
4453
|
+
<span class="pf-v6-c-breadcrumb__item-divider">
|
|
4454
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
4455
|
+
</span>
|
|
4456
|
+
|
|
4457
|
+
<a
|
|
4458
|
+
href="#"
|
|
4459
|
+
class="pf-v6-c-breadcrumb__link pf-m-current"
|
|
4460
|
+
aria-current="page"
|
|
4461
|
+
>Section landing</a>
|
|
4462
|
+
</li>
|
|
4463
|
+
</ol>
|
|
4464
|
+
</nav>
|
|
4465
|
+
</div>
|
|
4466
|
+
</section>
|
|
4467
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
4468
|
+
<div class="pf-v6-c-page__main-body">
|
|
4469
|
+
<div class="pf-v6-c-content">
|
|
4470
|
+
<h1>Main title</h1>
|
|
4471
|
+
<p>This is a full page demo.</p>
|
|
4472
|
+
</div>
|
|
4473
|
+
</div>
|
|
4474
|
+
</section>
|
|
4475
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
4476
|
+
<div class="pf-v6-c-page__main-body">
|
|
4477
|
+
<div class="pf-v6-l-gallery pf-m-gutter">
|
|
4478
|
+
<div class="pf-v6-c-card">
|
|
4479
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4480
|
+
</div>
|
|
4481
|
+
<div class="pf-v6-c-card">
|
|
4482
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4483
|
+
</div>
|
|
4484
|
+
<div class="pf-v6-c-card">
|
|
4485
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4486
|
+
</div>
|
|
4487
|
+
<div class="pf-v6-c-card">
|
|
4488
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4489
|
+
</div>
|
|
4490
|
+
<div class="pf-v6-c-card">
|
|
4491
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4492
|
+
</div>
|
|
4493
|
+
<div class="pf-v6-c-card">
|
|
4494
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4495
|
+
</div>
|
|
4496
|
+
<div class="pf-v6-c-card">
|
|
4497
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4498
|
+
</div>
|
|
4499
|
+
<div class="pf-v6-c-card">
|
|
4500
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4501
|
+
</div>
|
|
4502
|
+
<div class="pf-v6-c-card">
|
|
4503
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4504
|
+
</div>
|
|
4505
|
+
<div class="pf-v6-c-card">
|
|
4506
|
+
<div class="pf-v6-c-card__body">This is a card</div>
|
|
4507
|
+
</div>
|
|
4508
|
+
</div>
|
|
4509
|
+
</div>
|
|
4510
|
+
</section>
|
|
4511
|
+
</main>
|
|
4512
|
+
</div>
|
|
4513
|
+
</div>
|
|
4514
|
+
|
|
4515
|
+
```
|
|
4516
|
+
|
|
4517
|
+
### Sidebar expanded
|
|
4518
|
+
|
|
4519
|
+
```html isFullscreen
|
|
4520
|
+
<div class="pf-v6-c-page" id="page-demo-sidebar-expanded">
|
|
4521
|
+
<div class="pf-v6-c-skip-to-content">
|
|
4522
|
+
<a
|
|
4523
|
+
class="pf-v6-c-button pf-m-primary"
|
|
4524
|
+
href="#main-content-page-demo-sidebar-expanded"
|
|
4525
|
+
>
|
|
4526
|
+
<span class="pf-v6-c-button__text">Skip to content</span>
|
|
4527
|
+
</a>
|
|
4528
|
+
</div>
|
|
4529
|
+
<header class="pf-v6-c-masthead" id="page-demo-sidebar-expanded-masthead">
|
|
4530
|
+
<div class="pf-v6-c-masthead__main">
|
|
4531
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
4532
|
+
<button
|
|
4533
|
+
class="pf-v6-c-button pf-m-plain"
|
|
4534
|
+
type="button"
|
|
4535
|
+
aria-label="Global navigation"
|
|
4536
|
+
>
|
|
4537
|
+
<span class="pf-v6-c-button__icon">
|
|
4538
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
4539
|
+
</span>
|
|
4540
|
+
</button>
|
|
4541
|
+
</span>
|
|
4542
|
+
<div class="pf-v6-c-masthead__brand">
|
|
4543
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
4544
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
4545
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
4546
|
+
<defs>
|
|
4547
|
+
<linearGradient
|
|
4548
|
+
x1="68%"
|
|
4549
|
+
y1="2.25860997e-13%"
|
|
4550
|
+
x2="32%"
|
|
4551
|
+
y2="100%"
|
|
4552
|
+
id="linearGradient-page-demo-sidebar-expanded-masthead"
|
|
4553
|
+
>
|
|
4554
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
4555
|
+
<stop
|
|
4556
|
+
stop-color="#73BCF7"
|
|
4557
|
+
stop-opacity="0.502212631"
|
|
4558
|
+
offset="100%"
|
|
4559
|
+
/>
|
|
4560
|
+
</linearGradient>
|
|
4561
|
+
</defs>
|
|
4562
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
4563
|
+
<g
|
|
4564
|
+
transform="translate(206.000000, 45.750000)"
|
|
4565
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
4566
|
+
fill-rule="nonzero"
|
|
4567
|
+
>
|
|
4568
|
+
<path
|
|
4569
|
+
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"
|
|
4570
|
+
/>
|
|
4571
|
+
<path
|
|
4572
|
+
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"
|
|
4573
|
+
/>
|
|
4574
|
+
<path
|
|
4575
|
+
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"
|
|
4576
|
+
/>
|
|
4577
|
+
<path
|
|
4578
|
+
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"
|
|
4579
|
+
/>
|
|
4580
|
+
<path
|
|
4581
|
+
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"
|
|
4582
|
+
/>
|
|
4583
|
+
<path
|
|
4584
|
+
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"
|
|
4585
|
+
/>
|
|
4586
|
+
<path
|
|
4587
|
+
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"
|
|
4588
|
+
/>
|
|
4589
|
+
<polygon
|
|
4590
|
+
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"
|
|
4591
|
+
/>
|
|
4592
|
+
<polygon
|
|
4593
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
4594
|
+
/>
|
|
4595
|
+
<path
|
|
4596
|
+
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"
|
|
4597
|
+
/>
|
|
4598
|
+
</g>
|
|
4599
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
4600
|
+
<path
|
|
4601
|
+
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"
|
|
4602
|
+
fill="#0066CC"
|
|
4603
|
+
/>
|
|
4604
|
+
<path
|
|
4605
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
4606
|
+
fill="url(#linearGradient-page-demo-sidebar-expanded-masthead)"
|
|
4607
|
+
/>
|
|
4608
|
+
<path
|
|
4609
|
+
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"
|
|
4610
|
+
fill="url(#linearGradient-page-demo-sidebar-expanded-masthead)"
|
|
4611
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
4612
|
+
/>
|
|
4613
|
+
</g>
|
|
4614
|
+
</g>
|
|
4615
|
+
</svg>
|
|
4616
|
+
</a>
|
|
4617
|
+
</div>
|
|
4618
|
+
</div>
|
|
4619
|
+
<div class="pf-v6-c-masthead__content">
|
|
4620
|
+
<div
|
|
4621
|
+
class="pf-v6-c-toolbar pf-m-static"
|
|
4622
|
+
id="page-demo-sidebar-expanded-masthead-toolbar"
|
|
4623
|
+
>
|
|
4624
|
+
<div class="pf-v6-c-toolbar__content">
|
|
4625
|
+
<div class="pf-v6-c-toolbar__content-section">
|
|
4626
|
+
<div
|
|
4627
|
+
class="pf-v6-c-toolbar__group pf-m-align-end pf-m-spacer-none pf-m-spacer-md-on-md pf-m-action-group-plain"
|
|
4628
|
+
>
|
|
4629
|
+
<div
|
|
4630
|
+
class="pf-v6-c-toolbar__group pf-m-hidden pf-m-visible-on-lg pf-m-action-group-plain"
|
|
4631
|
+
>
|
|
4632
|
+
<div class="pf-v6-c-toolbar__item">
|
|
4633
|
+
<button
|
|
4634
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4635
|
+
type="button"
|
|
4636
|
+
aria-expanded="false"
|
|
4637
|
+
aria-label="Application launcher"
|
|
4638
|
+
>
|
|
4639
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
4640
|
+
<i class="fas fa-th" aria-hidden="true"></i>
|
|
4641
|
+
</span>
|
|
4642
|
+
</button>
|
|
4643
|
+
</div>
|
|
4644
|
+
<div class="pf-v6-c-toolbar__item">
|
|
4645
|
+
<button
|
|
4646
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4647
|
+
type="button"
|
|
4648
|
+
aria-expanded="false"
|
|
4649
|
+
aria-label="Settings"
|
|
4650
|
+
>
|
|
4651
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
4652
|
+
<i class="fas fa-cog" aria-hidden="true"></i>
|
|
4653
|
+
</span>
|
|
4654
|
+
</button>
|
|
4655
|
+
</div>
|
|
4656
|
+
<div class="pf-v6-c-toolbar__item">
|
|
4657
|
+
<button
|
|
4658
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4659
|
+
type="button"
|
|
4660
|
+
aria-expanded="false"
|
|
4661
|
+
aria-label="Help"
|
|
4662
|
+
>
|
|
4663
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
4664
|
+
<i class="fas fa-question-circle" aria-hidden="true"></i>
|
|
4665
|
+
</span>
|
|
4666
|
+
</button>
|
|
4667
|
+
</div>
|
|
4668
|
+
</div>
|
|
4669
|
+
|
|
4670
|
+
<div class="pf-v6-c-toolbar__item pf-m-hidden-on-lg">
|
|
4671
|
+
<button
|
|
4672
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4673
|
+
type="button"
|
|
4674
|
+
aria-expanded="false"
|
|
4675
|
+
aria-label="Actions"
|
|
4676
|
+
>
|
|
4677
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
4678
|
+
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
4679
|
+
</span>
|
|
4680
|
+
</button>
|
|
4681
|
+
</div>
|
|
4682
|
+
</div>
|
|
4683
|
+
</div>
|
|
4684
|
+
</div>
|
|
4685
|
+
</div>
|
|
4686
|
+
</div>
|
|
4687
|
+
</header>
|
|
4688
|
+
<div class="pf-v6-c-page__sidebar pf-m-expanded">
|
|
4689
|
+
<div class="pf-v6-c-page__sidebar-body">
|
|
4690
|
+
<nav
|
|
4691
|
+
class="pf-v6-c-nav"
|
|
4692
|
+
id="page-demo-sidebar-expanded-primary-nav"
|
|
4693
|
+
aria-label="Global"
|
|
4694
|
+
>
|
|
4695
|
+
<ul class="pf-v6-c-nav__list" role="list">
|
|
4696
|
+
<li class="pf-v6-c-nav__item">
|
|
4697
|
+
<a href="#" class="pf-v6-c-nav__link">
|
|
4698
|
+
<span class="pf-v6-c-nav__link-text">System panel</span>
|
|
4699
|
+
</a>
|
|
4700
|
+
</li>
|
|
4701
|
+
<li class="pf-v6-c-nav__item">
|
|
4702
|
+
<a
|
|
4703
|
+
href="#"
|
|
4704
|
+
class="pf-v6-c-nav__link pf-m-current"
|
|
4705
|
+
aria-current="page"
|
|
4706
|
+
>
|
|
4707
|
+
<span class="pf-v6-c-nav__link-text">Policy</span>
|
|
4708
|
+
</a>
|
|
4709
|
+
</li>
|
|
4710
|
+
<li class="pf-v6-c-nav__item">
|
|
4711
|
+
<a href="#" class="pf-v6-c-nav__link">
|
|
4712
|
+
<span class="pf-v6-c-nav__link-text">Authentication</span>
|
|
4713
|
+
</a>
|
|
4714
|
+
</li>
|
|
4715
|
+
<li class="pf-v6-c-nav__item">
|
|
4716
|
+
<a href="#" class="pf-v6-c-nav__link">
|
|
4717
|
+
<span class="pf-v6-c-nav__link-text">Network services</span>
|
|
4718
|
+
</a>
|
|
4719
|
+
</li>
|
|
4720
|
+
<li class="pf-v6-c-nav__item">
|
|
4721
|
+
<a href="#" class="pf-v6-c-nav__link">
|
|
4722
|
+
<span class="pf-v6-c-nav__link-text">Server</span>
|
|
4723
|
+
</a>
|
|
4724
|
+
</li>
|
|
4725
|
+
</ul>
|
|
4726
|
+
</nav>
|
|
4727
|
+
</div>
|
|
4728
|
+
</div>
|
|
4729
|
+
<div class="pf-v6-c-page__main-container" tabindex="-1">
|
|
4730
|
+
<main
|
|
4731
|
+
class="pf-v6-c-page__main"
|
|
4732
|
+
tabindex="-1"
|
|
4733
|
+
id="main-content-page-demo-sidebar-expanded"
|
|
4734
|
+
>
|
|
4735
|
+
<section class="pf-v6-c-page__main-breadcrumb pf-m-limit-width">
|
|
4736
|
+
<div class="pf-v6-c-page__main-body">
|
|
4737
|
+
<nav class="pf-v6-c-breadcrumb" aria-label="breadcrumb">
|
|
4738
|
+
<ol class="pf-v6-c-breadcrumb__list" role="list">
|
|
4739
|
+
<li class="pf-v6-c-breadcrumb__item">
|
|
4740
|
+
<a href="#" class="pf-v6-c-breadcrumb__link">Section home</a>
|
|
4741
|
+
</li>
|
|
4742
|
+
<li class="pf-v6-c-breadcrumb__item">
|
|
4743
|
+
<span class="pf-v6-c-breadcrumb__item-divider">
|
|
4744
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
4745
|
+
</span>
|
|
4746
|
+
|
|
4747
|
+
<a href="#" class="pf-v6-c-breadcrumb__link">Section title</a>
|
|
4748
|
+
</li>
|
|
4749
|
+
<li class="pf-v6-c-breadcrumb__item">
|
|
4750
|
+
<span class="pf-v6-c-breadcrumb__item-divider">
|
|
4751
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
4752
|
+
</span>
|
|
4753
|
+
|
|
4754
|
+
<a href="#" class="pf-v6-c-breadcrumb__link">Section title</a>
|
|
4755
|
+
</li>
|
|
4756
|
+
<li class="pf-v6-c-breadcrumb__item">
|
|
4757
|
+
<span class="pf-v6-c-breadcrumb__item-divider">
|
|
4758
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
4759
|
+
</span>
|
|
4760
|
+
|
|
4761
|
+
<a
|
|
4762
|
+
href="#"
|
|
4763
|
+
class="pf-v6-c-breadcrumb__link pf-m-current"
|
|
4764
|
+
aria-current="page"
|
|
4765
|
+
>Section landing</a>
|
|
4766
|
+
</li>
|
|
4767
|
+
</ol>
|
|
4768
|
+
</nav>
|
|
4769
|
+
</div>
|
|
4770
|
+
</section>
|
|
4771
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
4120
4772
|
<div class="pf-v6-c-page__main-body">
|
|
4121
4773
|
<div class="pf-v6-c-content">
|
|
4122
4774
|
<h1>Main title</h1>
|