@patternfly/patternfly 6.5.0-prerelease.81 → 6.5.0-prerelease.83
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/Card/card.scss +7 -9
- package/components/Hero/hero.css +19 -19
- package/components/Hero/hero.scss +30 -29
- package/components/Toolbar/toolbar.css +3 -0
- package/components/Toolbar/toolbar.scss +3 -0
- package/components/_index.css +22 -19
- package/docs/components/Card/examples/Card.md +3 -3
- package/docs/components/Compass/examples/Compass.css +3 -3
- package/docs/components/Compass/examples/Compass.md +1 -2
- package/docs/components/Hero/examples/Hero.md +1 -1
- package/docs/components/Masthead/examples/masthead.md +79 -7
- package/docs/demos/AboutModal/examples/AboutModal.md +1 -1
- package/docs/demos/Alert/examples/Alert.md +3 -3
- package/docs/demos/BackToTop/examples/BackToTop.md +1 -1
- package/docs/demos/Banner/examples/Banner.md +2 -2
- package/docs/demos/CardView/examples/CardView.md +1 -1
- package/docs/demos/Compass/examples/Compass.md +14 -15
- package/docs/demos/Dashboard/examples/Dashboard.md +1 -1
- package/docs/demos/DataList/examples/DataList.md +4 -4
- package/docs/demos/DescriptionList/examples/DescriptionList.md +3 -3
- package/docs/demos/Drawer/examples/Drawer.md +5 -5
- package/docs/demos/JumpLinks/examples/JumpLinks.md +6 -6
- package/docs/demos/Masthead/examples/Masthead.md +9 -9
- package/docs/demos/Modal/examples/Modal.md +6 -6
- package/docs/demos/Nav/examples/Nav.md +18 -18
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +5 -5
- package/docs/demos/Page/examples/Page.md +14 -14
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +7 -7
- package/docs/demos/Skeleton/examples/Skeleton.md +1 -1
- package/docs/demos/Table/examples/Table.md +16 -16
- package/docs/demos/Tabs/examples/Tabs.md +6 -6
- package/docs/demos/Toolbar/examples/Toolbar.md +2 -2
- package/docs/demos/Wizard/examples/Wizard.md +9 -9
- package/package.json +5 -3
- package/patternfly-no-globals.css +22 -19
- package/patternfly.css +22 -19
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -140,15 +140,13 @@
|
|
|
140
140
|
border-radius: inherit;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
:where(.pf-v6-theme-glass)
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
box-shadow: var(--#{$card}--m-glass--BoxShadow);
|
|
151
|
-
}
|
|
143
|
+
:where(.pf-v6-theme-glass) &.pf-m-glass {
|
|
144
|
+
--#{$card}--BackgroundColor: var(--#{$card}--m-glass--BackgroundColor);
|
|
145
|
+
--#{$card}--BorderColor: var(--#{$card}--m-glass--BorderColor);
|
|
146
|
+
--#{$card}--BorderWidth: var(--#{$card}--m-glass--BorderWidth);
|
|
147
|
+
|
|
148
|
+
backdrop-filter: var(--#{$card}--m-glass--BackdropFilter);
|
|
149
|
+
box-shadow: var(--#{$card}--m-glass--BoxShadow);
|
|
152
150
|
}
|
|
153
151
|
|
|
154
152
|
// SELECTABLE CARDS
|
package/components/Hero/hero.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
.pf-v6-c-hero {
|
|
2
|
-
--pf-v6-c-hero--PaddingBlockStart: var(--pf-t--global--spacer--
|
|
3
|
-
--pf-v6-c-hero--PaddingBlockEnd: var(--pf-t--global--spacer--
|
|
2
|
+
--pf-v6-c-hero--PaddingBlockStart: var(--pf-t--global--spacer--3xl);
|
|
3
|
+
--pf-v6-c-hero--PaddingBlockEnd: var(--pf-t--global--spacer--3xl);
|
|
4
4
|
--pf-v6-c-hero--PaddingInlineStart: var(--pf-t--global--spacer--3xl);
|
|
5
|
-
--pf-v6-c-hero--PaddingInlineEnd: var(--pf-t--global--spacer--
|
|
5
|
+
--pf-v6-c-hero--PaddingInlineEnd: var(--pf-t--global--spacer--3xl);
|
|
6
6
|
--pf-v6-c-hero--gradient--angle: 109deg;
|
|
7
7
|
--pf-v6-c-hero--gradient--stop-1--light: transparent;
|
|
8
8
|
--pf-v6-c-hero--gradient--stop-2--light: transparent;
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
--pf-v6-c-hero--gradient--stop-1--dark: transparent;
|
|
11
11
|
--pf-v6-c-hero--gradient--stop-2--dark: transparent;
|
|
12
12
|
--pf-v6-c-hero--gradient--stop-3--dark: transparent;
|
|
13
|
-
--pf-v6-c-hero--BackgroundColor: var(--pf-t--global--background--color--
|
|
14
|
-
--pf-v6-c-hero--BackdropFilter: var(--pf-t--global--background--filter--glass--blur--primary);
|
|
13
|
+
--pf-v6-c-hero--BackgroundColor: var(--pf-t--global--background--color--tertiary--default);
|
|
15
14
|
--pf-v6-c-hero--BackgroundImage--light: none;
|
|
16
15
|
--pf-v6-c-hero--BackgroundImage--dark: none;
|
|
17
16
|
--pf-v6-c-hero--BackgroundRepeat: no-repeat;
|
|
@@ -23,14 +22,16 @@
|
|
|
23
22
|
--pf-v6-c-hero--BorderInlineStartWidth: var(--pf-t--global--border--width--regular);
|
|
24
23
|
--pf-v6-c-hero--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
|
|
25
24
|
--pf-v6-c-hero--BorderColor: var(--pf-t--global--border--color--default);
|
|
26
|
-
--pf-v6-c-hero--
|
|
27
|
-
--pf-v6-c-hero--
|
|
28
|
-
--pf-v6-c-hero--
|
|
29
|
-
--pf-v6-c-hero--
|
|
30
|
-
--pf-v6-c-hero--BorderEndEndRadius: 24px;
|
|
31
|
-
--pf-v6-c-hero--BorderEndStartRadius: 72px;
|
|
25
|
+
--pf-v6-c-hero--BorderStartStartRadius: var(--pf-t--global--border--radius--medium);
|
|
26
|
+
--pf-v6-c-hero--BorderStartEndRadius: 48px;
|
|
27
|
+
--pf-v6-c-hero--BorderEndEndRadius: var(--pf-t--global--border--radius--medium);
|
|
28
|
+
--pf-v6-c-hero--BorderEndStartRadius: 48px;
|
|
32
29
|
--pf-v6-c-hero__body--Width: 800px;
|
|
33
30
|
--pf-v6-c-hero__body--MaxWidth: 80%;
|
|
31
|
+
--pf-v6-c-hero--m-glass--BackgroundColor: var(--pf-t--global--background--color--glass--primary--default);
|
|
32
|
+
--pf-v6-c-hero--m-glass--BackdropFilter: var(--pf-t--global--background--filter--glass--blur--primary);
|
|
33
|
+
--pf-v6-c-hero--m-glass--BorderColor: var(--pf-t--global--border--color--glass--default);
|
|
34
|
+
--pf-v6-c-hero--m-glass--BoxShadow: var(--pf-t--global--box-shadow--glass--default);
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
.pf-v6-c-hero {
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
padding-block-end: var(--pf-v6-c-hero--PaddingBlockEnd);
|
|
40
41
|
padding-inline-start: var(--pf-v6-c-hero--PaddingInlineStart);
|
|
41
42
|
padding-inline-end: var(--pf-v6-c-hero--PaddingInlineEnd);
|
|
43
|
+
background-color: var(--pf-v6-c-hero--BackgroundColor);
|
|
42
44
|
background-image: var(--pf-v6-c-hero--BackgroundImage, var(--pf-v6-c-hero--BackgroundImage--light)), linear-gradient(var(--pf-v6-c-hero--gradient--angle), var(--pf-v6-c-hero--gradient--stop-1, var(--pf-v6-c-hero--gradient--stop-1--light)) 0%, var(--pf-v6-c-hero--gradient--stop-2, var(--pf-v6-c-hero--gradient--stop-2--light)) 50%, var(--pf-v6-c-hero--gradient--stop-3, var(--pf-v6-c-hero--gradient--stop-3--light)) 100%);
|
|
43
45
|
background-repeat: var(--pf-v6-c-hero--BackgroundRepeat);
|
|
44
46
|
background-position: var(--pf-v6-c-hero--BackgroundPosition);
|
|
@@ -54,20 +56,18 @@
|
|
|
54
56
|
border-end-start-radius: var(--pf-v6-c-hero--BorderEndStartRadius);
|
|
55
57
|
border-end-end-radius: var(--pf-v6-c-hero--BorderEndEndRadius);
|
|
56
58
|
}
|
|
59
|
+
:where(.pf-v6-theme-glass) .pf-v6-c-hero.pf-m-glass {
|
|
60
|
+
--pf-v6-c-hero--BorderColor: var(--pf-v6-c-hero--m-glass--BorderColor);
|
|
61
|
+
--pf-v6-c-hero--BackgroundColor: var(--pf-v6-c-hero--m-glass--BackgroundColor);
|
|
62
|
+
backdrop-filter: var(--pf-v6-c-hero--m-glass--BackdropFilter);
|
|
63
|
+
box-shadow: var(--pf-v6-c-hero--m-glass--BoxShadow);
|
|
64
|
+
}
|
|
57
65
|
:root:where(.pf-v6-theme-dark) .pf-v6-c-hero {
|
|
58
66
|
--pf-v6-c-hero--BackgroundImage: var(--pf-v6-c-hero--BackgroundImage--dark);
|
|
59
67
|
--pf-v6-c-hero--gradient--stop-1: var(--pf-v6-c-hero--gradient--stop-1--dark);
|
|
60
68
|
--pf-v6-c-hero--gradient--stop-2: var(--pf-v6-c-hero--gradient--stop-2--dark);
|
|
61
69
|
--pf-v6-c-hero--gradient--stop-3: var(--pf-v6-c-hero--gradient--stop-3--dark);
|
|
62
70
|
}
|
|
63
|
-
:root:where(.pf-v6-theme-glass) .pf-v6-c-hero {
|
|
64
|
-
--pf-v6-c-hero--BorderColor: var(--pf-v6-c-hero--m-glass--BorderColor);
|
|
65
|
-
box-shadow: var(--pf-v6-c-hero--m-glass--BoxShadow);
|
|
66
|
-
}
|
|
67
|
-
.pf-v6-c-hero:not(.pf-m-no-glass) {
|
|
68
|
-
background-color: var(--pf-v6-c-hero--BackgroundColor);
|
|
69
|
-
backdrop-filter: var(--pf-v6-c-hero--BackdropFilter);
|
|
70
|
-
}
|
|
71
71
|
|
|
72
72
|
.pf-v6-c-hero__body {
|
|
73
73
|
width: min(var(--pf-v6-c-hero__body--Width), var(--pf-v6-c-hero__body--MaxWidth));
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
@use '../../sass-utilities' as *;
|
|
2
2
|
|
|
3
3
|
@include pf-root($hero) {
|
|
4
|
-
--#{$hero}--PaddingBlockStart: var(--pf-t--global--spacer--
|
|
5
|
-
--#{$hero}--PaddingBlockEnd: var(--pf-t--global--spacer--
|
|
4
|
+
--#{$hero}--PaddingBlockStart: var(--pf-t--global--spacer--3xl);
|
|
5
|
+
--#{$hero}--PaddingBlockEnd: var(--pf-t--global--spacer--3xl);
|
|
6
6
|
--#{$hero}--PaddingInlineStart: var(--pf-t--global--spacer--3xl);
|
|
7
|
-
--#{$hero}--PaddingInlineEnd: var(--pf-t--global--spacer--
|
|
7
|
+
--#{$hero}--PaddingInlineEnd: var(--pf-t--global--spacer--3xl);
|
|
8
8
|
--#{$hero}--gradient--angle: 109deg;
|
|
9
9
|
--#{$hero}--gradient--stop-1--light: transparent;
|
|
10
10
|
--#{$hero}--gradient--stop-2--light: transparent;
|
|
@@ -12,8 +12,7 @@
|
|
|
12
12
|
--#{$hero}--gradient--stop-1--dark: transparent;
|
|
13
13
|
--#{$hero}--gradient--stop-2--dark: transparent;
|
|
14
14
|
--#{$hero}--gradient--stop-3--dark: transparent;
|
|
15
|
-
--#{$hero}--BackgroundColor: var(--pf-t--global--background--color--
|
|
16
|
-
--#{$hero}--BackdropFilter: var(--pf-t--global--background--filter--glass--blur--primary);
|
|
15
|
+
--#{$hero}--BackgroundColor: var(--pf-t--global--background--color--tertiary--default);
|
|
17
16
|
--#{$hero}--BackgroundImage--light: none;
|
|
18
17
|
--#{$hero}--BackgroundImage--dark: none;
|
|
19
18
|
--#{$hero}--BackgroundRepeat: no-repeat;
|
|
@@ -25,14 +24,18 @@
|
|
|
25
24
|
--#{$hero}--BorderInlineStartWidth: var(--pf-t--global--border--width--regular);
|
|
26
25
|
--#{$hero}--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
|
|
27
26
|
--#{$hero}--BorderColor: var(--pf-t--global--border--color--default);
|
|
28
|
-
--#{$hero}--
|
|
29
|
-
--#{$hero}--
|
|
30
|
-
--#{$hero}--
|
|
31
|
-
--#{$hero}--
|
|
32
|
-
--#{$hero}--BorderEndEndRadius: 24px;
|
|
33
|
-
--#{$hero}--BorderEndStartRadius: 72px;
|
|
27
|
+
--#{$hero}--BorderStartStartRadius: var(--pf-t--global--border--radius--medium);
|
|
28
|
+
--#{$hero}--BorderStartEndRadius: 48px;
|
|
29
|
+
--#{$hero}--BorderEndEndRadius: var(--pf-t--global--border--radius--medium);
|
|
30
|
+
--#{$hero}--BorderEndStartRadius: 48px;
|
|
34
31
|
--#{$hero}__body--Width: 800px;
|
|
35
32
|
--#{$hero}__body--MaxWidth: 80%;
|
|
33
|
+
|
|
34
|
+
// Glass styles
|
|
35
|
+
--#{$hero}--m-glass--BackgroundColor: var(--pf-t--global--background--color--glass--primary--default);
|
|
36
|
+
--#{$hero}--m-glass--BackdropFilter: var(--pf-t--global--background--filter--glass--blur--primary);
|
|
37
|
+
--#{$hero}--m-glass--BorderColor: var(--pf-t--global--border--color--glass--default);
|
|
38
|
+
--#{$hero}--m-glass--BoxShadow: var(--pf-t--global--box-shadow--glass--default);
|
|
36
39
|
}
|
|
37
40
|
|
|
38
41
|
.#{$hero} {
|
|
@@ -41,13 +44,14 @@
|
|
|
41
44
|
padding-block-end: var(--#{$hero}--PaddingBlockEnd);
|
|
42
45
|
padding-inline-start: var(--#{$hero}--PaddingInlineStart);
|
|
43
46
|
padding-inline-end: var(--#{$hero}--PaddingInlineEnd);
|
|
47
|
+
background-color: var(--#{$hero}--BackgroundColor);
|
|
44
48
|
background-image: var(--#{$hero}--BackgroundImage, var(--#{$hero}--BackgroundImage--light)),
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
linear-gradient(
|
|
50
|
+
var(--#{$hero}--gradient--angle),
|
|
51
|
+
var(--#{$hero}--gradient--stop-1, var(--#{$hero}--gradient--stop-1--light)) 0%,
|
|
52
|
+
var(--#{$hero}--gradient--stop-2, var(--#{$hero}--gradient--stop-2--light)) 50%,
|
|
53
|
+
var(--#{$hero}--gradient--stop-3, var(--#{$hero}--gradient--stop-3--light)) 100%
|
|
54
|
+
);
|
|
51
55
|
background-repeat: var(--#{$hero}--BackgroundRepeat);
|
|
52
56
|
background-position: var(--#{$hero}--BackgroundPosition);
|
|
53
57
|
background-size: var(--#{$hero}--BackgroundSize);
|
|
@@ -62,23 +66,20 @@
|
|
|
62
66
|
border-end-start-radius: var(--#{$hero}--BorderEndStartRadius);
|
|
63
67
|
border-end-end-radius: var(--#{$hero}--BorderEndEndRadius);
|
|
64
68
|
|
|
69
|
+
:where(.#{$pf-prefix}theme-glass) &.pf-m-glass {
|
|
70
|
+
--#{$hero}--BorderColor: var(--#{$hero}--m-glass--BorderColor);
|
|
71
|
+
--#{$hero}--BackgroundColor: var(--#{$hero}--m-glass--BackgroundColor);
|
|
72
|
+
|
|
73
|
+
backdrop-filter: var(--#{$hero}--m-glass--BackdropFilter);
|
|
74
|
+
box-shadow: var(--#{$hero}--m-glass--BoxShadow);
|
|
75
|
+
}
|
|
76
|
+
|
|
65
77
|
:root:where(.#{$pf-prefix}theme-dark) & {
|
|
66
78
|
--#{$hero}--BackgroundImage: var(--#{$hero}--BackgroundImage--dark);
|
|
67
79
|
--#{$hero}--gradient--stop-1: var(--#{$hero}--gradient--stop-1--dark);
|
|
68
80
|
--#{$hero}--gradient--stop-2: var(--#{$hero}--gradient--stop-2--dark);
|
|
69
81
|
--#{$hero}--gradient--stop-3: var(--#{$hero}--gradient--stop-3--dark);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
:root:where(.#{$pf-prefix}theme-glass) & {
|
|
73
|
-
--#{$hero}--BorderColor: var(--#{$hero}--m-glass--BorderColor);
|
|
74
|
-
|
|
75
|
-
box-shadow: var(--#{$hero}--m-glass--BoxShadow);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
&:not(.pf-m-no-glass) {
|
|
79
|
-
background-color: var(--#{$hero}--BackgroundColor);
|
|
80
|
-
backdrop-filter: var(--#{$hero}--BackdropFilter);
|
|
81
|
-
}
|
|
82
|
+
}
|
|
82
83
|
}
|
|
83
84
|
|
|
84
85
|
.#{$hero}__body {
|
|
@@ -331,7 +331,10 @@
|
|
|
331
331
|
z-index: var(--pf-v6-c-toolbar--m-sticky--ZIndex);
|
|
332
332
|
padding-block-start: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockStart);
|
|
333
333
|
padding-block-end: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockEnd);
|
|
334
|
+
padding-inline-start: var(--pf-v6-c-toolbar--m-sticky--PaddingInlineStart);
|
|
335
|
+
padding-inline-end: var(--pf-v6-c-toolbar--m-sticky--PaddingInlineEnd);
|
|
334
336
|
border-block-end: var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor);
|
|
337
|
+
border-radius: var(--pf-v6-c-toolbar--m-sticky--BorderRadius);
|
|
335
338
|
box-shadow: var(--pf-v6-c-toolbar--m-sticky--BoxShadow);
|
|
336
339
|
}
|
|
337
340
|
.pf-v6-c-toolbar.pf-m-sticky-base {
|
|
@@ -166,7 +166,10 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
166
166
|
z-index: var(--#{$toolbar}--m-sticky--ZIndex);
|
|
167
167
|
padding-block-start: var(--#{$toolbar}--m-sticky--PaddingBlockStart);
|
|
168
168
|
padding-block-end: var(--#{$toolbar}--m-sticky--PaddingBlockEnd);
|
|
169
|
+
padding-inline-start: var(--#{$toolbar}--m-sticky--PaddingInlineStart);
|
|
170
|
+
padding-inline-end: var(--#{$toolbar}--m-sticky--PaddingInlineEnd);
|
|
169
171
|
border-block-end: var(--#{$toolbar}--m-sticky--BorderBlockEndWidth) solid var(--#{$toolbar}--m-sticky--BorderBlockEndColor);
|
|
172
|
+
border-radius: var(--#{$toolbar}--m-sticky--BorderRadius);
|
|
170
173
|
box-shadow: var(--#{$toolbar}--m-sticky--BoxShadow);
|
|
171
174
|
}
|
|
172
175
|
|
package/components/_index.css
CHANGED
|
@@ -8726,10 +8726,10 @@ ul) {
|
|
|
8726
8726
|
}
|
|
8727
8727
|
|
|
8728
8728
|
.pf-v6-c-hero {
|
|
8729
|
-
--pf-v6-c-hero--PaddingBlockStart: var(--pf-t--global--spacer--
|
|
8730
|
-
--pf-v6-c-hero--PaddingBlockEnd: var(--pf-t--global--spacer--
|
|
8729
|
+
--pf-v6-c-hero--PaddingBlockStart: var(--pf-t--global--spacer--3xl);
|
|
8730
|
+
--pf-v6-c-hero--PaddingBlockEnd: var(--pf-t--global--spacer--3xl);
|
|
8731
8731
|
--pf-v6-c-hero--PaddingInlineStart: var(--pf-t--global--spacer--3xl);
|
|
8732
|
-
--pf-v6-c-hero--PaddingInlineEnd: var(--pf-t--global--spacer--
|
|
8732
|
+
--pf-v6-c-hero--PaddingInlineEnd: var(--pf-t--global--spacer--3xl);
|
|
8733
8733
|
--pf-v6-c-hero--gradient--angle: 109deg;
|
|
8734
8734
|
--pf-v6-c-hero--gradient--stop-1--light: transparent;
|
|
8735
8735
|
--pf-v6-c-hero--gradient--stop-2--light: transparent;
|
|
@@ -8737,8 +8737,7 @@ ul) {
|
|
|
8737
8737
|
--pf-v6-c-hero--gradient--stop-1--dark: transparent;
|
|
8738
8738
|
--pf-v6-c-hero--gradient--stop-2--dark: transparent;
|
|
8739
8739
|
--pf-v6-c-hero--gradient--stop-3--dark: transparent;
|
|
8740
|
-
--pf-v6-c-hero--BackgroundColor: var(--pf-t--global--background--color--
|
|
8741
|
-
--pf-v6-c-hero--BackdropFilter: var(--pf-t--global--background--filter--glass--blur--primary);
|
|
8740
|
+
--pf-v6-c-hero--BackgroundColor: var(--pf-t--global--background--color--tertiary--default);
|
|
8742
8741
|
--pf-v6-c-hero--BackgroundImage--light: none;
|
|
8743
8742
|
--pf-v6-c-hero--BackgroundImage--dark: none;
|
|
8744
8743
|
--pf-v6-c-hero--BackgroundRepeat: no-repeat;
|
|
@@ -8750,14 +8749,16 @@ ul) {
|
|
|
8750
8749
|
--pf-v6-c-hero--BorderInlineStartWidth: var(--pf-t--global--border--width--regular);
|
|
8751
8750
|
--pf-v6-c-hero--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
|
|
8752
8751
|
--pf-v6-c-hero--BorderColor: var(--pf-t--global--border--color--default);
|
|
8753
|
-
--pf-v6-c-hero--
|
|
8754
|
-
--pf-v6-c-hero--
|
|
8755
|
-
--pf-v6-c-hero--
|
|
8756
|
-
--pf-v6-c-hero--
|
|
8757
|
-
--pf-v6-c-hero--BorderEndEndRadius: 24px;
|
|
8758
|
-
--pf-v6-c-hero--BorderEndStartRadius: 72px;
|
|
8752
|
+
--pf-v6-c-hero--BorderStartStartRadius: var(--pf-t--global--border--radius--medium);
|
|
8753
|
+
--pf-v6-c-hero--BorderStartEndRadius: 48px;
|
|
8754
|
+
--pf-v6-c-hero--BorderEndEndRadius: var(--pf-t--global--border--radius--medium);
|
|
8755
|
+
--pf-v6-c-hero--BorderEndStartRadius: 48px;
|
|
8759
8756
|
--pf-v6-c-hero__body--Width: 800px;
|
|
8760
8757
|
--pf-v6-c-hero__body--MaxWidth: 80%;
|
|
8758
|
+
--pf-v6-c-hero--m-glass--BackgroundColor: var(--pf-t--global--background--color--glass--primary--default);
|
|
8759
|
+
--pf-v6-c-hero--m-glass--BackdropFilter: var(--pf-t--global--background--filter--glass--blur--primary);
|
|
8760
|
+
--pf-v6-c-hero--m-glass--BorderColor: var(--pf-t--global--border--color--glass--default);
|
|
8761
|
+
--pf-v6-c-hero--m-glass--BoxShadow: var(--pf-t--global--box-shadow--glass--default);
|
|
8761
8762
|
}
|
|
8762
8763
|
|
|
8763
8764
|
.pf-v6-c-hero {
|
|
@@ -8766,6 +8767,7 @@ ul) {
|
|
|
8766
8767
|
padding-block-end: var(--pf-v6-c-hero--PaddingBlockEnd);
|
|
8767
8768
|
padding-inline-start: var(--pf-v6-c-hero--PaddingInlineStart);
|
|
8768
8769
|
padding-inline-end: var(--pf-v6-c-hero--PaddingInlineEnd);
|
|
8770
|
+
background-color: var(--pf-v6-c-hero--BackgroundColor);
|
|
8769
8771
|
background-image: var(--pf-v6-c-hero--BackgroundImage, var(--pf-v6-c-hero--BackgroundImage--light)), linear-gradient(var(--pf-v6-c-hero--gradient--angle), var(--pf-v6-c-hero--gradient--stop-1, var(--pf-v6-c-hero--gradient--stop-1--light)) 0%, var(--pf-v6-c-hero--gradient--stop-2, var(--pf-v6-c-hero--gradient--stop-2--light)) 50%, var(--pf-v6-c-hero--gradient--stop-3, var(--pf-v6-c-hero--gradient--stop-3--light)) 100%);
|
|
8770
8772
|
background-repeat: var(--pf-v6-c-hero--BackgroundRepeat);
|
|
8771
8773
|
background-position: var(--pf-v6-c-hero--BackgroundPosition);
|
|
@@ -8781,20 +8783,18 @@ ul) {
|
|
|
8781
8783
|
border-end-start-radius: var(--pf-v6-c-hero--BorderEndStartRadius);
|
|
8782
8784
|
border-end-end-radius: var(--pf-v6-c-hero--BorderEndEndRadius);
|
|
8783
8785
|
}
|
|
8786
|
+
:where(.pf-v6-theme-glass) .pf-v6-c-hero.pf-m-glass {
|
|
8787
|
+
--pf-v6-c-hero--BorderColor: var(--pf-v6-c-hero--m-glass--BorderColor);
|
|
8788
|
+
--pf-v6-c-hero--BackgroundColor: var(--pf-v6-c-hero--m-glass--BackgroundColor);
|
|
8789
|
+
backdrop-filter: var(--pf-v6-c-hero--m-glass--BackdropFilter);
|
|
8790
|
+
box-shadow: var(--pf-v6-c-hero--m-glass--BoxShadow);
|
|
8791
|
+
}
|
|
8784
8792
|
:root:where(.pf-v6-theme-dark) .pf-v6-c-hero {
|
|
8785
8793
|
--pf-v6-c-hero--BackgroundImage: var(--pf-v6-c-hero--BackgroundImage--dark);
|
|
8786
8794
|
--pf-v6-c-hero--gradient--stop-1: var(--pf-v6-c-hero--gradient--stop-1--dark);
|
|
8787
8795
|
--pf-v6-c-hero--gradient--stop-2: var(--pf-v6-c-hero--gradient--stop-2--dark);
|
|
8788
8796
|
--pf-v6-c-hero--gradient--stop-3: var(--pf-v6-c-hero--gradient--stop-3--dark);
|
|
8789
8797
|
}
|
|
8790
|
-
:root:where(.pf-v6-theme-glass) .pf-v6-c-hero {
|
|
8791
|
-
--pf-v6-c-hero--BorderColor: var(--pf-v6-c-hero--m-glass--BorderColor);
|
|
8792
|
-
box-shadow: var(--pf-v6-c-hero--m-glass--BoxShadow);
|
|
8793
|
-
}
|
|
8794
|
-
.pf-v6-c-hero:not(.pf-m-no-glass) {
|
|
8795
|
-
background-color: var(--pf-v6-c-hero--BackgroundColor);
|
|
8796
|
-
backdrop-filter: var(--pf-v6-c-hero--BackdropFilter);
|
|
8797
|
-
}
|
|
8798
8798
|
|
|
8799
8799
|
.pf-v6-c-hero__body {
|
|
8800
8800
|
width: min(var(--pf-v6-c-hero__body--Width), var(--pf-v6-c-hero__body--MaxWidth));
|
|
@@ -23059,7 +23059,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
23059
23059
|
z-index: var(--pf-v6-c-toolbar--m-sticky--ZIndex);
|
|
23060
23060
|
padding-block-start: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockStart);
|
|
23061
23061
|
padding-block-end: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockEnd);
|
|
23062
|
+
padding-inline-start: var(--pf-v6-c-toolbar--m-sticky--PaddingInlineStart);
|
|
23063
|
+
padding-inline-end: var(--pf-v6-c-toolbar--m-sticky--PaddingInlineEnd);
|
|
23062
23064
|
border-block-end: var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor);
|
|
23065
|
+
border-radius: var(--pf-v6-c-toolbar--m-sticky--BorderRadius);
|
|
23063
23066
|
box-shadow: var(--pf-v6-c-toolbar--m-sticky--BoxShadow);
|
|
23064
23067
|
}
|
|
23065
23068
|
.pf-v6-c-toolbar.pf-m-sticky-base {
|
|
@@ -26,7 +26,7 @@ cssPrefix: pf-v6-c-card
|
|
|
26
26
|
<div class="pf-v6-c-card__header">
|
|
27
27
|
<div class="pf-v6-c-card__header-main">
|
|
28
28
|
<svg height="70px" viewBox="0 0 679 158">
|
|
29
|
-
<title>
|
|
29
|
+
<title>PatternFly</title>
|
|
30
30
|
<defs>
|
|
31
31
|
<linearGradient
|
|
32
32
|
x1="68%"
|
|
@@ -257,7 +257,7 @@ cssPrefix: pf-v6-c-card
|
|
|
257
257
|
<div class="pf-v6-c-card__header">
|
|
258
258
|
<div class="pf-v6-c-card__header-main">
|
|
259
259
|
<svg height="70px" viewBox="0 0 679 158">
|
|
260
|
-
<title>
|
|
260
|
+
<title>PatternFly</title>
|
|
261
261
|
<defs>
|
|
262
262
|
<linearGradient
|
|
263
263
|
x1="68%"
|
|
@@ -486,7 +486,7 @@ cssPrefix: pf-v6-c-card
|
|
|
486
486
|
<div class="pf-v6-c-card__header">
|
|
487
487
|
<div class="pf-v6-c-card__header-main">
|
|
488
488
|
<svg height="70px" viewBox="0 0 679 158">
|
|
489
|
-
<title>
|
|
489
|
+
<title>PatternFly</title>
|
|
490
490
|
<defs>
|
|
491
491
|
<linearGradient
|
|
492
492
|
x1="68%"
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
#ws-page-main .ws-core-
|
|
1
|
+
#ws-page-main .ws-core-c-compass .pf-v6-c-compass {
|
|
2
2
|
height: 600px;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
#ws-core-
|
|
6
|
-
#ws-core-
|
|
5
|
+
#ws-core-c-compass-basic [class*="pf-v6-c-compass"],
|
|
6
|
+
#ws-core-c-compass-docked [class*="pf-v6-c-compass"] {
|
|
7
7
|
outline: var(--pf-t--global--border--width--regular) dashed var(--pf-t--global--border--color--default);
|
|
8
8
|
}
|
|
@@ -22,4 +22,4 @@ cssPrefix: pf-v6-c-hero
|
|
|
22
22
|
| -- | -- | -- |
|
|
23
23
|
| `.pf-v6-c-hero` | `<div>` | Initiates the hero. **Required** |
|
|
24
24
|
| `.pf-v6-c-hero__body` | `<div>` | Initiates the hero body. |
|
|
25
|
-
| `.pf-m-
|
|
25
|
+
| `.pf-m-glass` | `.pf-v6-c-hero` | Applies glass styles when glass theme is enabled. |
|
|
@@ -36,7 +36,7 @@ cssPrefix: pf-v6-c-masthead
|
|
|
36
36
|
<div class="pf-v6-c-masthead__brand">
|
|
37
37
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
38
38
|
<svg height="37px" viewBox="0 0 679 158">
|
|
39
|
-
<title>
|
|
39
|
+
<title>PatternFly</title>
|
|
40
40
|
<defs>
|
|
41
41
|
<linearGradient
|
|
42
42
|
x1="68%"
|
|
@@ -147,7 +147,7 @@ cssPrefix: pf-v6-c-masthead
|
|
|
147
147
|
<div class="pf-v6-c-masthead__brand">
|
|
148
148
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
149
149
|
<svg height="37px" viewBox="0 0 679 158">
|
|
150
|
-
<title>
|
|
150
|
+
<title>PatternFly</title>
|
|
151
151
|
<defs>
|
|
152
152
|
<linearGradient
|
|
153
153
|
x1="68%"
|
|
@@ -269,7 +269,7 @@ cssPrefix: pf-v6-c-masthead
|
|
|
269
269
|
<div class="pf-v6-c-masthead__brand">
|
|
270
270
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
271
271
|
<svg height="37px" viewBox="0 0 679 158">
|
|
272
|
-
<title>
|
|
272
|
+
<title>PatternFly</title>
|
|
273
273
|
<defs>
|
|
274
274
|
<linearGradient
|
|
275
275
|
x1="68%"
|
|
@@ -380,7 +380,7 @@ cssPrefix: pf-v6-c-masthead
|
|
|
380
380
|
<div class="pf-v6-c-masthead__brand">
|
|
381
381
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
382
382
|
<svg height="37px" viewBox="0 0 679 158">
|
|
383
|
-
<title>
|
|
383
|
+
<title>PatternFly</title>
|
|
384
384
|
<defs>
|
|
385
385
|
<linearGradient
|
|
386
386
|
x1="68%"
|
|
@@ -494,7 +494,7 @@ cssPrefix: pf-v6-c-masthead
|
|
|
494
494
|
<div class="pf-v6-c-masthead__brand">
|
|
495
495
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
496
496
|
<svg height="37px" viewBox="0 0 679 158">
|
|
497
|
-
<title>
|
|
497
|
+
<title>PatternFly</title>
|
|
498
498
|
<defs>
|
|
499
499
|
<linearGradient
|
|
500
500
|
x1="68%"
|
|
@@ -605,7 +605,7 @@ cssPrefix: pf-v6-c-masthead
|
|
|
605
605
|
<div class="pf-v6-c-masthead__brand">
|
|
606
606
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
607
607
|
<svg height="37px" viewBox="0 0 679 158">
|
|
608
|
-
<title>
|
|
608
|
+
<title>PatternFly</title>
|
|
609
609
|
<defs>
|
|
610
610
|
<linearGradient
|
|
611
611
|
x1="68%"
|
|
@@ -690,9 +690,81 @@ cssPrefix: pf-v6-c-masthead
|
|
|
690
690
|
<header class="pf-v6-c-masthead pf-m-docked" id="docked-masthead-example">
|
|
691
691
|
<div class="pf-v6-c-masthead__main">
|
|
692
692
|
<div class="pf-v6-c-masthead__brand">
|
|
693
|
+
<a class="pf-v6-c-masthead__logo" href="#">
|
|
694
|
+
<svg height="37px" viewBox="0 0 679 158">
|
|
695
|
+
<title>PatternFly</title>
|
|
696
|
+
<defs>
|
|
697
|
+
<linearGradient
|
|
698
|
+
x1="68%"
|
|
699
|
+
y1="2.25860997e-13%"
|
|
700
|
+
x2="32%"
|
|
701
|
+
y2="100%"
|
|
702
|
+
id="linearGradient-docked-masthead-example"
|
|
703
|
+
>
|
|
704
|
+
<stop stop-color="#2B9AF3" offset="0%" />
|
|
705
|
+
<stop
|
|
706
|
+
stop-color="#73BCF7"
|
|
707
|
+
stop-opacity="0.502212631"
|
|
708
|
+
offset="100%"
|
|
709
|
+
/>
|
|
710
|
+
</linearGradient>
|
|
711
|
+
</defs>
|
|
712
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
713
|
+
<g
|
|
714
|
+
transform="translate(206.000000, 45.750000)"
|
|
715
|
+
fill="var(--pf-t--global--text--color--regular)"
|
|
716
|
+
fill-rule="nonzero"
|
|
717
|
+
>
|
|
718
|
+
<path
|
|
719
|
+
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"
|
|
720
|
+
/>
|
|
721
|
+
<path
|
|
722
|
+
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"
|
|
723
|
+
/>
|
|
724
|
+
<path
|
|
725
|
+
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"
|
|
726
|
+
/>
|
|
727
|
+
<path
|
|
728
|
+
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"
|
|
729
|
+
/>
|
|
730
|
+
<path
|
|
731
|
+
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"
|
|
732
|
+
/>
|
|
733
|
+
<path
|
|
734
|
+
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"
|
|
735
|
+
/>
|
|
736
|
+
<path
|
|
737
|
+
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"
|
|
738
|
+
/>
|
|
739
|
+
<polygon
|
|
740
|
+
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"
|
|
741
|
+
/>
|
|
742
|
+
<polygon points="399.96 65.25 399.96 2.25 414.54 0 414.54 65.25" />
|
|
743
|
+
<path
|
|
744
|
+
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"
|
|
745
|
+
/>
|
|
746
|
+
</g>
|
|
747
|
+
<g transform="translate(0.000000, 0.000000)">
|
|
748
|
+
<path
|
|
749
|
+
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"
|
|
750
|
+
fill="#0066CC"
|
|
751
|
+
/>
|
|
752
|
+
<path
|
|
753
|
+
d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
|
|
754
|
+
fill="url(#linearGradient-docked-masthead-example)"
|
|
755
|
+
/>
|
|
756
|
+
<path
|
|
757
|
+
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"
|
|
758
|
+
fill="url(#linearGradient-docked-masthead-example)"
|
|
759
|
+
transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
|
|
760
|
+
/>
|
|
761
|
+
</g>
|
|
762
|
+
</g>
|
|
763
|
+
</svg>
|
|
764
|
+
</a>
|
|
693
765
|
<a class="pf-v6-c-masthead__logo pf-m-compact" href="#">
|
|
694
766
|
<svg width="37px" height="37px" viewBox="0 0 158 158">
|
|
695
|
-
<title>
|
|
767
|
+
<title>PatternFly</title>
|
|
696
768
|
<defs>
|
|
697
769
|
<linearGradient
|
|
698
770
|
x1="68%"
|
|
@@ -53,7 +53,7 @@ This demo implements the about modal, including the backdrop.
|
|
|
53
53
|
<div class="pf-v6-c-masthead__brand">
|
|
54
54
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
55
55
|
<svg height="37px" viewBox="0 0 679 158">
|
|
56
|
-
<title>
|
|
56
|
+
<title>PatternFly</title>
|
|
57
57
|
<defs>
|
|
58
58
|
<linearGradient
|
|
59
59
|
x1="68%"
|
|
@@ -51,7 +51,7 @@ section: components
|
|
|
51
51
|
<div class="pf-v6-c-masthead__brand">
|
|
52
52
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
53
53
|
<svg height="37px" viewBox="0 0 679 158">
|
|
54
|
-
<title>
|
|
54
|
+
<title>PatternFly</title>
|
|
55
55
|
<defs>
|
|
56
56
|
<linearGradient
|
|
57
57
|
x1="68%"
|
|
@@ -614,7 +614,7 @@ section: components
|
|
|
614
614
|
<div class="pf-v6-c-masthead__brand">
|
|
615
615
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
616
616
|
<svg height="37px" viewBox="0 0 679 158">
|
|
617
|
-
<title>
|
|
617
|
+
<title>PatternFly</title>
|
|
618
618
|
<defs>
|
|
619
619
|
<linearGradient
|
|
620
620
|
x1="68%"
|
|
@@ -1220,7 +1220,7 @@ section: components
|
|
|
1220
1220
|
<div class="pf-v6-c-masthead__brand">
|
|
1221
1221
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
1222
1222
|
<svg height="37px" viewBox="0 0 679 158">
|
|
1223
|
-
<title>
|
|
1223
|
+
<title>PatternFly</title>
|
|
1224
1224
|
<defs>
|
|
1225
1225
|
<linearGradient
|
|
1226
1226
|
x1="68%"
|
|
@@ -52,7 +52,7 @@ cssPrefix: pf-d-back-to-top
|
|
|
52
52
|
<div class="pf-v6-c-masthead__brand">
|
|
53
53
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
54
54
|
<svg height="37px" viewBox="0 0 679 158">
|
|
55
|
-
<title>
|
|
55
|
+
<title>PatternFly</title>
|
|
56
56
|
<defs>
|
|
57
57
|
<linearGradient
|
|
58
58
|
x1="68%"
|
|
@@ -53,7 +53,7 @@ wrapperTag: div
|
|
|
53
53
|
<div class="pf-v6-c-masthead__brand">
|
|
54
54
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
55
55
|
<svg height="37px" viewBox="0 0 679 158">
|
|
56
|
-
<title>
|
|
56
|
+
<title>PatternFly</title>
|
|
57
57
|
<defs>
|
|
58
58
|
<linearGradient
|
|
59
59
|
x1="68%"
|
|
@@ -628,7 +628,7 @@ wrapperTag: div
|
|
|
628
628
|
<div class="pf-v6-c-masthead__brand">
|
|
629
629
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
630
630
|
<svg height="37px" viewBox="0 0 679 158">
|
|
631
|
-
<title>
|
|
631
|
+
<title>PatternFly</title>
|
|
632
632
|
<defs>
|
|
633
633
|
<linearGradient
|
|
634
634
|
x1="68%"
|
|
@@ -51,7 +51,7 @@ section: patterns
|
|
|
51
51
|
<div class="pf-v6-c-masthead__brand">
|
|
52
52
|
<a class="pf-v6-c-masthead__logo" href="#">
|
|
53
53
|
<svg height="37px" viewBox="0 0 679 158">
|
|
54
|
-
<title>
|
|
54
|
+
<title>PatternFly</title>
|
|
55
55
|
<defs>
|
|
56
56
|
<linearGradient
|
|
57
57
|
x1="68%"
|