@patternfly/patternfly 5.0.0-prerelease.13 → 5.0.0-prerelease.15
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/assets/images/pf-logo.svg +28 -0
- package/components/Badge/badge.css +1 -0
- package/components/Badge/badge.scss +1 -0
- package/components/Check/check.css +9 -11
- package/components/Check/check.scss +11 -11
- package/components/Dropdown/dropdown.css +14 -5
- package/components/Dropdown/dropdown.scss +17 -6
- package/components/MenuToggle/menu-toggle.css +10 -3
- package/components/MenuToggle/menu-toggle.scss +14 -3
- package/components/Radio/radio.css +8 -10
- package/components/Radio/radio.scss +10 -10
- package/components/Toolbar/toolbar.css +19 -10
- package/components/Toolbar/toolbar.scss +24 -11
- package/docs/components/Toolbar/examples/Toolbar.md +1 -2
- package/docs/demos/AboutModal/examples/AboutModal.md +6 -14
- package/docs/demos/Alert/examples/Alert.md +18 -42
- package/docs/demos/BackToTop/examples/BackToTop.md +6 -14
- package/docs/demos/Banner/examples/Banner.md +12 -28
- package/docs/demos/CardView/examples/CardView.md +6 -14
- package/docs/demos/ContextSelector/examples/ContextSelector.md +24 -56
- package/docs/demos/Dashboard/examples/Dashboard.md +6 -14
- package/docs/demos/DataList/examples/DataList.md +24 -56
- package/docs/demos/DescriptionList/examples/DescriptionList.md +18 -42
- package/docs/demos/Drawer/examples/Drawer.md +30 -70
- package/docs/demos/JumpLinks/examples/JumpLinks.md +36 -84
- package/docs/demos/Masthead/examples/Masthead.md +54 -126
- package/docs/demos/Modal/examples/Modal.md +36 -84
- package/docs/demos/Nav/examples/Nav.md +48 -112
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +30 -70
- package/docs/demos/Page/examples/Page.md +54 -126
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +42 -98
- package/docs/demos/Skeleton/examples/Skeleton.md +6 -14
- package/docs/demos/Table/examples/Table.md +90 -210
- package/docs/demos/Tabs/examples/Tabs.md +36 -84
- package/docs/demos/Toolbar/examples/Toolbar.md +12 -28
- package/docs/demos/Wizard/examples/Wizard.md +54 -126
- package/package.json +1 -1
- package/patternfly-no-globals.css +61 -39
- package/patternfly-theme-dark-unversioned.css +61 -39
- package/patternfly.css +61 -39
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -15,21 +15,27 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
15
15
|
--#{$toolbar}--item--RowGap--base: var(--#{$pf-global}--spacer--xs); // shared row-gap for items and groups
|
|
16
16
|
|
|
17
17
|
// Item
|
|
18
|
-
--#{$toolbar}__item--Display:
|
|
18
|
+
--#{$toolbar}__item--Display: flex;
|
|
19
19
|
--#{$toolbar}__item--MinWidth--base: auto;
|
|
20
|
-
--#{$toolbar}__item--AlignSelf: auto;
|
|
21
20
|
--#{$toolbar}__item--AlignItems: var(--#{$toolbar}--AlignItems--base);
|
|
21
|
+
--#{$toolbar}__item--AlignSelf: var(--#{$toolbar}--AlignItems--base);
|
|
22
22
|
|
|
23
23
|
// Group
|
|
24
24
|
--#{$toolbar}__group--Display: flex;
|
|
25
|
+
--#{$toolbar}__group--RowGap: var(--#{$toolbar}--item--RowGap--base);
|
|
25
26
|
--#{$toolbar}__group--AlignItems: var(--#{$toolbar}--AlignItems--base);
|
|
26
27
|
--#{$toolbar}__group--AlignSelf: auto;
|
|
27
|
-
--#{$toolbar}__group--RowGap: var(--#{$toolbar}--item--RowGap--base);
|
|
28
28
|
|
|
29
29
|
// Sticky
|
|
30
30
|
--#{$toolbar}--m-sticky--ZIndex: var(--#{$pf-global}--ZIndex--xs);
|
|
31
31
|
--#{$toolbar}--m-sticky--BoxShadow: var(--#{$pf-global}--BoxShadow--sm-bottom);
|
|
32
32
|
|
|
33
|
+
// Alignment options
|
|
34
|
+
--#{$toolbar}--m-align-items-center--AlignItems: center;
|
|
35
|
+
--#{$toolbar}--m-align-items-baseline--AlignItems: baseline;
|
|
36
|
+
--#{$toolbar}--m-align-self-center--AlignSelf: center;
|
|
37
|
+
--#{$toolbar}--m-align-self-baseline--AlignSelf: baseline;
|
|
38
|
+
|
|
33
39
|
// Content
|
|
34
40
|
--#{$toolbar}__content--Display: flex;
|
|
35
41
|
--#{$toolbar}__content--AlignItems: var(--#{$toolbar}--AlignItems--base);
|
|
@@ -111,8 +117,12 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
111
117
|
|
|
112
118
|
// Label
|
|
113
119
|
--#{$toolbar}__item--m-label--spacer: var(--#{$toolbar}__item--spacer);
|
|
120
|
+
--#{$toolbar}__item--m-label--TranslateY: var(--pf-v5-global--spacer--form-element);
|
|
114
121
|
--#{$toolbar}__item--m-label--FontWeight: var(--#{$pf-global}--FontWeight--bold);
|
|
115
122
|
|
|
123
|
+
// Input
|
|
124
|
+
--#{$toolbar}__item--m-form-control--TranslateY: var(--pf-v5-global--spacer--form-element);
|
|
125
|
+
|
|
116
126
|
// Label in expanded content
|
|
117
127
|
--#{$toolbar}__expandable-content__item--m-label--MarginBottom: calc(-1 * var(--#{$toolbar}__expandable-content--m-expanded--GridRowGap) + var(--#{$pf-global}--spacer--sm));
|
|
118
128
|
--#{$toolbar}__expandable-content__item--m-label--FontSize: var(--#{$pf-global}--FontSize--sm);
|
|
@@ -127,7 +137,7 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
127
137
|
--#{$toolbar}--m-full-height--PaddingTop: 0;
|
|
128
138
|
--#{$toolbar}--m-full-height--PaddingBottom: 0;
|
|
129
139
|
--#{$toolbar}--m-full-height__item--Display: flex;
|
|
130
|
-
--#{$toolbar}--m-full-height__item--AlignItems:
|
|
140
|
+
--#{$toolbar}--m-full-height__item--AlignItems: center;
|
|
131
141
|
|
|
132
142
|
@media screen and (min-width: $pf-v5-global--breakpoint--lg) {
|
|
133
143
|
--#{$toolbar}__expandable-content--PaddingRight: var(--#{$toolbar}__expandable-content--lg--PaddingRight);
|
|
@@ -219,11 +229,11 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
219
229
|
}
|
|
220
230
|
|
|
221
231
|
&.pf-m-align-items-center {
|
|
222
|
-
align-items
|
|
232
|
+
--#{$toolbar}__group--AlignItems: var(--#{$toolbar}--m-align-items-center--AlignItems);
|
|
223
233
|
}
|
|
224
234
|
|
|
225
235
|
&.pf-m-align-items-baseline {
|
|
226
|
-
align-items
|
|
236
|
+
--#{$toolbar}__group--AlignItems: var(--#{$toolbar}--m-align-items-baseline--AlignItems);
|
|
227
237
|
}
|
|
228
238
|
|
|
229
239
|
&.pf-m-align-self-start {
|
|
@@ -231,11 +241,11 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
231
241
|
}
|
|
232
242
|
|
|
233
243
|
&.pf-m-align-self-center {
|
|
234
|
-
align-self
|
|
244
|
+
--#{$toolbar}__group--AlignSelf: var(--#{$toolbar}--m-align-self-center--AlignItems);
|
|
235
245
|
}
|
|
236
246
|
|
|
237
247
|
&.pf-m-align-self-baseline {
|
|
238
|
-
align-self
|
|
248
|
+
--#{$toolbar}__group--AlignSelf: var(--#{$toolbar}--m-align-self-baseline--AlignItems);
|
|
239
249
|
}
|
|
240
250
|
}
|
|
241
251
|
|
|
@@ -359,7 +369,7 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
359
369
|
--#{$toolbar}--spacer: var(--#{$toolbar}__item--m-search-filter--spacer);
|
|
360
370
|
}
|
|
361
371
|
|
|
362
|
-
//
|
|
372
|
+
// Chip group
|
|
363
373
|
&.pf-m-chip-group {
|
|
364
374
|
--#{$toolbar}--spacer: var(--#{$toolbar}__item--m-chip-group--spacer);
|
|
365
375
|
}
|
|
@@ -369,6 +379,7 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
369
379
|
--#{$toolbar}--spacer: var(--#{$toolbar}__item--m-label--spacer);
|
|
370
380
|
|
|
371
381
|
font-weight: var(--#{$toolbar}__item--m-label--FontWeight);
|
|
382
|
+
transform: translateY(var(--#{$pf-global}--spacer--form-element));
|
|
372
383
|
}
|
|
373
384
|
|
|
374
385
|
// Total items
|
|
@@ -429,7 +440,7 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
429
440
|
}
|
|
430
441
|
|
|
431
442
|
&.pf-m-align-items-center {
|
|
432
|
-
align-items
|
|
443
|
+
--#{$toolbar}__content-section--AlignItems: var(--#{$toolbar}--m-align-items-center--AlignItems);
|
|
433
444
|
}
|
|
434
445
|
|
|
435
446
|
&.pf-m-align-items-baseline {
|
|
@@ -470,7 +481,7 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
470
481
|
grid-row-gap: var(--#{$toolbar}__expandable-content--m-expanded--GridRowGap);
|
|
471
482
|
}
|
|
472
483
|
|
|
473
|
-
.pf-m-label {
|
|
484
|
+
.#{$toolbar}__item.pf-m-label {
|
|
474
485
|
margin-bottom: var(--#{$toolbar}__expandable-content__item--m-label--MarginBottom);
|
|
475
486
|
font-size: var(--#{$toolbar}__expandable-content__item--m-label--FontSize);
|
|
476
487
|
}
|
|
@@ -488,11 +499,13 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
488
499
|
|
|
489
500
|
.#{$toolbar}__item {
|
|
490
501
|
--#{$toolbar}--spacer: var(--#{$toolbar}__item--spacer);
|
|
502
|
+
--#{$toolbar}__item--AlignSelf: auto;
|
|
491
503
|
|
|
492
504
|
margin-top: var(--#{$toolbar}__group--m-chip-container__item--MarginTop);
|
|
493
505
|
}
|
|
494
506
|
|
|
495
507
|
.#{$toolbar}__group {
|
|
508
|
+
--#{$toolbar}__group--AlignItems: center;
|
|
496
509
|
--#{$toolbar}--spacer: var(--#{$toolbar}__group--spacer);
|
|
497
510
|
|
|
498
511
|
display: flex;
|
|
@@ -4428,7 +4428,7 @@ As the toolbar component is a hybrid layout and component, some of its elements
|
|
|
4428
4428
|
| `.pf-v5-c-toolbar__content-section` | `<div>` | Initiates a toolbar content section. This is used to separate static elements from dynamic elements within a content container. There should be no more than one `.pf-v5-c-toolbar__content-section` per `.pf-v5-c-toolbar__content` **Required** |
|
|
4429
4429
|
| `.pf-v5-c-toolbar__expandable-content` | `<div>` | Initiates a toolbar expandable content section. |
|
|
4430
4430
|
| `.pf-m-sticky` | `.pf-v5-c-toolbar` | Modifies toolbar component to be sticky to the top of its container. |
|
|
4431
|
-
| `.pf-m-full-height` | `.pf-v5-c-toolbar` | Modifies toolbar component to full height of its container and removes vertical padding. |
|
|
4431
|
+
| `.pf-m-full-height` | `.pf-v5-c-toolbar`, `.pf-v5-c-toolbar__content-section`, `.pf-v5-c-toolbar__group` | Modifies toolbar component to full height of its container and removes vertical padding. |
|
|
4432
4432
|
| `.pf-m-static` | `.pf-v5-c-toolbar` | Modifies expandable content section to position itself to the nearest absolutely positioned parent outside of the toolbar component. This is used primarily for masthead toolbar. |
|
|
4433
4433
|
| `.pf-m-expanded` | `.pf-v5-c-toolbar__expandable-content` | Modifies expandable content section for the expanded state. |
|
|
4434
4434
|
| `.pf-m-bulk-select` | `.pf-v5-c-toolbar__item` | Initiates bulk select spacing. |
|
|
@@ -4449,7 +4449,6 @@ As the toolbar component is a hybrid layout and component, some of its elements
|
|
|
4449
4449
|
| `.pf-m-align-items-baseline` | `.pf-v5-c-toolbar__group` | Modifies toolbar group to vertically align children to baseline. |
|
|
4450
4450
|
| `.pf-m-align-self-center` | `.pf-v5-c-toolbar__group`, `.pf-v5-c-toolbar__item` | Modifies toolbar element to vertically align self to center. |
|
|
4451
4451
|
| `.pf-m-align-self-baseline` | `.pf-v5-c-toolbar__group`, `.pf-v5-c-toolbar__item` | Modifies toolbar element to vertically align self to baseline. |
|
|
4452
|
-
| `.pf-m-label` | `.pf-v5-c-toolbar__item` | Modifies toolbar item to label. |
|
|
4453
4452
|
| `.pf-m-chip-container` | `.pf-v5-c-toolbar__content`, `.pf-v5-c-toolbar__group` | Modifies the toolbar element for applied filters layout. |
|
|
4454
4453
|
| `.pf-m-overflow-container` | `.pf-v5-c-toolbar__item`, `.pf-v5-c-toolbar__group` | Modifies the toolbar element to hide overflow and respond to available space. Used for horizontal navigation. |
|
|
4455
4454
|
| `.pf-m-expanded` | `.pf-v5-c-toolbar__expandable-content`, `.pf-v5-c-toolbar__toggle` | Modifies the component for the expanded state. |
|
|
@@ -27,20 +27,12 @@ This demo implements the about modal, including the backdrop.
|
|
|
27
27
|
</span>
|
|
28
28
|
<div class="pf-v5-c-masthead__main">
|
|
29
29
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
30
|
-
<
|
|
31
|
-
class="pf-v5-c-brand
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
37
|
-
/>
|
|
38
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
39
|
-
<img
|
|
40
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
41
|
-
alt="Fallback patternFly default logo"
|
|
42
|
-
/>
|
|
43
|
-
</picture>
|
|
30
|
+
<img
|
|
31
|
+
class="pf-v5-c-brand"
|
|
32
|
+
src="/assets/images/pf-logo.svg"
|
|
33
|
+
alt="PatternFly logo"
|
|
34
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
35
|
+
/>
|
|
44
36
|
</a>
|
|
45
37
|
</div>
|
|
46
38
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -25,20 +25,12 @@ section: components
|
|
|
25
25
|
</span>
|
|
26
26
|
<div class="pf-v5-c-masthead__main">
|
|
27
27
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
28
|
-
<
|
|
29
|
-
class="pf-v5-c-brand
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
35
|
-
/>
|
|
36
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
37
|
-
<img
|
|
38
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
39
|
-
alt="Fallback patternFly default logo"
|
|
40
|
-
/>
|
|
41
|
-
</picture>
|
|
28
|
+
<img
|
|
29
|
+
class="pf-v5-c-brand"
|
|
30
|
+
src="/assets/images/pf-logo.svg"
|
|
31
|
+
alt="PatternFly logo"
|
|
32
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
33
|
+
/>
|
|
42
34
|
</a>
|
|
43
35
|
</div>
|
|
44
36
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -336,20 +328,12 @@ section: components
|
|
|
336
328
|
</span>
|
|
337
329
|
<div class="pf-v5-c-masthead__main">
|
|
338
330
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
339
|
-
<
|
|
340
|
-
class="pf-v5-c-brand
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
346
|
-
/>
|
|
347
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
348
|
-
<img
|
|
349
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
350
|
-
alt="Fallback patternFly default logo"
|
|
351
|
-
/>
|
|
352
|
-
</picture>
|
|
331
|
+
<img
|
|
332
|
+
class="pf-v5-c-brand"
|
|
333
|
+
src="/assets/images/pf-logo.svg"
|
|
334
|
+
alt="PatternFly logo"
|
|
335
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
336
|
+
/>
|
|
353
337
|
</a>
|
|
354
338
|
</div>
|
|
355
339
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -728,20 +712,12 @@ section: components
|
|
|
728
712
|
</span>
|
|
729
713
|
<div class="pf-v5-c-masthead__main">
|
|
730
714
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
731
|
-
<
|
|
732
|
-
class="pf-v5-c-brand
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
738
|
-
/>
|
|
739
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
740
|
-
<img
|
|
741
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
742
|
-
alt="Fallback patternFly default logo"
|
|
743
|
-
/>
|
|
744
|
-
</picture>
|
|
715
|
+
<img
|
|
716
|
+
class="pf-v5-c-brand"
|
|
717
|
+
src="/assets/images/pf-logo.svg"
|
|
718
|
+
alt="PatternFly logo"
|
|
719
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
720
|
+
/>
|
|
745
721
|
</a>
|
|
746
722
|
</div>
|
|
747
723
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -26,20 +26,12 @@ cssPrefix: pf-d-back-to-top
|
|
|
26
26
|
</span>
|
|
27
27
|
<div class="pf-v5-c-masthead__main">
|
|
28
28
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
29
|
-
<
|
|
30
|
-
class="pf-v5-c-brand
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
36
|
-
/>
|
|
37
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
38
|
-
<img
|
|
39
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
40
|
-
alt="Fallback patternFly default logo"
|
|
41
|
-
/>
|
|
42
|
-
</picture>
|
|
29
|
+
<img
|
|
30
|
+
class="pf-v5-c-brand"
|
|
31
|
+
src="/assets/images/pf-logo.svg"
|
|
32
|
+
alt="PatternFly logo"
|
|
33
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
34
|
+
/>
|
|
43
35
|
</a>
|
|
44
36
|
</div>
|
|
45
37
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -27,20 +27,12 @@ wrapperTag: div
|
|
|
27
27
|
</span>
|
|
28
28
|
<div class="pf-v5-c-masthead__main">
|
|
29
29
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
30
|
-
<
|
|
31
|
-
class="pf-v5-c-brand
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
37
|
-
/>
|
|
38
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
39
|
-
<img
|
|
40
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
41
|
-
alt="Fallback patternFly default logo"
|
|
42
|
-
/>
|
|
43
|
-
</picture>
|
|
30
|
+
<img
|
|
31
|
+
class="pf-v5-c-brand"
|
|
32
|
+
src="/assets/images/pf-logo.svg"
|
|
33
|
+
alt="PatternFly logo"
|
|
34
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
35
|
+
/>
|
|
44
36
|
</a>
|
|
45
37
|
</div>
|
|
46
38
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -423,20 +415,12 @@ wrapperTag: div
|
|
|
423
415
|
</span>
|
|
424
416
|
<div class="pf-v5-c-masthead__main">
|
|
425
417
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
426
|
-
<
|
|
427
|
-
class="pf-v5-c-brand
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
433
|
-
/>
|
|
434
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
435
|
-
<img
|
|
436
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
437
|
-
alt="Fallback patternFly default logo"
|
|
438
|
-
/>
|
|
439
|
-
</picture>
|
|
418
|
+
<img
|
|
419
|
+
class="pf-v5-c-brand"
|
|
420
|
+
src="/assets/images/pf-logo.svg"
|
|
421
|
+
alt="PatternFly logo"
|
|
422
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
423
|
+
/>
|
|
440
424
|
</a>
|
|
441
425
|
</div>
|
|
442
426
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -25,20 +25,12 @@ section: patterns
|
|
|
25
25
|
</span>
|
|
26
26
|
<div class="pf-v5-c-masthead__main">
|
|
27
27
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
28
|
-
<
|
|
29
|
-
class="pf-v5-c-brand
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
35
|
-
/>
|
|
36
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
37
|
-
<img
|
|
38
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
39
|
-
alt="Fallback patternFly default logo"
|
|
40
|
-
/>
|
|
41
|
-
</picture>
|
|
28
|
+
<img
|
|
29
|
+
class="pf-v5-c-brand"
|
|
30
|
+
src="/assets/images/pf-logo.svg"
|
|
31
|
+
alt="PatternFly logo"
|
|
32
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
33
|
+
/>
|
|
42
34
|
</a>
|
|
43
35
|
</div>
|
|
44
36
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -27,20 +27,12 @@ deprecated: true
|
|
|
27
27
|
</span>
|
|
28
28
|
<div class="pf-v5-c-masthead__main">
|
|
29
29
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
30
|
-
<
|
|
31
|
-
class="pf-v5-c-brand
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
37
|
-
/>
|
|
38
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
39
|
-
<img
|
|
40
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
41
|
-
alt="Fallback patternFly default logo"
|
|
42
|
-
/>
|
|
43
|
-
</picture>
|
|
30
|
+
<img
|
|
31
|
+
class="pf-v5-c-brand"
|
|
32
|
+
src="/assets/images/pf-logo.svg"
|
|
33
|
+
alt="PatternFly logo"
|
|
34
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
35
|
+
/>
|
|
44
36
|
</a>
|
|
45
37
|
</div>
|
|
46
38
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -215,20 +207,12 @@ deprecated: true
|
|
|
215
207
|
</span>
|
|
216
208
|
<div class="pf-v5-c-masthead__main">
|
|
217
209
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
218
|
-
<
|
|
219
|
-
class="pf-v5-c-brand
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
225
|
-
/>
|
|
226
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
227
|
-
<img
|
|
228
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
229
|
-
alt="Fallback patternFly default logo"
|
|
230
|
-
/>
|
|
231
|
-
</picture>
|
|
210
|
+
<img
|
|
211
|
+
class="pf-v5-c-brand"
|
|
212
|
+
src="/assets/images/pf-logo.svg"
|
|
213
|
+
alt="PatternFly logo"
|
|
214
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
215
|
+
/>
|
|
232
216
|
</a>
|
|
233
217
|
</div>
|
|
234
218
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -583,20 +567,12 @@ deprecated: true
|
|
|
583
567
|
</span>
|
|
584
568
|
<div class="pf-v5-c-masthead__main">
|
|
585
569
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
586
|
-
<
|
|
587
|
-
class="pf-v5-c-brand
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
593
|
-
/>
|
|
594
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
595
|
-
<img
|
|
596
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
597
|
-
alt="Fallback patternFly default logo"
|
|
598
|
-
/>
|
|
599
|
-
</picture>
|
|
570
|
+
<img
|
|
571
|
+
class="pf-v5-c-brand"
|
|
572
|
+
src="/assets/images/pf-logo.svg"
|
|
573
|
+
alt="PatternFly logo"
|
|
574
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
575
|
+
/>
|
|
600
576
|
</a>
|
|
601
577
|
</div>
|
|
602
578
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -953,20 +929,12 @@ deprecated: true
|
|
|
953
929
|
</span>
|
|
954
930
|
<div class="pf-v5-c-masthead__main">
|
|
955
931
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
956
|
-
<
|
|
957
|
-
class="pf-v5-c-brand
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
963
|
-
/>
|
|
964
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
965
|
-
<img
|
|
966
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
967
|
-
alt="Fallback patternFly default logo"
|
|
968
|
-
/>
|
|
969
|
-
</picture>
|
|
932
|
+
<img
|
|
933
|
+
class="pf-v5-c-brand"
|
|
934
|
+
src="/assets/images/pf-logo.svg"
|
|
935
|
+
alt="PatternFly logo"
|
|
936
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
937
|
+
/>
|
|
970
938
|
</a>
|
|
971
939
|
</div>
|
|
972
940
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -26,20 +26,12 @@ cssPrefix: pf-d-dashboard
|
|
|
26
26
|
</span>
|
|
27
27
|
<div class="pf-v5-c-masthead__main">
|
|
28
28
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
29
|
-
<
|
|
30
|
-
class="pf-v5-c-brand
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
36
|
-
/>
|
|
37
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
38
|
-
<img
|
|
39
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
40
|
-
alt="Fallback patternFly default logo"
|
|
41
|
-
/>
|
|
42
|
-
</picture>
|
|
29
|
+
<img
|
|
30
|
+
class="pf-v5-c-brand"
|
|
31
|
+
src="/assets/images/pf-logo.svg"
|
|
32
|
+
alt="PatternFly logo"
|
|
33
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
34
|
+
/>
|
|
43
35
|
</a>
|
|
44
36
|
</div>
|
|
45
37
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -26,20 +26,12 @@ wrapperTag: div
|
|
|
26
26
|
</span>
|
|
27
27
|
<div class="pf-v5-c-masthead__main">
|
|
28
28
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
29
|
-
<
|
|
30
|
-
class="pf-v5-c-brand
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
36
|
-
/>
|
|
37
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
38
|
-
<img
|
|
39
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
40
|
-
alt="Fallback patternFly default logo"
|
|
41
|
-
/>
|
|
42
|
-
</picture>
|
|
29
|
+
<img
|
|
30
|
+
class="pf-v5-c-brand"
|
|
31
|
+
src="/assets/images/pf-logo.svg"
|
|
32
|
+
alt="PatternFly logo"
|
|
33
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
34
|
+
/>
|
|
43
35
|
</a>
|
|
44
36
|
</div>
|
|
45
37
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -887,20 +879,12 @@ wrapperTag: div
|
|
|
887
879
|
</span>
|
|
888
880
|
<div class="pf-v5-c-masthead__main">
|
|
889
881
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
890
|
-
<
|
|
891
|
-
class="pf-v5-c-brand
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
897
|
-
/>
|
|
898
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
899
|
-
<img
|
|
900
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
901
|
-
alt="Fallback patternFly default logo"
|
|
902
|
-
/>
|
|
903
|
-
</picture>
|
|
882
|
+
<img
|
|
883
|
+
class="pf-v5-c-brand"
|
|
884
|
+
src="/assets/images/pf-logo.svg"
|
|
885
|
+
alt="PatternFly logo"
|
|
886
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
887
|
+
/>
|
|
904
888
|
</a>
|
|
905
889
|
</div>
|
|
906
890
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -1738,20 +1722,12 @@ wrapperTag: div
|
|
|
1738
1722
|
</span>
|
|
1739
1723
|
<div class="pf-v5-c-masthead__main">
|
|
1740
1724
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
1741
|
-
<
|
|
1742
|
-
class="pf-v5-c-brand
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
1748
|
-
/>
|
|
1749
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
1750
|
-
<img
|
|
1751
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
1752
|
-
alt="Fallback patternFly default logo"
|
|
1753
|
-
/>
|
|
1754
|
-
</picture>
|
|
1725
|
+
<img
|
|
1726
|
+
class="pf-v5-c-brand"
|
|
1727
|
+
src="/assets/images/pf-logo.svg"
|
|
1728
|
+
alt="PatternFly logo"
|
|
1729
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
1730
|
+
/>
|
|
1755
1731
|
</a>
|
|
1756
1732
|
</div>
|
|
1757
1733
|
<div class="pf-v5-c-masthead__content">
|
|
@@ -3364,20 +3340,12 @@ wrapperTag: div
|
|
|
3364
3340
|
</span>
|
|
3365
3341
|
<div class="pf-v5-c-masthead__main">
|
|
3366
3342
|
<a class="pf-v5-c-masthead__brand" href="#">
|
|
3367
|
-
<
|
|
3368
|
-
class="pf-v5-c-brand
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
srcset="/assets/images/logo__pf--reverse-on-md.svg"
|
|
3374
|
-
/>
|
|
3375
|
-
<source srcset="/assets/images/logo__pf--reverse--base.svg" />
|
|
3376
|
-
<img
|
|
3377
|
-
src="/assets/images/logo__pf--reverse--base.png"
|
|
3378
|
-
alt="Fallback patternFly default logo"
|
|
3379
|
-
/>
|
|
3380
|
-
</picture>
|
|
3343
|
+
<img
|
|
3344
|
+
class="pf-v5-c-brand"
|
|
3345
|
+
src="/assets/images/pf-logo.svg"
|
|
3346
|
+
alt="PatternFly logo"
|
|
3347
|
+
style="--pf-v5-c-brand--Height:36px"
|
|
3348
|
+
/>
|
|
3381
3349
|
</a>
|
|
3382
3350
|
</div>
|
|
3383
3351
|
<div class="pf-v5-c-masthead__content">
|