@patternfly/patternfly 6.0.0-alpha.200 → 6.0.0-alpha.202
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base/normalize.scss +3 -3
- package/base/patternfly-variables.css +2 -6
- package/base/tokens/tokens-charts-dark.scss +1 -1
- package/base/tokens/tokens-charts.scss +1 -1
- package/base/tokens/tokens-dark.scss +1 -1
- package/base/tokens/tokens-default.scss +3 -3
- package/base/tokens/tokens-local.scss +0 -6
- package/base/tokens/tokens-palette.scss +1 -1
- package/components/Breadcrumb/breadcrumb.css +9 -6
- package/components/Breadcrumb/breadcrumb.scss +9 -6
- package/components/Button/button.css +16 -7
- package/components/Button/button.scss +17 -7
- package/components/Content/content.css +8 -5
- package/components/Content/content.scss +8 -5
- package/components/DescriptionList/description-list.css +10 -15
- package/components/DescriptionList/description-list.scss +10 -16
- package/components/JumpLinks/jump-links.css +1 -1
- package/components/JumpLinks/jump-links.scss +1 -2
- package/components/Label/label.css +15 -14
- package/components/Label/label.scss +16 -14
- package/components/Masthead/masthead.css +172 -95
- package/components/Masthead/masthead.scss +74 -49
- package/components/Nav/nav.css +5 -4
- package/components/Nav/nav.scss +5 -4
- package/components/Page/page.css +18 -12
- package/components/Page/page.scss +18 -12
- package/components/ProgressStepper/progress-stepper.css +8 -7
- package/components/ProgressStepper/progress-stepper.scss +8 -8
- package/components/SimpleList/simple-list.css +1 -1
- package/components/SimpleList/simple-list.scss +1 -2
- package/components/Tabs/tabs.css +1 -1
- package/components/Tabs/tabs.scss +1 -3
- package/components/Timestamp/timestamp.css +8 -17
- package/components/Timestamp/timestamp.scss +8 -18
- package/components/ToggleGroup/toggle-group.css +2 -2
- package/components/ToggleGroup/toggle-group.scss +2 -4
- package/components/_index.css +274 -187
- package/docs/components/Alert/examples/Alert.md +4 -4
- package/docs/components/Card/examples/Card.md +4 -4
- package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +2 -2
- package/docs/components/DescriptionList/examples/DescriptionList.md +30 -5
- package/docs/components/Form/examples/Form.md +2 -2
- 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/Table/examples/Table.md +58 -58
- 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/Card/examples/Card.md +12 -12
- package/docs/demos/CardView/examples/CardView.md +90 -88
- package/docs/demos/Dashboard/examples/Dashboard.md +92 -88
- 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/Form/examples/BasicForms.md +11 -11
- package/docs/demos/JumpLinks/examples/JumpLinks.md +524 -500
- package/docs/demos/Masthead/examples/Masthead.md +772 -736
- package/docs/demos/Modal/examples/Modal.md +522 -498
- package/docs/demos/Nav/examples/Nav.md +511 -487
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +435 -425
- package/docs/demos/Page/examples/Page.md +959 -915
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +611 -584
- package/docs/demos/Skeleton/examples/Skeleton.md +87 -83
- package/docs/demos/Table/examples/Table.md +1326 -1294
- 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-base-no-globals.css +2 -6
- package/patternfly-base.css +5 -9
- package/patternfly-no-globals.css +276 -193
- package/patternfly.css +279 -196
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -16,90 +16,94 @@ section: components
|
|
|
16
16
|
</a>
|
|
17
17
|
</div>
|
|
18
18
|
<header class="pf-v6-c-masthead" id="modal-basic-example-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-modal-basic-example-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-modal-basic-example-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-modal-basic-example-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 @@ section: components
|
|
|
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>
|
|
@@ -363,90 +367,94 @@ section: components
|
|
|
363
367
|
class="pf-v6-c-masthead"
|
|
364
368
|
id="modal-scrollable-content-example-masthead"
|
|
365
369
|
>
|
|
366
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
367
|
-
<button
|
|
368
|
-
class="pf-v6-c-button pf-m-plain"
|
|
369
|
-
type="button"
|
|
370
|
-
aria-label="Global navigation"
|
|
371
|
-
>
|
|
372
|
-
<span class="pf-v6-c-button__icon">
|
|
373
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
374
|
-
</span>
|
|
375
|
-
</button>
|
|
376
|
-
</span>
|
|
377
370
|
<div class="pf-v6-c-masthead__main">
|
|
378
|
-
<
|
|
379
|
-
<
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
371
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
372
|
+
<button
|
|
373
|
+
class="pf-v6-c-button pf-m-plain"
|
|
374
|
+
type="button"
|
|
375
|
+
aria-label="Global navigation"
|
|
376
|
+
>
|
|
377
|
+
<span class="pf-v6-c-button__icon">
|
|
378
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
379
|
+
</span>
|
|
380
|
+
</button>
|
|
381
|
+
</span>
|
|
382
|
+
<div class="pf-v6-c-masthead__brand">
|
|
383
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
384
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
385
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
386
|
+
<defs>
|
|
387
|
+
<linearGradient
|
|
388
|
+
x1="68%"
|
|
389
|
+
y1="2.25860997e-13%"
|
|
390
|
+
x2="32%"
|
|
391
|
+
y2="100%"
|
|
392
|
+
id="linearGradient-modal-scrollable-content-example-masthead"
|
|
393
|
+
>
|
|
394
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
395
|
+
<stop
|
|
396
|
+
stop-color="#73BCF7"
|
|
397
|
+
stop-opacity="0.502212631"
|
|
398
|
+
offset="100%"
|
|
399
|
+
/>
|
|
400
|
+
</linearGradient>
|
|
401
|
+
</defs>
|
|
402
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
403
|
+
<g
|
|
404
|
+
transform="translate(206.000000, 45.750000)"
|
|
405
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
406
|
+
fill-rule="nonzero"
|
|
407
|
+
>
|
|
408
|
+
<path
|
|
409
|
+
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"
|
|
410
|
+
/>
|
|
411
|
+
<path
|
|
412
|
+
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"
|
|
413
|
+
/>
|
|
414
|
+
<path
|
|
415
|
+
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"
|
|
416
|
+
/>
|
|
417
|
+
<path
|
|
418
|
+
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"
|
|
419
|
+
/>
|
|
420
|
+
<path
|
|
421
|
+
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"
|
|
422
|
+
/>
|
|
423
|
+
<path
|
|
424
|
+
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"
|
|
425
|
+
/>
|
|
426
|
+
<path
|
|
427
|
+
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"
|
|
428
|
+
/>
|
|
429
|
+
<polygon
|
|
430
|
+
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"
|
|
431
|
+
/>
|
|
432
|
+
<polygon
|
|
433
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
434
|
+
/>
|
|
435
|
+
<path
|
|
436
|
+
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"
|
|
437
|
+
/>
|
|
438
|
+
</g>
|
|
439
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
440
|
+
<path
|
|
441
|
+
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"
|
|
442
|
+
fill="#0066CC"
|
|
443
|
+
/>
|
|
444
|
+
<path
|
|
445
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
446
|
+
fill="url(#linearGradient-modal-scrollable-content-example-masthead)"
|
|
447
|
+
/>
|
|
448
|
+
<path
|
|
449
|
+
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"
|
|
450
|
+
fill="url(#linearGradient-modal-scrollable-content-example-masthead)"
|
|
451
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
452
|
+
/>
|
|
453
|
+
</g>
|
|
446
454
|
</g>
|
|
447
|
-
</
|
|
448
|
-
</
|
|
449
|
-
</
|
|
455
|
+
</svg>
|
|
456
|
+
</a>
|
|
457
|
+
</div>
|
|
450
458
|
</div>
|
|
451
459
|
<div class="pf-v6-c-masthead__content">
|
|
452
460
|
<div
|
|
@@ -600,7 +608,7 @@ section: components
|
|
|
600
608
|
</nav>
|
|
601
609
|
</div>
|
|
602
610
|
</section>
|
|
603
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
611
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
604
612
|
<div class="pf-v6-c-page__main-body">
|
|
605
613
|
<div class="pf-v6-c-content">
|
|
606
614
|
<h1>Main title</h1>
|
|
@@ -716,90 +724,94 @@ section: components
|
|
|
716
724
|
</a>
|
|
717
725
|
</div>
|
|
718
726
|
<header class="pf-v6-c-masthead" id="modal-medium-example-masthead">
|
|
719
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
720
|
-
<button
|
|
721
|
-
class="pf-v6-c-button pf-m-plain"
|
|
722
|
-
type="button"
|
|
723
|
-
aria-label="Global navigation"
|
|
724
|
-
>
|
|
725
|
-
<span class="pf-v6-c-button__icon">
|
|
726
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
727
|
-
</span>
|
|
728
|
-
</button>
|
|
729
|
-
</span>
|
|
730
727
|
<div class="pf-v6-c-masthead__main">
|
|
731
|
-
<
|
|
732
|
-
<
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
728
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
729
|
+
<button
|
|
730
|
+
class="pf-v6-c-button pf-m-plain"
|
|
731
|
+
type="button"
|
|
732
|
+
aria-label="Global navigation"
|
|
733
|
+
>
|
|
734
|
+
<span class="pf-v6-c-button__icon">
|
|
735
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
736
|
+
</span>
|
|
737
|
+
</button>
|
|
738
|
+
</span>
|
|
739
|
+
<div class="pf-v6-c-masthead__brand">
|
|
740
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
741
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
742
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
743
|
+
<defs>
|
|
744
|
+
<linearGradient
|
|
745
|
+
x1="68%"
|
|
746
|
+
y1="2.25860997e-13%"
|
|
747
|
+
x2="32%"
|
|
748
|
+
y2="100%"
|
|
749
|
+
id="linearGradient-modal-medium-example-masthead"
|
|
750
|
+
>
|
|
751
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
752
|
+
<stop
|
|
753
|
+
stop-color="#73BCF7"
|
|
754
|
+
stop-opacity="0.502212631"
|
|
755
|
+
offset="100%"
|
|
756
|
+
/>
|
|
757
|
+
</linearGradient>
|
|
758
|
+
</defs>
|
|
759
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
760
|
+
<g
|
|
761
|
+
transform="translate(206.000000, 45.750000)"
|
|
762
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
763
|
+
fill-rule="nonzero"
|
|
764
|
+
>
|
|
765
|
+
<path
|
|
766
|
+
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"
|
|
767
|
+
/>
|
|
768
|
+
<path
|
|
769
|
+
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"
|
|
770
|
+
/>
|
|
771
|
+
<path
|
|
772
|
+
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"
|
|
773
|
+
/>
|
|
774
|
+
<path
|
|
775
|
+
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"
|
|
776
|
+
/>
|
|
777
|
+
<path
|
|
778
|
+
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"
|
|
779
|
+
/>
|
|
780
|
+
<path
|
|
781
|
+
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"
|
|
782
|
+
/>
|
|
783
|
+
<path
|
|
784
|
+
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"
|
|
785
|
+
/>
|
|
786
|
+
<polygon
|
|
787
|
+
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"
|
|
788
|
+
/>
|
|
789
|
+
<polygon
|
|
790
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
791
|
+
/>
|
|
792
|
+
<path
|
|
793
|
+
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"
|
|
794
|
+
/>
|
|
795
|
+
</g>
|
|
796
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
797
|
+
<path
|
|
798
|
+
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"
|
|
799
|
+
fill="#0066CC"
|
|
800
|
+
/>
|
|
801
|
+
<path
|
|
802
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
803
|
+
fill="url(#linearGradient-modal-medium-example-masthead)"
|
|
804
|
+
/>
|
|
805
|
+
<path
|
|
806
|
+
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"
|
|
807
|
+
fill="url(#linearGradient-modal-medium-example-masthead)"
|
|
808
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
809
|
+
/>
|
|
810
|
+
</g>
|
|
799
811
|
</g>
|
|
800
|
-
</
|
|
801
|
-
</
|
|
802
|
-
</
|
|
812
|
+
</svg>
|
|
813
|
+
</a>
|
|
814
|
+
</div>
|
|
803
815
|
</div>
|
|
804
816
|
<div class="pf-v6-c-masthead__content">
|
|
805
817
|
<div
|
|
@@ -953,7 +965,7 @@ section: components
|
|
|
953
965
|
</nav>
|
|
954
966
|
</div>
|
|
955
967
|
</section>
|
|
956
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
968
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
957
969
|
<div class="pf-v6-c-page__main-body">
|
|
958
970
|
<div class="pf-v6-c-content">
|
|
959
971
|
<h1>Main title</h1>
|
|
@@ -1059,90 +1071,94 @@ section: components
|
|
|
1059
1071
|
</a>
|
|
1060
1072
|
</div>
|
|
1061
1073
|
<header class="pf-v6-c-masthead" id="modal-large-example-masthead">
|
|
1062
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1063
|
-
<button
|
|
1064
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1065
|
-
type="button"
|
|
1066
|
-
aria-label="Global navigation"
|
|
1067
|
-
>
|
|
1068
|
-
<span class="pf-v6-c-button__icon">
|
|
1069
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1070
|
-
</span>
|
|
1071
|
-
</button>
|
|
1072
|
-
</span>
|
|
1073
1074
|
<div class="pf-v6-c-masthead__main">
|
|
1074
|
-
<
|
|
1075
|
-
<
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
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
|
-
|
|
1075
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1076
|
+
<button
|
|
1077
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1078
|
+
type="button"
|
|
1079
|
+
aria-label="Global navigation"
|
|
1080
|
+
>
|
|
1081
|
+
<span class="pf-v6-c-button__icon">
|
|
1082
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1083
|
+
</span>
|
|
1084
|
+
</button>
|
|
1085
|
+
</span>
|
|
1086
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1087
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1088
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1089
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1090
|
+
<defs>
|
|
1091
|
+
<linearGradient
|
|
1092
|
+
x1="68%"
|
|
1093
|
+
y1="2.25860997e-13%"
|
|
1094
|
+
x2="32%"
|
|
1095
|
+
y2="100%"
|
|
1096
|
+
id="linearGradient-modal-large-example-masthead"
|
|
1097
|
+
>
|
|
1098
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1099
|
+
<stop
|
|
1100
|
+
stop-color="#73BCF7"
|
|
1101
|
+
stop-opacity="0.502212631"
|
|
1102
|
+
offset="100%"
|
|
1103
|
+
/>
|
|
1104
|
+
</linearGradient>
|
|
1105
|
+
</defs>
|
|
1106
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1107
|
+
<g
|
|
1108
|
+
transform="translate(206.000000, 45.750000)"
|
|
1109
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1110
|
+
fill-rule="nonzero"
|
|
1111
|
+
>
|
|
1112
|
+
<path
|
|
1113
|
+
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"
|
|
1114
|
+
/>
|
|
1115
|
+
<path
|
|
1116
|
+
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"
|
|
1117
|
+
/>
|
|
1118
|
+
<path
|
|
1119
|
+
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"
|
|
1120
|
+
/>
|
|
1121
|
+
<path
|
|
1122
|
+
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"
|
|
1123
|
+
/>
|
|
1124
|
+
<path
|
|
1125
|
+
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"
|
|
1126
|
+
/>
|
|
1127
|
+
<path
|
|
1128
|
+
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"
|
|
1129
|
+
/>
|
|
1130
|
+
<path
|
|
1131
|
+
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"
|
|
1132
|
+
/>
|
|
1133
|
+
<polygon
|
|
1134
|
+
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"
|
|
1135
|
+
/>
|
|
1136
|
+
<polygon
|
|
1137
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
1138
|
+
/>
|
|
1139
|
+
<path
|
|
1140
|
+
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"
|
|
1141
|
+
/>
|
|
1142
|
+
</g>
|
|
1143
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
1144
|
+
<path
|
|
1145
|
+
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"
|
|
1146
|
+
fill="#0066CC"
|
|
1147
|
+
/>
|
|
1148
|
+
<path
|
|
1149
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
1150
|
+
fill="url(#linearGradient-modal-large-example-masthead)"
|
|
1151
|
+
/>
|
|
1152
|
+
<path
|
|
1153
|
+
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"
|
|
1154
|
+
fill="url(#linearGradient-modal-large-example-masthead)"
|
|
1155
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
1156
|
+
/>
|
|
1157
|
+
</g>
|
|
1142
1158
|
</g>
|
|
1143
|
-
</
|
|
1144
|
-
</
|
|
1145
|
-
</
|
|
1159
|
+
</svg>
|
|
1160
|
+
</a>
|
|
1161
|
+
</div>
|
|
1146
1162
|
</div>
|
|
1147
1163
|
<div class="pf-v6-c-masthead__content">
|
|
1148
1164
|
<div
|
|
@@ -1296,7 +1312,7 @@ section: components
|
|
|
1296
1312
|
</nav>
|
|
1297
1313
|
</div>
|
|
1298
1314
|
</section>
|
|
1299
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
1315
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
1300
1316
|
<div class="pf-v6-c-page__main-body">
|
|
1301
1317
|
<div class="pf-v6-c-content">
|
|
1302
1318
|
<h1>Main title</h1>
|
|
@@ -1402,90 +1418,94 @@ section: components
|
|
|
1402
1418
|
</a>
|
|
1403
1419
|
</div>
|
|
1404
1420
|
<header class="pf-v6-c-masthead" id="modal-large-example-masthead">
|
|
1405
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1406
|
-
<button
|
|
1407
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1408
|
-
type="button"
|
|
1409
|
-
aria-label="Global navigation"
|
|
1410
|
-
>
|
|
1411
|
-
<span class="pf-v6-c-button__icon">
|
|
1412
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1413
|
-
</span>
|
|
1414
|
-
</button>
|
|
1415
|
-
</span>
|
|
1416
1421
|
<div class="pf-v6-c-masthead__main">
|
|
1417
|
-
<
|
|
1418
|
-
<
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1422
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1423
|
+
<button
|
|
1424
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1425
|
+
type="button"
|
|
1426
|
+
aria-label="Global navigation"
|
|
1427
|
+
>
|
|
1428
|
+
<span class="pf-v6-c-button__icon">
|
|
1429
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1430
|
+
</span>
|
|
1431
|
+
</button>
|
|
1432
|
+
</span>
|
|
1433
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1434
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1435
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1436
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1437
|
+
<defs>
|
|
1438
|
+
<linearGradient
|
|
1439
|
+
x1="68%"
|
|
1440
|
+
y1="2.25860997e-13%"
|
|
1441
|
+
x2="32%"
|
|
1442
|
+
y2="100%"
|
|
1443
|
+
id="linearGradient-modal-large-example-masthead"
|
|
1444
|
+
>
|
|
1445
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1446
|
+
<stop
|
|
1447
|
+
stop-color="#73BCF7"
|
|
1448
|
+
stop-opacity="0.502212631"
|
|
1449
|
+
offset="100%"
|
|
1450
|
+
/>
|
|
1451
|
+
</linearGradient>
|
|
1452
|
+
</defs>
|
|
1453
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1454
|
+
<g
|
|
1455
|
+
transform="translate(206.000000, 45.750000)"
|
|
1456
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1457
|
+
fill-rule="nonzero"
|
|
1458
|
+
>
|
|
1459
|
+
<path
|
|
1460
|
+
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"
|
|
1461
|
+
/>
|
|
1462
|
+
<path
|
|
1463
|
+
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"
|
|
1464
|
+
/>
|
|
1465
|
+
<path
|
|
1466
|
+
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"
|
|
1467
|
+
/>
|
|
1468
|
+
<path
|
|
1469
|
+
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"
|
|
1470
|
+
/>
|
|
1471
|
+
<path
|
|
1472
|
+
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"
|
|
1473
|
+
/>
|
|
1474
|
+
<path
|
|
1475
|
+
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"
|
|
1476
|
+
/>
|
|
1477
|
+
<path
|
|
1478
|
+
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"
|
|
1479
|
+
/>
|
|
1480
|
+
<polygon
|
|
1481
|
+
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"
|
|
1482
|
+
/>
|
|
1483
|
+
<polygon
|
|
1484
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
1485
|
+
/>
|
|
1486
|
+
<path
|
|
1487
|
+
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"
|
|
1488
|
+
/>
|
|
1489
|
+
</g>
|
|
1490
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
1491
|
+
<path
|
|
1492
|
+
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"
|
|
1493
|
+
fill="#0066CC"
|
|
1494
|
+
/>
|
|
1495
|
+
<path
|
|
1496
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
1497
|
+
fill="url(#linearGradient-modal-large-example-masthead)"
|
|
1498
|
+
/>
|
|
1499
|
+
<path
|
|
1500
|
+
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"
|
|
1501
|
+
fill="url(#linearGradient-modal-large-example-masthead)"
|
|
1502
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
1503
|
+
/>
|
|
1504
|
+
</g>
|
|
1485
1505
|
</g>
|
|
1486
|
-
</
|
|
1487
|
-
</
|
|
1488
|
-
</
|
|
1506
|
+
</svg>
|
|
1507
|
+
</a>
|
|
1508
|
+
</div>
|
|
1489
1509
|
</div>
|
|
1490
1510
|
<div class="pf-v6-c-masthead__content">
|
|
1491
1511
|
<div
|
|
@@ -1639,7 +1659,7 @@ section: components
|
|
|
1639
1659
|
</nav>
|
|
1640
1660
|
</div>
|
|
1641
1661
|
</section>
|
|
1642
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
1662
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
1643
1663
|
<div class="pf-v6-c-page__main-body">
|
|
1644
1664
|
<div class="pf-v6-c-content">
|
|
1645
1665
|
<h1>Main title</h1>
|
|
@@ -1745,90 +1765,94 @@ section: components
|
|
|
1745
1765
|
</a>
|
|
1746
1766
|
</div>
|
|
1747
1767
|
<header class="pf-v6-c-masthead" id="modal-with-form-example-masthead">
|
|
1748
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1749
|
-
<button
|
|
1750
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1751
|
-
type="button"
|
|
1752
|
-
aria-label="Global navigation"
|
|
1753
|
-
>
|
|
1754
|
-
<span class="pf-v6-c-button__icon">
|
|
1755
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1756
|
-
</span>
|
|
1757
|
-
</button>
|
|
1758
|
-
</span>
|
|
1759
1768
|
<div class="pf-v6-c-masthead__main">
|
|
1760
|
-
<
|
|
1761
|
-
<
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1769
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1770
|
+
<button
|
|
1771
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1772
|
+
type="button"
|
|
1773
|
+
aria-label="Global navigation"
|
|
1774
|
+
>
|
|
1775
|
+
<span class="pf-v6-c-button__icon">
|
|
1776
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1777
|
+
</span>
|
|
1778
|
+
</button>
|
|
1779
|
+
</span>
|
|
1780
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1781
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1782
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1783
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1784
|
+
<defs>
|
|
1785
|
+
<linearGradient
|
|
1786
|
+
x1="68%"
|
|
1787
|
+
y1="2.25860997e-13%"
|
|
1788
|
+
x2="32%"
|
|
1789
|
+
y2="100%"
|
|
1790
|
+
id="linearGradient-modal-with-form-example-masthead"
|
|
1791
|
+
>
|
|
1792
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1793
|
+
<stop
|
|
1794
|
+
stop-color="#73BCF7"
|
|
1795
|
+
stop-opacity="0.502212631"
|
|
1796
|
+
offset="100%"
|
|
1797
|
+
/>
|
|
1798
|
+
</linearGradient>
|
|
1799
|
+
</defs>
|
|
1800
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1801
|
+
<g
|
|
1802
|
+
transform="translate(206.000000, 45.750000)"
|
|
1803
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1804
|
+
fill-rule="nonzero"
|
|
1805
|
+
>
|
|
1806
|
+
<path
|
|
1807
|
+
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"
|
|
1808
|
+
/>
|
|
1809
|
+
<path
|
|
1810
|
+
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"
|
|
1811
|
+
/>
|
|
1812
|
+
<path
|
|
1813
|
+
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"
|
|
1814
|
+
/>
|
|
1815
|
+
<path
|
|
1816
|
+
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"
|
|
1817
|
+
/>
|
|
1818
|
+
<path
|
|
1819
|
+
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"
|
|
1820
|
+
/>
|
|
1821
|
+
<path
|
|
1822
|
+
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"
|
|
1823
|
+
/>
|
|
1824
|
+
<path
|
|
1825
|
+
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"
|
|
1826
|
+
/>
|
|
1827
|
+
<polygon
|
|
1828
|
+
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"
|
|
1829
|
+
/>
|
|
1830
|
+
<polygon
|
|
1831
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
1832
|
+
/>
|
|
1833
|
+
<path
|
|
1834
|
+
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"
|
|
1835
|
+
/>
|
|
1836
|
+
</g>
|
|
1837
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
1838
|
+
<path
|
|
1839
|
+
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"
|
|
1840
|
+
fill="#0066CC"
|
|
1841
|
+
/>
|
|
1842
|
+
<path
|
|
1843
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
1844
|
+
fill="url(#linearGradient-modal-with-form-example-masthead)"
|
|
1845
|
+
/>
|
|
1846
|
+
<path
|
|
1847
|
+
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"
|
|
1848
|
+
fill="url(#linearGradient-modal-with-form-example-masthead)"
|
|
1849
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
1850
|
+
/>
|
|
1851
|
+
</g>
|
|
1828
1852
|
</g>
|
|
1829
|
-
</
|
|
1830
|
-
</
|
|
1831
|
-
</
|
|
1853
|
+
</svg>
|
|
1854
|
+
</a>
|
|
1855
|
+
</div>
|
|
1832
1856
|
</div>
|
|
1833
1857
|
<div class="pf-v6-c-masthead__content">
|
|
1834
1858
|
<div
|
|
@@ -1982,7 +2006,7 @@ section: components
|
|
|
1982
2006
|
</nav>
|
|
1983
2007
|
</div>
|
|
1984
2008
|
</section>
|
|
1985
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
2009
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
1986
2010
|
<div class="pf-v6-c-page__main-body">
|
|
1987
2011
|
<div class="pf-v6-c-content">
|
|
1988
2012
|
<h1>Main title</h1>
|