@patternfly/patternfly 6.0.0-alpha.201 → 6.0.0-alpha.202
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Masthead/masthead.css +172 -95
- package/components/Masthead/masthead.scss +74 -49
- package/components/Nav/nav.css +5 -4
- package/components/Nav/nav.scss +5 -4
- package/components/Page/page.css +18 -12
- package/components/Page/page.scss +18 -12
- package/components/_index.css +195 -111
- package/docs/components/Masthead/examples/masthead.md +506 -493
- package/docs/components/Nav/examples/Navigation.md +0 -1
- package/docs/components/Page/examples/Page.md +98 -89
- package/docs/components/Wizard/examples/Wizard.md +1 -1
- package/docs/demos/AboutModal/examples/AboutModal.md +87 -83
- package/docs/demos/Alert/examples/Alert.md +263 -251
- package/docs/demos/BackToTop/examples/BackToTop.md +87 -83
- package/docs/demos/Banner/examples/Banner.md +177 -173
- package/docs/demos/CardView/examples/CardView.md +90 -88
- package/docs/demos/Dashboard/examples/Dashboard.md +87 -83
- package/docs/demos/DataList/examples/DataList.md +352 -344
- package/docs/demos/DescriptionList/examples/DescriptionList.md +262 -252
- package/docs/demos/Drawer/examples/Drawer.md +437 -423
- package/docs/demos/JumpLinks/examples/JumpLinks.md +524 -500
- package/docs/demos/Masthead/examples/Masthead.md +772 -736
- package/docs/demos/Modal/examples/Modal.md +522 -498
- package/docs/demos/Nav/examples/Nav.md +511 -487
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +435 -425
- package/docs/demos/Page/examples/Page.md +959 -915
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +611 -584
- package/docs/demos/Skeleton/examples/Skeleton.md +87 -83
- package/docs/demos/Table/examples/Table.md +1320 -1288
- package/docs/demos/Tabs/examples/Tabs.md +526 -504
- package/docs/demos/Toolbar/examples/Toolbar.md +174 -166
- package/docs/demos/Wizard/examples/Wizard.md +790 -767
- package/package.json +1 -1
- package/patternfly-no-globals.css +195 -111
- package/patternfly.css +195 -111
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -20,90 +20,94 @@ wrapperTag: div
|
|
|
20
20
|
class="pf-v6-c-masthead pf-m-display-stack pf-m-display-inline-on-lg"
|
|
21
21
|
id="primary-detail-expanded-example-masthead"
|
|
22
22
|
>
|
|
23
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
24
|
-
<button
|
|
25
|
-
class="pf-v6-c-button pf-m-plain"
|
|
26
|
-
type="button"
|
|
27
|
-
aria-label="Global navigation"
|
|
28
|
-
>
|
|
29
|
-
<span class="pf-v6-c-button__icon">
|
|
30
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
31
|
-
</span>
|
|
32
|
-
</button>
|
|
33
|
-
</span>
|
|
34
23
|
<div class="pf-v6-c-masthead__main">
|
|
35
|
-
<
|
|
36
|
-
<
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
24
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
25
|
+
<button
|
|
26
|
+
class="pf-v6-c-button pf-m-plain"
|
|
27
|
+
type="button"
|
|
28
|
+
aria-label="Global navigation"
|
|
29
|
+
>
|
|
30
|
+
<span class="pf-v6-c-button__icon">
|
|
31
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
32
|
+
</span>
|
|
33
|
+
</button>
|
|
34
|
+
</span>
|
|
35
|
+
<div class="pf-v6-c-masthead__brand">
|
|
36
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
37
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
38
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
39
|
+
<defs>
|
|
40
|
+
<linearGradient
|
|
41
|
+
x1="68%"
|
|
42
|
+
y1="2.25860997e-13%"
|
|
43
|
+
x2="32%"
|
|
44
|
+
y2="100%"
|
|
45
|
+
id="linearGradient-primary-detail-expanded-example-masthead"
|
|
46
|
+
>
|
|
47
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
48
|
+
<stop
|
|
49
|
+
stop-color="#73BCF7"
|
|
50
|
+
stop-opacity="0.502212631"
|
|
51
|
+
offset="100%"
|
|
52
|
+
/>
|
|
53
|
+
</linearGradient>
|
|
54
|
+
</defs>
|
|
55
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
56
|
+
<g
|
|
57
|
+
transform="translate(206.000000, 45.750000)"
|
|
58
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
59
|
+
fill-rule="nonzero"
|
|
60
|
+
>
|
|
61
|
+
<path
|
|
62
|
+
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"
|
|
63
|
+
/>
|
|
64
|
+
<path
|
|
65
|
+
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"
|
|
66
|
+
/>
|
|
67
|
+
<path
|
|
68
|
+
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"
|
|
69
|
+
/>
|
|
70
|
+
<path
|
|
71
|
+
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"
|
|
72
|
+
/>
|
|
73
|
+
<path
|
|
74
|
+
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"
|
|
75
|
+
/>
|
|
76
|
+
<path
|
|
77
|
+
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"
|
|
78
|
+
/>
|
|
79
|
+
<path
|
|
80
|
+
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"
|
|
81
|
+
/>
|
|
82
|
+
<polygon
|
|
83
|
+
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"
|
|
84
|
+
/>
|
|
85
|
+
<polygon
|
|
86
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
87
|
+
/>
|
|
88
|
+
<path
|
|
89
|
+
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"
|
|
90
|
+
/>
|
|
91
|
+
</g>
|
|
92
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
93
|
+
<path
|
|
94
|
+
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"
|
|
95
|
+
fill="#0066CC"
|
|
96
|
+
/>
|
|
97
|
+
<path
|
|
98
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
99
|
+
fill="url(#linearGradient-primary-detail-expanded-example-masthead)"
|
|
100
|
+
/>
|
|
101
|
+
<path
|
|
102
|
+
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"
|
|
103
|
+
fill="url(#linearGradient-primary-detail-expanded-example-masthead)"
|
|
104
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
105
|
+
/>
|
|
106
|
+
</g>
|
|
103
107
|
</g>
|
|
104
|
-
</
|
|
105
|
-
</
|
|
106
|
-
</
|
|
108
|
+
</svg>
|
|
109
|
+
</a>
|
|
110
|
+
</div>
|
|
107
111
|
</div>
|
|
108
112
|
<div class="pf-v6-c-masthead__content">
|
|
109
113
|
<div
|
|
@@ -257,7 +261,7 @@ wrapperTag: div
|
|
|
257
261
|
</nav>
|
|
258
262
|
</div>
|
|
259
263
|
</section>
|
|
260
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
264
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
261
265
|
<div class="pf-v6-c-page__main-body">
|
|
262
266
|
<div class="pf-v6-c-content">
|
|
263
267
|
<h1>Main title</h1>
|
|
@@ -265,8 +269,7 @@ wrapperTag: div
|
|
|
265
269
|
</div>
|
|
266
270
|
</div>
|
|
267
271
|
</section>
|
|
268
|
-
<
|
|
269
|
-
<section class="pf-v6-c-page__main-section pf-m-no-padding">
|
|
272
|
+
<section class="pf-v6-c-page__main-section">
|
|
270
273
|
<div class="pf-v6-c-page__main-body">
|
|
271
274
|
<!-- Drawer -->
|
|
272
275
|
<div class="pf-v6-c-drawer pf-m-expanded pf-m-inline-on-2xl">
|
|
@@ -1150,90 +1153,94 @@ wrapperTag: div
|
|
|
1150
1153
|
class="pf-v6-c-masthead pf-m-display-stack pf-m-display-inline-on-lg"
|
|
1151
1154
|
id="primary-detail-collapsed-example-masthead"
|
|
1152
1155
|
>
|
|
1153
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
1154
|
-
<button
|
|
1155
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1156
|
-
type="button"
|
|
1157
|
-
aria-label="Global navigation"
|
|
1158
|
-
>
|
|
1159
|
-
<span class="pf-v6-c-button__icon">
|
|
1160
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1161
|
-
</span>
|
|
1162
|
-
</button>
|
|
1163
|
-
</span>
|
|
1164
1156
|
<div class="pf-v6-c-masthead__main">
|
|
1165
|
-
<
|
|
1166
|
-
<
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1157
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
1158
|
+
<button
|
|
1159
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1160
|
+
type="button"
|
|
1161
|
+
aria-label="Global navigation"
|
|
1162
|
+
>
|
|
1163
|
+
<span class="pf-v6-c-button__icon">
|
|
1164
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
1165
|
+
</span>
|
|
1166
|
+
</button>
|
|
1167
|
+
</span>
|
|
1168
|
+
<div class="pf-v6-c-masthead__brand">
|
|
1169
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1170
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
1171
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
1172
|
+
<defs>
|
|
1173
|
+
<linearGradient
|
|
1174
|
+
x1="68%"
|
|
1175
|
+
y1="2.25860997e-13%"
|
|
1176
|
+
x2="32%"
|
|
1177
|
+
y2="100%"
|
|
1178
|
+
id="linearGradient-primary-detail-collapsed-example-masthead"
|
|
1179
|
+
>
|
|
1180
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
1181
|
+
<stop
|
|
1182
|
+
stop-color="#73BCF7"
|
|
1183
|
+
stop-opacity="0.502212631"
|
|
1184
|
+
offset="100%"
|
|
1185
|
+
/>
|
|
1186
|
+
</linearGradient>
|
|
1187
|
+
</defs>
|
|
1188
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1189
|
+
<g
|
|
1190
|
+
transform="translate(206.000000, 45.750000)"
|
|
1191
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
1192
|
+
fill-rule="nonzero"
|
|
1193
|
+
>
|
|
1194
|
+
<path
|
|
1195
|
+
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"
|
|
1196
|
+
/>
|
|
1197
|
+
<path
|
|
1198
|
+
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"
|
|
1199
|
+
/>
|
|
1200
|
+
<path
|
|
1201
|
+
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"
|
|
1202
|
+
/>
|
|
1203
|
+
<path
|
|
1204
|
+
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"
|
|
1205
|
+
/>
|
|
1206
|
+
<path
|
|
1207
|
+
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"
|
|
1208
|
+
/>
|
|
1209
|
+
<path
|
|
1210
|
+
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"
|
|
1211
|
+
/>
|
|
1212
|
+
<path
|
|
1213
|
+
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"
|
|
1214
|
+
/>
|
|
1215
|
+
<polygon
|
|
1216
|
+
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"
|
|
1217
|
+
/>
|
|
1218
|
+
<polygon
|
|
1219
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
1220
|
+
/>
|
|
1221
|
+
<path
|
|
1222
|
+
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"
|
|
1223
|
+
/>
|
|
1224
|
+
</g>
|
|
1225
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
1226
|
+
<path
|
|
1227
|
+
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"
|
|
1228
|
+
fill="#0066CC"
|
|
1229
|
+
/>
|
|
1230
|
+
<path
|
|
1231
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
1232
|
+
fill="url(#linearGradient-primary-detail-collapsed-example-masthead)"
|
|
1233
|
+
/>
|
|
1234
|
+
<path
|
|
1235
|
+
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"
|
|
1236
|
+
fill="url(#linearGradient-primary-detail-collapsed-example-masthead)"
|
|
1237
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
1238
|
+
/>
|
|
1239
|
+
</g>
|
|
1233
1240
|
</g>
|
|
1234
|
-
</
|
|
1235
|
-
</
|
|
1236
|
-
</
|
|
1241
|
+
</svg>
|
|
1242
|
+
</a>
|
|
1243
|
+
</div>
|
|
1237
1244
|
</div>
|
|
1238
1245
|
<div class="pf-v6-c-masthead__content">
|
|
1239
1246
|
<div
|
|
@@ -1387,7 +1394,7 @@ wrapperTag: div
|
|
|
1387
1394
|
</nav>
|
|
1388
1395
|
</div>
|
|
1389
1396
|
</section>
|
|
1390
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
1397
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
1391
1398
|
<div class="pf-v6-c-page__main-body">
|
|
1392
1399
|
<div class="pf-v6-c-content">
|
|
1393
1400
|
<h1>Main title</h1>
|
|
@@ -1396,7 +1403,7 @@ wrapperTag: div
|
|
|
1396
1403
|
</div>
|
|
1397
1404
|
</section>
|
|
1398
1405
|
<div class="pf-v6-c-divider" role="separator"></div>
|
|
1399
|
-
<section class="pf-v6-c-page__main-section
|
|
1406
|
+
<section class="pf-v6-c-page__main-section">
|
|
1400
1407
|
<div class="pf-v6-c-page__main-body">
|
|
1401
1408
|
<!-- Drawer -->
|
|
1402
1409
|
<div class="pf-v6-c-drawer pf-m-inline-on-2xl">
|
|
@@ -2199,90 +2206,94 @@ wrapperTag: div
|
|
|
2199
2206
|
class="pf-v6-c-masthead pf-m-display-stack pf-m-display-inline-on-lg"
|
|
2200
2207
|
id="primary-detail-content-body-padding-example-masthead"
|
|
2201
2208
|
>
|
|
2202
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
2203
|
-
<button
|
|
2204
|
-
class="pf-v6-c-button pf-m-plain"
|
|
2205
|
-
type="button"
|
|
2206
|
-
aria-label="Global navigation"
|
|
2207
|
-
>
|
|
2208
|
-
<span class="pf-v6-c-button__icon">
|
|
2209
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
2210
|
-
</span>
|
|
2211
|
-
</button>
|
|
2212
|
-
</span>
|
|
2213
2209
|
<div class="pf-v6-c-masthead__main">
|
|
2214
|
-
<
|
|
2215
|
-
<
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2210
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
2211
|
+
<button
|
|
2212
|
+
class="pf-v6-c-button pf-m-plain"
|
|
2213
|
+
type="button"
|
|
2214
|
+
aria-label="Global navigation"
|
|
2215
|
+
>
|
|
2216
|
+
<span class="pf-v6-c-button__icon">
|
|
2217
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
2218
|
+
</span>
|
|
2219
|
+
</button>
|
|
2220
|
+
</span>
|
|
2221
|
+
<div class="pf-v6-c-masthead__brand">
|
|
2222
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
2223
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
2224
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
2225
|
+
<defs>
|
|
2226
|
+
<linearGradient
|
|
2227
|
+
x1="68%"
|
|
2228
|
+
y1="2.25860997e-13%"
|
|
2229
|
+
x2="32%"
|
|
2230
|
+
y2="100%"
|
|
2231
|
+
id="linearGradient-primary-detail-content-body-padding-example-masthead"
|
|
2232
|
+
>
|
|
2233
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
2234
|
+
<stop
|
|
2235
|
+
stop-color="#73BCF7"
|
|
2236
|
+
stop-opacity="0.502212631"
|
|
2237
|
+
offset="100%"
|
|
2238
|
+
/>
|
|
2239
|
+
</linearGradient>
|
|
2240
|
+
</defs>
|
|
2241
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
2242
|
+
<g
|
|
2243
|
+
transform="translate(206.000000, 45.750000)"
|
|
2244
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
2245
|
+
fill-rule="nonzero"
|
|
2246
|
+
>
|
|
2247
|
+
<path
|
|
2248
|
+
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"
|
|
2249
|
+
/>
|
|
2250
|
+
<path
|
|
2251
|
+
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"
|
|
2252
|
+
/>
|
|
2253
|
+
<path
|
|
2254
|
+
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"
|
|
2255
|
+
/>
|
|
2256
|
+
<path
|
|
2257
|
+
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"
|
|
2258
|
+
/>
|
|
2259
|
+
<path
|
|
2260
|
+
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"
|
|
2261
|
+
/>
|
|
2262
|
+
<path
|
|
2263
|
+
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"
|
|
2264
|
+
/>
|
|
2265
|
+
<path
|
|
2266
|
+
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"
|
|
2267
|
+
/>
|
|
2268
|
+
<polygon
|
|
2269
|
+
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"
|
|
2270
|
+
/>
|
|
2271
|
+
<polygon
|
|
2272
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
2273
|
+
/>
|
|
2274
|
+
<path
|
|
2275
|
+
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"
|
|
2276
|
+
/>
|
|
2277
|
+
</g>
|
|
2278
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
2279
|
+
<path
|
|
2280
|
+
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"
|
|
2281
|
+
fill="#0066CC"
|
|
2282
|
+
/>
|
|
2283
|
+
<path
|
|
2284
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
2285
|
+
fill="url(#linearGradient-primary-detail-content-body-padding-example-masthead)"
|
|
2286
|
+
/>
|
|
2287
|
+
<path
|
|
2288
|
+
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"
|
|
2289
|
+
fill="url(#linearGradient-primary-detail-content-body-padding-example-masthead)"
|
|
2290
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
2291
|
+
/>
|
|
2292
|
+
</g>
|
|
2282
2293
|
</g>
|
|
2283
|
-
</
|
|
2284
|
-
</
|
|
2285
|
-
</
|
|
2294
|
+
</svg>
|
|
2295
|
+
</a>
|
|
2296
|
+
</div>
|
|
2286
2297
|
</div>
|
|
2287
2298
|
<div class="pf-v6-c-masthead__content">
|
|
2288
2299
|
<div
|
|
@@ -2436,7 +2447,7 @@ wrapperTag: div
|
|
|
2436
2447
|
</nav>
|
|
2437
2448
|
</div>
|
|
2438
2449
|
</section>
|
|
2439
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
2450
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
2440
2451
|
<div class="pf-v6-c-page__main-body">
|
|
2441
2452
|
<div class="pf-v6-c-content">
|
|
2442
2453
|
<h1>Main title</h1>
|
|
@@ -3192,90 +3203,94 @@ wrapperTag: div
|
|
|
3192
3203
|
class="pf-v6-c-masthead pf-m-display-stack pf-m-display-inline-on-lg"
|
|
3193
3204
|
id="primary-detail-card-view-expanded-example-masthead"
|
|
3194
3205
|
>
|
|
3195
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
3196
|
-
<button
|
|
3197
|
-
class="pf-v6-c-button pf-m-plain"
|
|
3198
|
-
type="button"
|
|
3199
|
-
aria-label="Global navigation"
|
|
3200
|
-
>
|
|
3201
|
-
<span class="pf-v6-c-button__icon">
|
|
3202
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3203
|
-
</span>
|
|
3204
|
-
</button>
|
|
3205
|
-
</span>
|
|
3206
3206
|
<div class="pf-v6-c-masthead__main">
|
|
3207
|
-
<
|
|
3208
|
-
<
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
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
|
-
|
|
3207
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
3208
|
+
<button
|
|
3209
|
+
class="pf-v6-c-button pf-m-plain"
|
|
3210
|
+
type="button"
|
|
3211
|
+
aria-label="Global navigation"
|
|
3212
|
+
>
|
|
3213
|
+
<span class="pf-v6-c-button__icon">
|
|
3214
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
3215
|
+
</span>
|
|
3216
|
+
</button>
|
|
3217
|
+
</span>
|
|
3218
|
+
<div class="pf-v6-c-masthead__brand">
|
|
3219
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
3220
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
3221
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
3222
|
+
<defs>
|
|
3223
|
+
<linearGradient
|
|
3224
|
+
x1="68%"
|
|
3225
|
+
y1="2.25860997e-13%"
|
|
3226
|
+
x2="32%"
|
|
3227
|
+
y2="100%"
|
|
3228
|
+
id="linearGradient-primary-detail-card-view-expanded-example-masthead"
|
|
3229
|
+
>
|
|
3230
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
3231
|
+
<stop
|
|
3232
|
+
stop-color="#73BCF7"
|
|
3233
|
+
stop-opacity="0.502212631"
|
|
3234
|
+
offset="100%"
|
|
3235
|
+
/>
|
|
3236
|
+
</linearGradient>
|
|
3237
|
+
</defs>
|
|
3238
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
3239
|
+
<g
|
|
3240
|
+
transform="translate(206.000000, 45.750000)"
|
|
3241
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
3242
|
+
fill-rule="nonzero"
|
|
3243
|
+
>
|
|
3244
|
+
<path
|
|
3245
|
+
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"
|
|
3246
|
+
/>
|
|
3247
|
+
<path
|
|
3248
|
+
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"
|
|
3249
|
+
/>
|
|
3250
|
+
<path
|
|
3251
|
+
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"
|
|
3252
|
+
/>
|
|
3253
|
+
<path
|
|
3254
|
+
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"
|
|
3255
|
+
/>
|
|
3256
|
+
<path
|
|
3257
|
+
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"
|
|
3258
|
+
/>
|
|
3259
|
+
<path
|
|
3260
|
+
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"
|
|
3261
|
+
/>
|
|
3262
|
+
<path
|
|
3263
|
+
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"
|
|
3264
|
+
/>
|
|
3265
|
+
<polygon
|
|
3266
|
+
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"
|
|
3267
|
+
/>
|
|
3268
|
+
<polygon
|
|
3269
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
3270
|
+
/>
|
|
3271
|
+
<path
|
|
3272
|
+
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"
|
|
3273
|
+
/>
|
|
3274
|
+
</g>
|
|
3275
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
3276
|
+
<path
|
|
3277
|
+
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"
|
|
3278
|
+
fill="#0066CC"
|
|
3279
|
+
/>
|
|
3280
|
+
<path
|
|
3281
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
3282
|
+
fill="url(#linearGradient-primary-detail-card-view-expanded-example-masthead)"
|
|
3283
|
+
/>
|
|
3284
|
+
<path
|
|
3285
|
+
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"
|
|
3286
|
+
fill="url(#linearGradient-primary-detail-card-view-expanded-example-masthead)"
|
|
3287
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
3288
|
+
/>
|
|
3289
|
+
</g>
|
|
3275
3290
|
</g>
|
|
3276
|
-
</
|
|
3277
|
-
</
|
|
3278
|
-
</
|
|
3291
|
+
</svg>
|
|
3292
|
+
</a>
|
|
3293
|
+
</div>
|
|
3279
3294
|
</div>
|
|
3280
3295
|
<div class="pf-v6-c-masthead__content">
|
|
3281
3296
|
<div
|
|
@@ -3429,7 +3444,7 @@ wrapperTag: div
|
|
|
3429
3444
|
</nav>
|
|
3430
3445
|
</div>
|
|
3431
3446
|
</section>
|
|
3432
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
3447
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
3433
3448
|
<div class="pf-v6-c-page__main-body">
|
|
3434
3449
|
<div class="pf-v6-c-content">
|
|
3435
3450
|
<h1>Main title</h1>
|
|
@@ -4298,90 +4313,94 @@ wrapperTag: div
|
|
|
4298
4313
|
class="pf-v6-c-masthead"
|
|
4299
4314
|
id="primary-detail-card-simple-list-on-mobile-example-masthead"
|
|
4300
4315
|
>
|
|
4301
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
4302
|
-
<button
|
|
4303
|
-
class="pf-v6-c-button pf-m-plain"
|
|
4304
|
-
type="button"
|
|
4305
|
-
aria-label="Global navigation"
|
|
4306
|
-
>
|
|
4307
|
-
<span class="pf-v6-c-button__icon">
|
|
4308
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
4309
|
-
</span>
|
|
4310
|
-
</button>
|
|
4311
|
-
</span>
|
|
4312
4316
|
<div class="pf-v6-c-masthead__main">
|
|
4313
|
-
<
|
|
4314
|
-
<
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
|
|
4324
|
-
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
|
|
4328
|
-
|
|
4329
|
-
|
|
4330
|
-
|
|
4331
|
-
|
|
4332
|
-
|
|
4333
|
-
|
|
4334
|
-
|
|
4335
|
-
|
|
4336
|
-
|
|
4337
|
-
|
|
4338
|
-
|
|
4339
|
-
|
|
4340
|
-
|
|
4341
|
-
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
|
|
4345
|
-
|
|
4346
|
-
|
|
4347
|
-
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4365
|
-
|
|
4366
|
-
|
|
4367
|
-
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
|
|
4375
|
-
|
|
4376
|
-
|
|
4377
|
-
|
|
4378
|
-
|
|
4379
|
-
|
|
4380
|
-
|
|
4317
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
4318
|
+
<button
|
|
4319
|
+
class="pf-v6-c-button pf-m-plain"
|
|
4320
|
+
type="button"
|
|
4321
|
+
aria-label="Global navigation"
|
|
4322
|
+
>
|
|
4323
|
+
<span class="pf-v6-c-button__icon">
|
|
4324
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
4325
|
+
</span>
|
|
4326
|
+
</button>
|
|
4327
|
+
</span>
|
|
4328
|
+
<div class="pf-v6-c-masthead__brand">
|
|
4329
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
4330
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
4331
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
4332
|
+
<defs>
|
|
4333
|
+
<linearGradient
|
|
4334
|
+
x1="68%"
|
|
4335
|
+
y1="2.25860997e-13%"
|
|
4336
|
+
x2="32%"
|
|
4337
|
+
y2="100%"
|
|
4338
|
+
id="linearGradient-primary-detail-card-simple-list-on-mobile-example-masthead"
|
|
4339
|
+
>
|
|
4340
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
4341
|
+
<stop
|
|
4342
|
+
stop-color="#73BCF7"
|
|
4343
|
+
stop-opacity="0.502212631"
|
|
4344
|
+
offset="100%"
|
|
4345
|
+
/>
|
|
4346
|
+
</linearGradient>
|
|
4347
|
+
</defs>
|
|
4348
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
4349
|
+
<g
|
|
4350
|
+
transform="translate(206.000000, 45.750000)"
|
|
4351
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
4352
|
+
fill-rule="nonzero"
|
|
4353
|
+
>
|
|
4354
|
+
<path
|
|
4355
|
+
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"
|
|
4356
|
+
/>
|
|
4357
|
+
<path
|
|
4358
|
+
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"
|
|
4359
|
+
/>
|
|
4360
|
+
<path
|
|
4361
|
+
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"
|
|
4362
|
+
/>
|
|
4363
|
+
<path
|
|
4364
|
+
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"
|
|
4365
|
+
/>
|
|
4366
|
+
<path
|
|
4367
|
+
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"
|
|
4368
|
+
/>
|
|
4369
|
+
<path
|
|
4370
|
+
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"
|
|
4371
|
+
/>
|
|
4372
|
+
<path
|
|
4373
|
+
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"
|
|
4374
|
+
/>
|
|
4375
|
+
<polygon
|
|
4376
|
+
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"
|
|
4377
|
+
/>
|
|
4378
|
+
<polygon
|
|
4379
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
4380
|
+
/>
|
|
4381
|
+
<path
|
|
4382
|
+
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"
|
|
4383
|
+
/>
|
|
4384
|
+
</g>
|
|
4385
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
4386
|
+
<path
|
|
4387
|
+
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"
|
|
4388
|
+
fill="#0066CC"
|
|
4389
|
+
/>
|
|
4390
|
+
<path
|
|
4391
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
4392
|
+
fill="url(#linearGradient-primary-detail-card-simple-list-on-mobile-example-masthead)"
|
|
4393
|
+
/>
|
|
4394
|
+
<path
|
|
4395
|
+
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"
|
|
4396
|
+
fill="url(#linearGradient-primary-detail-card-simple-list-on-mobile-example-masthead)"
|
|
4397
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
4398
|
+
/>
|
|
4399
|
+
</g>
|
|
4381
4400
|
</g>
|
|
4382
|
-
</
|
|
4383
|
-
</
|
|
4384
|
-
</
|
|
4401
|
+
</svg>
|
|
4402
|
+
</a>
|
|
4403
|
+
</div>
|
|
4385
4404
|
</div>
|
|
4386
4405
|
<div class="pf-v6-c-masthead__content">
|
|
4387
4406
|
<div
|
|
@@ -4535,7 +4554,7 @@ wrapperTag: div
|
|
|
4535
4554
|
</nav>
|
|
4536
4555
|
</div>
|
|
4537
4556
|
</section>
|
|
4538
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
4557
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
4539
4558
|
<div class="pf-v6-c-page__main-body">
|
|
4540
4559
|
<div class="pf-v6-c-content">
|
|
4541
4560
|
<h1>Main title</h1>
|
|
@@ -4756,90 +4775,94 @@ wrapperTag: div
|
|
|
4756
4775
|
class="pf-v6-c-masthead"
|
|
4757
4776
|
id="primary-detail-card-data-list-example-masthead"
|
|
4758
4777
|
>
|
|
4759
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
4760
|
-
<button
|
|
4761
|
-
class="pf-v6-c-button pf-m-plain"
|
|
4762
|
-
type="button"
|
|
4763
|
-
aria-label="Global navigation"
|
|
4764
|
-
>
|
|
4765
|
-
<span class="pf-v6-c-button__icon">
|
|
4766
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
4767
|
-
</span>
|
|
4768
|
-
</button>
|
|
4769
|
-
</span>
|
|
4770
4778
|
<div class="pf-v6-c-masthead__main">
|
|
4771
|
-
<
|
|
4772
|
-
<
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
|
|
4808
|
-
|
|
4809
|
-
|
|
4810
|
-
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
|
|
4815
|
-
|
|
4816
|
-
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
|
|
4829
|
-
|
|
4830
|
-
|
|
4831
|
-
|
|
4832
|
-
|
|
4833
|
-
|
|
4834
|
-
|
|
4835
|
-
|
|
4836
|
-
|
|
4837
|
-
|
|
4838
|
-
|
|
4779
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
4780
|
+
<button
|
|
4781
|
+
class="pf-v6-c-button pf-m-plain"
|
|
4782
|
+
type="button"
|
|
4783
|
+
aria-label="Global navigation"
|
|
4784
|
+
>
|
|
4785
|
+
<span class="pf-v6-c-button__icon">
|
|
4786
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
4787
|
+
</span>
|
|
4788
|
+
</button>
|
|
4789
|
+
</span>
|
|
4790
|
+
<div class="pf-v6-c-masthead__brand">
|
|
4791
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
4792
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
4793
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
4794
|
+
<defs>
|
|
4795
|
+
<linearGradient
|
|
4796
|
+
x1="68%"
|
|
4797
|
+
y1="2.25860997e-13%"
|
|
4798
|
+
x2="32%"
|
|
4799
|
+
y2="100%"
|
|
4800
|
+
id="linearGradient-primary-detail-card-data-list-example-masthead"
|
|
4801
|
+
>
|
|
4802
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
4803
|
+
<stop
|
|
4804
|
+
stop-color="#73BCF7"
|
|
4805
|
+
stop-opacity="0.502212631"
|
|
4806
|
+
offset="100%"
|
|
4807
|
+
/>
|
|
4808
|
+
</linearGradient>
|
|
4809
|
+
</defs>
|
|
4810
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
4811
|
+
<g
|
|
4812
|
+
transform="translate(206.000000, 45.750000)"
|
|
4813
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
4814
|
+
fill-rule="nonzero"
|
|
4815
|
+
>
|
|
4816
|
+
<path
|
|
4817
|
+
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"
|
|
4818
|
+
/>
|
|
4819
|
+
<path
|
|
4820
|
+
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"
|
|
4821
|
+
/>
|
|
4822
|
+
<path
|
|
4823
|
+
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"
|
|
4824
|
+
/>
|
|
4825
|
+
<path
|
|
4826
|
+
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"
|
|
4827
|
+
/>
|
|
4828
|
+
<path
|
|
4829
|
+
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"
|
|
4830
|
+
/>
|
|
4831
|
+
<path
|
|
4832
|
+
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"
|
|
4833
|
+
/>
|
|
4834
|
+
<path
|
|
4835
|
+
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"
|
|
4836
|
+
/>
|
|
4837
|
+
<polygon
|
|
4838
|
+
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"
|
|
4839
|
+
/>
|
|
4840
|
+
<polygon
|
|
4841
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
4842
|
+
/>
|
|
4843
|
+
<path
|
|
4844
|
+
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"
|
|
4845
|
+
/>
|
|
4846
|
+
</g>
|
|
4847
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
4848
|
+
<path
|
|
4849
|
+
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"
|
|
4850
|
+
fill="#0066CC"
|
|
4851
|
+
/>
|
|
4852
|
+
<path
|
|
4853
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
4854
|
+
fill="url(#linearGradient-primary-detail-card-data-list-example-masthead)"
|
|
4855
|
+
/>
|
|
4856
|
+
<path
|
|
4857
|
+
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"
|
|
4858
|
+
fill="url(#linearGradient-primary-detail-card-data-list-example-masthead)"
|
|
4859
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
4860
|
+
/>
|
|
4861
|
+
</g>
|
|
4839
4862
|
</g>
|
|
4840
|
-
</
|
|
4841
|
-
</
|
|
4842
|
-
</
|
|
4863
|
+
</svg>
|
|
4864
|
+
</a>
|
|
4865
|
+
</div>
|
|
4843
4866
|
</div>
|
|
4844
4867
|
<div class="pf-v6-c-masthead__content">
|
|
4845
4868
|
<div
|
|
@@ -4993,7 +5016,7 @@ wrapperTag: div
|
|
|
4993
5016
|
</nav>
|
|
4994
5017
|
</div>
|
|
4995
5018
|
</section>
|
|
4996
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
5019
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
4997
5020
|
<div class="pf-v6-c-page__main-body">
|
|
4998
5021
|
<div class="pf-v6-c-content">
|
|
4999
5022
|
<h1>Main title</h1>
|
|
@@ -5375,90 +5398,94 @@ wrapperTag: div
|
|
|
5375
5398
|
class="pf-v6-c-masthead"
|
|
5376
5399
|
id="primary-detail-inline-modifier-example-masthead"
|
|
5377
5400
|
>
|
|
5378
|
-
<span class="pf-v6-c-masthead__toggle">
|
|
5379
|
-
<button
|
|
5380
|
-
class="pf-v6-c-button pf-m-plain"
|
|
5381
|
-
type="button"
|
|
5382
|
-
aria-label="Global navigation"
|
|
5383
|
-
>
|
|
5384
|
-
<span class="pf-v6-c-button__icon">
|
|
5385
|
-
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
5386
|
-
</span>
|
|
5387
|
-
</button>
|
|
5388
|
-
</span>
|
|
5389
5401
|
<div class="pf-v6-c-masthead__main">
|
|
5390
|
-
<
|
|
5391
|
-
<
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
|
|
5397
|
-
|
|
5398
|
-
|
|
5399
|
-
|
|
5400
|
-
|
|
5401
|
-
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
|
|
5405
|
-
|
|
5406
|
-
|
|
5407
|
-
|
|
5408
|
-
|
|
5409
|
-
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
|
|
5415
|
-
|
|
5416
|
-
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
|
|
5423
|
-
|
|
5424
|
-
|
|
5425
|
-
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
|
|
5431
|
-
|
|
5432
|
-
|
|
5433
|
-
|
|
5434
|
-
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
|
|
5439
|
-
|
|
5440
|
-
|
|
5441
|
-
|
|
5442
|
-
|
|
5443
|
-
|
|
5444
|
-
|
|
5445
|
-
|
|
5446
|
-
|
|
5447
|
-
|
|
5448
|
-
|
|
5449
|
-
|
|
5450
|
-
|
|
5451
|
-
|
|
5452
|
-
|
|
5453
|
-
|
|
5454
|
-
|
|
5455
|
-
|
|
5456
|
-
|
|
5457
|
-
|
|
5402
|
+
<span class="pf-v6-c-masthead__toggle">
|
|
5403
|
+
<button
|
|
5404
|
+
class="pf-v6-c-button pf-m-plain"
|
|
5405
|
+
type="button"
|
|
5406
|
+
aria-label="Global navigation"
|
|
5407
|
+
>
|
|
5408
|
+
<span class="pf-v6-c-button__icon">
|
|
5409
|
+
<i class="fas fa-bars" aria-hidden="true"></i>
|
|
5410
|
+
</span>
|
|
5411
|
+
</button>
|
|
5412
|
+
</span>
|
|
5413
|
+
<div class="pf-v6-c-masthead__brand">
|
|
5414
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
5415
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
5416
|
+
<title>PF-HorizontalLogo-Color</title>
|
|
5417
|
+
<defs>
|
|
5418
|
+
<linearGradient
|
|
5419
|
+
x1="68%"
|
|
5420
|
+
y1="2.25860997e-13%"
|
|
5421
|
+
x2="32%"
|
|
5422
|
+
y2="100%"
|
|
5423
|
+
id="linearGradient-primary-detail-inline-modifier-example-masthead"
|
|
5424
|
+
>
|
|
5425
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
5426
|
+
<stop
|
|
5427
|
+
stop-color="#73BCF7"
|
|
5428
|
+
stop-opacity="0.502212631"
|
|
5429
|
+
offset="100%"
|
|
5430
|
+
/>
|
|
5431
|
+
</linearGradient>
|
|
5432
|
+
</defs>
|
|
5433
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5434
|
+
<g
|
|
5435
|
+
transform="translate(206.000000, 45.750000)"
|
|
5436
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
5437
|
+
fill-rule="nonzero"
|
|
5438
|
+
>
|
|
5439
|
+
<path
|
|
5440
|
+
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"
|
|
5441
|
+
/>
|
|
5442
|
+
<path
|
|
5443
|
+
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"
|
|
5444
|
+
/>
|
|
5445
|
+
<path
|
|
5446
|
+
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"
|
|
5447
|
+
/>
|
|
5448
|
+
<path
|
|
5449
|
+
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"
|
|
5450
|
+
/>
|
|
5451
|
+
<path
|
|
5452
|
+
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"
|
|
5453
|
+
/>
|
|
5454
|
+
<path
|
|
5455
|
+
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"
|
|
5456
|
+
/>
|
|
5457
|
+
<path
|
|
5458
|
+
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"
|
|
5459
|
+
/>
|
|
5460
|
+
<polygon
|
|
5461
|
+
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"
|
|
5462
|
+
/>
|
|
5463
|
+
<polygon
|
|
5464
|
+
points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25"
|
|
5465
|
+
/>
|
|
5466
|
+
<path
|
|
5467
|
+
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"
|
|
5468
|
+
/>
|
|
5469
|
+
</g>
|
|
5470
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
5471
|
+
<path
|
|
5472
|
+
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"
|
|
5473
|
+
fill="#0066CC"
|
|
5474
|
+
/>
|
|
5475
|
+
<path
|
|
5476
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
5477
|
+
fill="url(#linearGradient-primary-detail-inline-modifier-example-masthead)"
|
|
5478
|
+
/>
|
|
5479
|
+
<path
|
|
5480
|
+
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"
|
|
5481
|
+
fill="url(#linearGradient-primary-detail-inline-modifier-example-masthead)"
|
|
5482
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
5483
|
+
/>
|
|
5484
|
+
</g>
|
|
5458
5485
|
</g>
|
|
5459
|
-
</
|
|
5460
|
-
</
|
|
5461
|
-
</
|
|
5486
|
+
</svg>
|
|
5487
|
+
</a>
|
|
5488
|
+
</div>
|
|
5462
5489
|
</div>
|
|
5463
5490
|
<div class="pf-v6-c-masthead__content">
|
|
5464
5491
|
<div
|
|
@@ -5612,7 +5639,7 @@ wrapperTag: div
|
|
|
5612
5639
|
</nav>
|
|
5613
5640
|
</div>
|
|
5614
5641
|
</section>
|
|
5615
|
-
<section class="pf-v6-c-page__main-section pf-m-limit-width
|
|
5642
|
+
<section class="pf-v6-c-page__main-section pf-m-limit-width">
|
|
5616
5643
|
<div class="pf-v6-c-page__main-body">
|
|
5617
5644
|
<div class="pf-v6-c-content">
|
|
5618
5645
|
<h1>Main title</h1>
|