@patternfly/patternfly 6.4.0 → 6.5.0-prerelease.10
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/RHAiExperienceIcon.svg +27 -0
- package/assets/images/RHAutomationsLogo.svg +96 -0
- package/assets/images/RHServerStackIcon.svg +16 -0
- package/assets/images/compass--hero-bg.png +0 -0
- package/assets/images/compass--rh-wallpaper-dark.png +0 -0
- package/assets/images/compass--rh-wallpaper-light.png +0 -0
- package/assets/images/compass--wallpaper-dark.png +0 -0
- package/assets/images/compass--wallpaper-light.png +0 -0
- package/base/patternfly-common.css +46 -0
- package/base/patternfly-common.scss +56 -0
- package/components/ActionList/action-list.css +9 -0
- package/components/ActionList/action-list.scss +12 -0
- package/components/Button/button.css +18 -0
- package/components/Button/button.scss +22 -0
- package/components/Card/card.css +6 -0
- package/components/Card/card.scss +8 -0
- package/components/Compass/compass.css +211 -0
- package/components/Compass/compass.scss +276 -0
- package/components/DataList/data-list.css +5 -1
- package/components/DataList/data-list.scss +6 -1
- package/components/Menu/menu.css +1 -1
- package/components/Menu/menu.scss +1 -1
- package/components/MenuToggle/menu-toggle.css +4 -0
- package/components/MenuToggle/menu-toggle.scss +5 -0
- package/components/Panel/panel.css +1 -1
- package/components/Panel/panel.scss +1 -1
- package/components/Spinner/spinner.css +3 -0
- package/components/Spinner/spinner.scss +5 -0
- package/components/Table/table.css +3 -0
- package/components/Table/table.scss +5 -0
- package/components/Tabs/tabs.css +17 -1
- package/components/Tabs/tabs.scss +22 -1
- package/components/_index.css +278 -4
- package/components/_index.scss +1 -0
- package/docs/components/ActionList/examples/ActionList.md +85 -0
- package/docs/components/Button/examples/Button.md +116 -0
- package/docs/components/Card/examples/Card.md +6 -4
- package/docs/components/Compass/examples/Compass.md +4608 -0
- package/docs/components/DataList/examples/DataList.md +181 -185
- package/docs/components/Drawer/examples/Drawer.md +1 -1
- package/docs/components/MenuToggle/examples/MenuToggle.md +40 -0
- package/docs/components/Progress/examples/Progress.md +3 -3
- package/docs/components/Table/examples/Table.md +88 -0
- package/docs/components/Tabs/examples/Tabs.md +188 -0
- package/docs/components/Wizard/examples/Wizard.md +15 -15
- package/docs/demos/Dashboard/examples/Dashboard.md +1 -4
- package/docs/demos/DescriptionList/examples/DescriptionList.md +31 -33
- package/docs/demos/Drawer/examples/Drawer.md +31 -33
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +127 -163
- package/docs/demos/Wizard/examples/Wizard.md +31 -34
- package/package.json +5 -5
- package/patternfly-base-no-globals.css +46 -0
- package/patternfly-base.css +46 -0
- package/patternfly-no-globals.css +324 -4
- package/patternfly.css +324 -4
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/namespaces-components.scss +3 -0
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
.pf-v6-c-compass {
|
|
2
|
+
--pf-v6-c-compass--BackgroundImage: var(--pf-v6-c-compass--BackgroundImage--light);
|
|
3
|
+
--pf-v6-c-compass--BackgroundImage--light: none;
|
|
4
|
+
--pf-v6-c-compass--BackgroundImage--dark: none;
|
|
5
|
+
--pf-v6-c-compass--Padding: var(--pf-t--global--spacer--inset--page-chrome);
|
|
6
|
+
--pf-v6-c-compass--RowGap: var(--pf-t--global--spacer--xl);
|
|
7
|
+
--pf-v6-c-compass--ColumnGap: var(--pf-t--global--spacer--xl);
|
|
8
|
+
--pf-v6-c-compass__nav--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
|
|
9
|
+
--pf-v6-c-compass__sidebar--Padding: var(--pf-t--global--spacer--sm);
|
|
10
|
+
--pf-v6-c-compass__main--RowGap: var(--pf-t--global--spacer--md);
|
|
11
|
+
--pf-v6-c-compass__panel--BackgroundColor--rgb--light: 255,255,255;
|
|
12
|
+
--pf-v6-c-compass__panel--BackgroundColor--opacity--light: .8;
|
|
13
|
+
--pf-v6-c-compass__panel--BackgroundColor--light: rgba(var(--pf-v6-c-compass__panel--BackgroundColor--rgb--light), var(--pf-v6-c-compass__panel--BackgroundColor--opacity--light));
|
|
14
|
+
--pf-v6-c-compass__panel--BackgroundColor--rgb--dark: 0,0,0;
|
|
15
|
+
--pf-v6-c-compass__panel--BackgroundColor--opacity--dark: .8;
|
|
16
|
+
--pf-v6-c-compass__panel--BackgroundColor--dark: rgba(var(--pf-v6-c-compass__panel--BackgroundColor--rgb--dark), var(--pf-v6-c-compass__panel--BackgroundColor--opacity--dark));
|
|
17
|
+
--pf-v6-c-compass__panel--BackdropFilter: var(--pf-v6-c-compass__panel--BackdropFilter--light);
|
|
18
|
+
--pf-v6-c-compass__panel--BackdropFilter--light: blur(75px);
|
|
19
|
+
--pf-v6-c-compass__panel--BackdropFilter--dark: blur(75px);
|
|
20
|
+
--pf-v6-c-compass__panel--BorderRadius: var(--pf-t--global--border--radius--large);
|
|
21
|
+
--pf-v6-c-compass__panel--m-pill--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
22
|
+
--pf-v6-c-compass__panel--Padding: var(--pf-t--global--spacer--inset--page-chrome);
|
|
23
|
+
--pf-v6-c-compass__panel--BorderWidth: var(--pf-t--global--border--width--regular);
|
|
24
|
+
--pf-v6-c-compass__panel--BorderColor: var(--pf-t--global--border--color--alt);
|
|
25
|
+
--pf-v6-c-compass__panel--BoxShadow: var(--pf-t--global--box-shadow--md);
|
|
26
|
+
--pf-v6-c-compass__message-bar--Width: 450px;
|
|
27
|
+
--pf-v6-c-compass__message-bar--MinWidth: 300px;
|
|
28
|
+
--pf-v6-c-compass__message-bar--MaxWidth: 600px;
|
|
29
|
+
--pf-v6-c-compass__hero--gradient--angle: 289deg;
|
|
30
|
+
--pf-v6-c-compass__hero--gradient--stop-1--light: transparent;
|
|
31
|
+
--pf-v6-c-compass__hero--gradient--stop-2--light: transparent;
|
|
32
|
+
--pf-v6-c-compass__hero--gradient--stop-3--light: transparent;
|
|
33
|
+
--pf-v6-c-compass__hero--gradient--stop-1--dark: transparent;
|
|
34
|
+
--pf-v6-c-compass__hero--gradient--stop-2--dark: transparent;
|
|
35
|
+
--pf-v6-c-compass__hero--gradient--stop-3--dark: transparent;
|
|
36
|
+
--pf-v6-c-compass__hero--BackgroundImage--light: none;
|
|
37
|
+
--pf-v6-c-compass__hero--BackgroundImage--dark: none;
|
|
38
|
+
--pf-v6-c-compass__hero-body--Width: 800px;
|
|
39
|
+
--pf-v6-c-compass__hero-body--MaxWidth: 80%;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.pf-v6-c-compass {
|
|
43
|
+
display: grid;
|
|
44
|
+
grid-template-areas: "header header header" "sidebar-start main sidebar-end" "footer footer footer";
|
|
45
|
+
grid-template-rows: auto 1fr auto;
|
|
46
|
+
grid-template-columns: auto 1fr auto;
|
|
47
|
+
gap: var(--pf-v6-c-compass--RowGap) var(--pf-v6-c-compass--ColumnGap);
|
|
48
|
+
align-items: center;
|
|
49
|
+
justify-content: center;
|
|
50
|
+
height: 100dvh;
|
|
51
|
+
padding: var(--pf-v6-c-compass--Padding);
|
|
52
|
+
margin-inline: auto;
|
|
53
|
+
background-image: var(--pf-v6-c-compass--BackgroundImage);
|
|
54
|
+
background-size: cover;
|
|
55
|
+
}
|
|
56
|
+
:root:where(.pf-v6-theme-dark) .pf-v6-c-compass {
|
|
57
|
+
--pf-v6-c-compass--BackgroundImage: var(--pf-v6-c-compass--BackgroundImage--dark);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.pf-v6-c-compass__header {
|
|
61
|
+
display: grid;
|
|
62
|
+
grid-area: header;
|
|
63
|
+
grid-template-columns: 1fr auto 1fr;
|
|
64
|
+
align-items: start;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.pf-v6-c-compass__profile {
|
|
68
|
+
justify-self: end;
|
|
69
|
+
}
|
|
70
|
+
.pf-v6-c-compass__profile .pf-v6-c-menu-toggle.pf-m-plain {
|
|
71
|
+
margin-block-start: calc(var(--pf-v6-c-menu-toggle--PaddingBlockStart) * -1);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.pf-v6-c-compass__nav {
|
|
75
|
+
display: flex;
|
|
76
|
+
flex-direction: column;
|
|
77
|
+
gap: var(--pf-v6-c-compass__nav--RowGap);
|
|
78
|
+
align-items: center;
|
|
79
|
+
justify-self: stretch;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.pf-v6-c-compass__sidebar {
|
|
83
|
+
--pf-v6-c-compass__panel--Padding: var(--pf-v6-c-compass__sidebar--Padding);
|
|
84
|
+
}
|
|
85
|
+
.pf-v6-c-compass__sidebar.pf-m-start {
|
|
86
|
+
grid-area: sidebar-start;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.pf-v6-c-compass__main {
|
|
90
|
+
display: flex;
|
|
91
|
+
flex-direction: column;
|
|
92
|
+
grid-area: main;
|
|
93
|
+
gap: var(--pf-v6-c-compass__main--RowGap);
|
|
94
|
+
align-self: stretch;
|
|
95
|
+
min-height: 0;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.pf-v6-c-compass__content {
|
|
99
|
+
display: flex;
|
|
100
|
+
flex: 1 0 0;
|
|
101
|
+
flex-direction: column;
|
|
102
|
+
min-height: 0;
|
|
103
|
+
overflow: auto;
|
|
104
|
+
}
|
|
105
|
+
.pf-v6-c-compass__content > *:last-child {
|
|
106
|
+
flex-grow: 1;
|
|
107
|
+
max-height: 100%;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.pf-v6-c-compass__sidebar.pf-m-end {
|
|
111
|
+
grid-area: sidebar-end;
|
|
112
|
+
padding: var(--pf-t--global--spacer--sm);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.pf-v6-c-compass__footer {
|
|
116
|
+
display: flex;
|
|
117
|
+
grid-area: footer;
|
|
118
|
+
justify-content: center;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.pf-v6-c-compass__message-bar {
|
|
122
|
+
width: var(--pf-v6-c-compass__message-bar--Width);
|
|
123
|
+
min-width: var(--pf-v6-c-compass__message-bar--MinWidth);
|
|
124
|
+
max-width: var(--pf-v6-c-compass__message-bar--MaxWidth);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.pf-v6-c-compass__panel {
|
|
128
|
+
padding: var(--pf-v6-c-compass__panel--Padding);
|
|
129
|
+
background-color: var(--pf-v6-c-compass__panel--BackgroundColor, var(--pf-v6-c-compass__panel--BackgroundColor--light));
|
|
130
|
+
backdrop-filter: var(--pf-v6-c-compass__panel--BackdropFilter, var(--pf-v6-c-compass__panel--BackdropFilter--light));
|
|
131
|
+
border: var(--pf-v6-c-compass__panel--BorderWidth) solid var(--pf-v6-c-compass__panel--BorderColor);
|
|
132
|
+
border-radius: var(--pf-v6-c-compass__panel--BorderRadius);
|
|
133
|
+
box-shadow: var(--pf-v6-c-compass__panel--BoxShadow);
|
|
134
|
+
}
|
|
135
|
+
:root:where(.pf-v6-theme-dark) .pf-v6-c-compass__panel {
|
|
136
|
+
--pf-v6-c-compass__panel--BackdropFilter: var(--pf-v6-c-compass__panel--BackdropFilter--dark);
|
|
137
|
+
--pf-v6-c-compass__panel--BackgroundColor: var(--pf-v6-c-compass__panel--BackgroundColor--dark);
|
|
138
|
+
}
|
|
139
|
+
.pf-v6-c-compass__panel.pf-m-no-border {
|
|
140
|
+
border-width: 0;
|
|
141
|
+
}
|
|
142
|
+
.pf-v6-c-compass__panel.pf-m-no-padding {
|
|
143
|
+
padding: 0;
|
|
144
|
+
}
|
|
145
|
+
.pf-v6-c-compass__panel.pf-m-full-height {
|
|
146
|
+
height: 100%;
|
|
147
|
+
}
|
|
148
|
+
.pf-v6-c-compass__panel.pf-m-pill {
|
|
149
|
+
border-radius: var(--pf-v6-c-compass__panel--m-pill--BorderRadius);
|
|
150
|
+
}
|
|
151
|
+
.pf-v6-c-compass__panel.pf-m-scrollable {
|
|
152
|
+
overflow: auto;
|
|
153
|
+
}
|
|
154
|
+
.pf-v6-c-compass__panel.pf-m-padding {
|
|
155
|
+
padding: 0;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.pf-v6-c-compass__hero {
|
|
159
|
+
display: flex;
|
|
160
|
+
padding-block-start: 32px;
|
|
161
|
+
padding-block-end: 32px;
|
|
162
|
+
padding-inline-start: 72px;
|
|
163
|
+
padding-inline-end: 0;
|
|
164
|
+
background-image: var(--pf-v6-c-compass__hero--BackgroundImage, var(--pf-v6-c-compass__hero--BackgroundImage--light)), linear-gradient(var(--pf-v6-c-compass__hero--gradient--angle), var(--pf-v6-c-compass__hero--gradient--stop-1, var(--pf-v6-c-compass__hero--gradient--stop-1--light)) 0%, var(--pf-v6-c-compass__hero--gradient--stop-2, var(--pf-v6-c-compass__hero--gradient--stop-2--light)) 50%, var(--pf-v6-c-compass__hero--gradient--stop-3, var(--pf-v6-c-compass__hero--gradient--stop-3--light)) 100%);
|
|
165
|
+
background-repeat: no-repeat;
|
|
166
|
+
background-position: right center;
|
|
167
|
+
background-size: contain;
|
|
168
|
+
border-radius: 24px 72px;
|
|
169
|
+
}
|
|
170
|
+
:root:where(.pf-v6-theme-dark) .pf-v6-c-compass__hero {
|
|
171
|
+
--pf-v6-c-compass__hero--BackgroundImage: var(--pf-v6-c-compass__hero--BackgroundImage--dark);
|
|
172
|
+
--pf-v6-c-compass__hero--gradient--stop-1: var(--pf-v6-c-compass__hero--gradient--stop-1--dark);
|
|
173
|
+
--pf-v6-c-compass__hero--gradient--stop-2: var(--pf-v6-c-compass__hero--gradient--stop-2--dark);
|
|
174
|
+
--pf-v6-c-compass__hero--gradient--stop-3: var(--pf-v6-c-compass__hero--gradient--stop-3--dark);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.pf-v6-c-compass__hero-body {
|
|
178
|
+
width: min(var(--pf-v6-c-compass__hero-body--Width), var(--pf-v6-c-compass__hero-body--MaxWidth));
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
:where(:root.pf-v6-theme-no-glass) .pf-v6-c-compass {
|
|
182
|
+
--pf-v6-c-compass--glass--opacity: 100%;
|
|
183
|
+
--pf-v6-c-compass--glass--border: var(--pf-t--global--border--color--default);
|
|
184
|
+
--pf-v6-c-compass--glass--blend-mode: none;
|
|
185
|
+
--pf-v6-c-compass--glass--blend-mode--dark: none;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/* stylelint-disable */
|
|
189
|
+
@media (max-width: 1200px) {
|
|
190
|
+
.pf-v6-c-compass {
|
|
191
|
+
display: none;
|
|
192
|
+
}
|
|
193
|
+
body {
|
|
194
|
+
display: grid;
|
|
195
|
+
min-height: 100%;
|
|
196
|
+
place-content: center;
|
|
197
|
+
}
|
|
198
|
+
body::after {
|
|
199
|
+
padding: 1em;
|
|
200
|
+
border-radius: var(--pf-t--global--border--radius--large);
|
|
201
|
+
background: var(--pf-t--global--background--color--primary--default);
|
|
202
|
+
content: "This page is optimized for wide screens.\a\aPlease view on a larger display and/or make your browser window wider.";
|
|
203
|
+
width: 80%;
|
|
204
|
+
max-width: 360px;
|
|
205
|
+
border: 1px solid var(--pf-t--global--border--color--default);
|
|
206
|
+
box-shadow: var(--pf-t--global--box-shadow--md);
|
|
207
|
+
white-space: pre-wrap;
|
|
208
|
+
text-align: center;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
/* stylelint-enable */
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
@use '../../sass-utilities' as *;
|
|
2
|
+
|
|
3
|
+
@include pf-root($compass) {
|
|
4
|
+
--#{$compass}--BackgroundImage: var(--#{$compass}--BackgroundImage--light);
|
|
5
|
+
--#{$compass}--BackgroundImage--light: none;
|
|
6
|
+
--#{$compass}--BackgroundImage--dark: none;
|
|
7
|
+
--#{$compass}--Padding: var(--pf-t--global--spacer--inset--page-chrome);
|
|
8
|
+
--#{$compass}--RowGap: var(--pf-t--global--spacer--xl);
|
|
9
|
+
--#{$compass}--ColumnGap: var(--pf-t--global--spacer--xl);
|
|
10
|
+
--#{$compass}__nav--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
|
|
11
|
+
--#{$compass}__sidebar--Padding: var(--pf-t--global--spacer--sm);
|
|
12
|
+
--#{$compass}__main--RowGap: var(--pf-t--global--spacer--md);
|
|
13
|
+
--#{$compass}__panel--BackgroundColor--rgb--light: 255,255,255;
|
|
14
|
+
--#{$compass}__panel--BackgroundColor--opacity--light: .8;
|
|
15
|
+
--#{$compass}__panel--BackgroundColor--light: rgba(var(--#{$compass}__panel--BackgroundColor--rgb--light), var(--#{$compass}__panel--BackgroundColor--opacity--light));
|
|
16
|
+
--#{$compass}__panel--BackgroundColor--rgb--dark: 0,0,0;
|
|
17
|
+
--#{$compass}__panel--BackgroundColor--opacity--dark: .8;
|
|
18
|
+
--#{$compass}__panel--BackgroundColor--dark: rgba(var(--#{$compass}__panel--BackgroundColor--rgb--dark), var(--#{$compass}__panel--BackgroundColor--opacity--dark));
|
|
19
|
+
--#{$compass}__panel--BackdropFilter: var(--#{$compass}__panel--BackdropFilter--light);
|
|
20
|
+
--#{$compass}__panel--BackdropFilter--light: blur(75px);
|
|
21
|
+
--#{$compass}__panel--BackdropFilter--dark: blur(75px);
|
|
22
|
+
--#{$compass}__panel--BorderRadius: var(--pf-t--global--border--radius--large);
|
|
23
|
+
--#{$compass}__panel--m-pill--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
24
|
+
--#{$compass}__panel--Padding: var(--pf-t--global--spacer--inset--page-chrome);
|
|
25
|
+
--#{$compass}__panel--BorderWidth: var(--pf-t--global--border--width--regular);
|
|
26
|
+
--#{$compass}__panel--BorderColor: var(--pf-t--global--border--color--alt);
|
|
27
|
+
--#{$compass}__panel--BoxShadow: var(--pf-t--global--box-shadow--md);
|
|
28
|
+
--#{$compass}__message-bar--Width: 450px;
|
|
29
|
+
--#{$compass}__message-bar--MinWidth: 300px;
|
|
30
|
+
--#{$compass}__message-bar--MaxWidth: 600px;
|
|
31
|
+
--#{$compass}__hero--gradient--angle: 289deg;
|
|
32
|
+
--#{$compass}__hero--gradient--stop-1--light: transparent;
|
|
33
|
+
--#{$compass}__hero--gradient--stop-2--light: transparent;
|
|
34
|
+
--#{$compass}__hero--gradient--stop-3--light: transparent;
|
|
35
|
+
--#{$compass}__hero--gradient--stop-1--dark: transparent; // #000;
|
|
36
|
+
--#{$compass}__hero--gradient--stop-2--dark: transparent; // #1b0d33;
|
|
37
|
+
--#{$compass}__hero--gradient--stop-3--dark: transparent; // #3d2785;
|
|
38
|
+
--#{$compass}__hero--BackgroundImage--light: none; // url("./assets/images/compass--hero-bg.png");
|
|
39
|
+
--#{$compass}__hero--BackgroundImage--dark: none; // url("./assets/images/compass--hero-bg.png");
|
|
40
|
+
--#{$compass}__hero-body--Width: 800px;
|
|
41
|
+
--#{$compass}__hero-body--MaxWidth: 80%;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.#{$compass} {
|
|
45
|
+
display: grid;
|
|
46
|
+
grid-template-areas:
|
|
47
|
+
"header header header"
|
|
48
|
+
"sidebar-start main sidebar-end"
|
|
49
|
+
"footer footer footer";
|
|
50
|
+
grid-template-rows: auto 1fr auto;
|
|
51
|
+
grid-template-columns: auto 1fr auto;
|
|
52
|
+
gap: var(--#{$compass}--RowGap) var(--#{$compass}--ColumnGap);
|
|
53
|
+
align-items: center;
|
|
54
|
+
justify-content: center;
|
|
55
|
+
height: 100dvh;
|
|
56
|
+
padding: var(--#{$compass}--Padding);
|
|
57
|
+
margin-inline: auto;
|
|
58
|
+
background-image: var(--#{$compass}--BackgroundImage);
|
|
59
|
+
background-size: cover;
|
|
60
|
+
|
|
61
|
+
:root:where(.pf-v6-theme-dark) & {
|
|
62
|
+
--#{$compass}--BackgroundImage: var(--#{$compass}--BackgroundImage--dark);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.#{$compass}__header {
|
|
67
|
+
display: grid;
|
|
68
|
+
grid-area: header;
|
|
69
|
+
grid-template-columns: 1fr auto 1fr;
|
|
70
|
+
align-items: start;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.#{$compass}__profile {
|
|
74
|
+
justify-self: end;
|
|
75
|
+
|
|
76
|
+
// improves perceived alignment since it's a plain toggle
|
|
77
|
+
.#{$menu-toggle}.pf-m-plain {
|
|
78
|
+
margin-block-start: calc(var(--#{$menu-toggle}--PaddingBlockStart) * -1);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.#{$compass}__nav {
|
|
83
|
+
display: flex;
|
|
84
|
+
flex-direction: column;
|
|
85
|
+
gap: var(--#{$compass}__nav--RowGap);
|
|
86
|
+
align-items: center;
|
|
87
|
+
justify-self: stretch;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.#{$compass}__sidebar {
|
|
91
|
+
--#{$compass}__panel--Padding: var(--#{$compass}__sidebar--Padding);
|
|
92
|
+
|
|
93
|
+
&.pf-m-start {
|
|
94
|
+
grid-area: sidebar-start;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.#{$compass}__main {
|
|
99
|
+
display: flex;
|
|
100
|
+
flex-direction: column;
|
|
101
|
+
grid-area: main;
|
|
102
|
+
gap: var(--#{$compass}__main--RowGap);
|
|
103
|
+
align-self: stretch;
|
|
104
|
+
min-height: 0;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.#{$compass}__content {
|
|
108
|
+
display: flex;
|
|
109
|
+
flex: 1 0 0;
|
|
110
|
+
flex-direction: column;
|
|
111
|
+
min-height: 0;
|
|
112
|
+
overflow: auto;
|
|
113
|
+
|
|
114
|
+
// mask: linear-gradient(
|
|
115
|
+
// rgba(0, 0, 0, calc(1 - var(--#{$compass}__scroll-top) / 20)),
|
|
116
|
+
// black var(--#{$compass}--feather--length),
|
|
117
|
+
// black calc(100% - var(--#{$compass}--feather--length)),
|
|
118
|
+
// rgba(0, 0, 0, calc(1 - var(--#{$compass}__scroll-bottom) / 20))
|
|
119
|
+
// );
|
|
120
|
+
// backdrop-filter: blur(8px);
|
|
121
|
+
|
|
122
|
+
> *:last-child {
|
|
123
|
+
flex-grow: 1;
|
|
124
|
+
max-height: 100%;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.#{$compass}__sidebar.pf-m-end {
|
|
129
|
+
grid-area: sidebar-end;
|
|
130
|
+
padding: var(--pf-t--global--spacer--sm);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.#{$compass}__footer {
|
|
134
|
+
display: flex;
|
|
135
|
+
grid-area: footer;
|
|
136
|
+
justify-content: center;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.#{$compass}__message-bar {
|
|
140
|
+
width: var(--#{$compass}__message-bar--Width);
|
|
141
|
+
min-width: var(--#{$compass}__message-bar--MinWidth);
|
|
142
|
+
max-width: var(--#{$compass}__message-bar--MaxWidth);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.#{$compass}__panel {
|
|
146
|
+
padding: var(--#{$compass}__panel--Padding);
|
|
147
|
+
background-color: var(--#{$compass}__panel--BackgroundColor, var(--#{$compass}__panel--BackgroundColor--light));
|
|
148
|
+
backdrop-filter: var(--#{$compass}__panel--BackdropFilter, var(--#{$compass}__panel--BackdropFilter--light));
|
|
149
|
+
border: var(--#{$compass}__panel--BorderWidth) solid var(--#{$compass}__panel--BorderColor);
|
|
150
|
+
border-radius: var(--#{$compass}__panel--BorderRadius);
|
|
151
|
+
box-shadow: var(--#{$compass}__panel--BoxShadow);
|
|
152
|
+
|
|
153
|
+
:root:where(.pf-v6-theme-dark) & {
|
|
154
|
+
--#{$compass}__panel--BackdropFilter: var(--#{$compass}__panel--BackdropFilter--dark);
|
|
155
|
+
--#{$compass}__panel--BackgroundColor: var(--#{$compass}__panel--BackgroundColor--dark);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
&.pf-m-no-border {
|
|
159
|
+
border-width: 0;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
&.pf-m-no-padding {
|
|
163
|
+
padding: 0;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
&.pf-m-full-height {
|
|
167
|
+
height: 100%;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
&.pf-m-pill {
|
|
171
|
+
border-radius: var(--#{$compass}__panel--m-pill--BorderRadius);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
&.pf-m-scrollable {
|
|
175
|
+
overflow: auto;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
&.pf-m-padding {
|
|
179
|
+
padding: 0;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.#{$compass}__hero {
|
|
184
|
+
display: flex;
|
|
185
|
+
padding-block-start: 32px;
|
|
186
|
+
padding-block-end: 32px;
|
|
187
|
+
padding-inline-start: 72px;
|
|
188
|
+
padding-inline-end: 0;
|
|
189
|
+
background-image: var(--#{$compass}__hero--BackgroundImage, var(--#{$compass}__hero--BackgroundImage--light)),
|
|
190
|
+
linear-gradient(
|
|
191
|
+
var(--#{$compass}__hero--gradient--angle),
|
|
192
|
+
var(--#{$compass}__hero--gradient--stop-1, var(--#{$compass}__hero--gradient--stop-1--light)) 0%,
|
|
193
|
+
var(--#{$compass}__hero--gradient--stop-2, var(--#{$compass}__hero--gradient--stop-2--light)) 50%,
|
|
194
|
+
var(--#{$compass}__hero--gradient--stop-3, var(--#{$compass}__hero--gradient--stop-3--light)) 100%
|
|
195
|
+
);
|
|
196
|
+
background-repeat: no-repeat;
|
|
197
|
+
background-position: right center;
|
|
198
|
+
background-size: contain;
|
|
199
|
+
border-radius: 24px 72px;
|
|
200
|
+
|
|
201
|
+
:root:where(.pf-v6-theme-dark) & {
|
|
202
|
+
--#{$compass}__hero--BackgroundImage: var(--#{$compass}__hero--BackgroundImage--dark);
|
|
203
|
+
--#{$compass}__hero--gradient--stop-1: var(--#{$compass}__hero--gradient--stop-1--dark);
|
|
204
|
+
--#{$compass}__hero--gradient--stop-2: var(--#{$compass}__hero--gradient--stop-2--dark);
|
|
205
|
+
--#{$compass}__hero--gradient--stop-3: var(--#{$compass}__hero--gradient--stop-3--dark);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.#{$compass}__hero-body {
|
|
210
|
+
width: min(var(--#{$compass}__hero-body--Width), var(--#{$compass}__hero-body--MaxWidth));
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
:where(:root.pf-v6-theme-no-glass) .#{$compass} {
|
|
214
|
+
--#{$compass}--glass--opacity: 100%;
|
|
215
|
+
--#{$compass}--glass--border: var(--pf-t--global--border--color--default);
|
|
216
|
+
--#{$compass}--glass--blend-mode: none;
|
|
217
|
+
--#{$compass}--glass--blend-mode--dark: none;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
:where(.pf-v6-theme-dark) .#{$compass} {
|
|
221
|
+
// dark theme goes here
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
// .pf-chatbot__message-bar {
|
|
225
|
+
// width: 100%;
|
|
226
|
+
// min-width: var(--#{$compass}--message-bar--min-width);
|
|
227
|
+
// max-width: var(--#{$compass}--message-bar--max-width);
|
|
228
|
+
// padding-inline-start: 0px;
|
|
229
|
+
// padding-inline-end: 0.8em;
|
|
230
|
+
// background: transparent;
|
|
231
|
+
// border: 0;
|
|
232
|
+
|
|
233
|
+
// &:hover,
|
|
234
|
+
// &:focus-within {
|
|
235
|
+
// box-shadow: var(--pf-t--global--box-shadow--md);
|
|
236
|
+
// }
|
|
237
|
+
|
|
238
|
+
// .pf-chatbot__button--send.pf-m-compact {
|
|
239
|
+
// width: auto;
|
|
240
|
+
// height: auto;
|
|
241
|
+
// padding: var(--pf-v6-c-button--m-small--PaddingBlockStart) var(--pf-v6-c-button--m-small--PaddingInlineEnd)
|
|
242
|
+
// var(--pf-v6-c-button--m-small--PaddingBlockEnd) var(--pf-v6-c-button--m-small--PaddingInlineStart);
|
|
243
|
+
|
|
244
|
+
// .pf-v6-c-button__icon {
|
|
245
|
+
// min-width: 1lh;
|
|
246
|
+
// }
|
|
247
|
+
// }
|
|
248
|
+
// }
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
/* stylelint-disable */
|
|
253
|
+
@media (max-width: 1200px) {
|
|
254
|
+
.#{$compass} {
|
|
255
|
+
display: none;
|
|
256
|
+
}
|
|
257
|
+
body {
|
|
258
|
+
display: grid;
|
|
259
|
+
min-height: 100%;
|
|
260
|
+
place-content: center;
|
|
261
|
+
|
|
262
|
+
&::after {
|
|
263
|
+
padding: 1em;
|
|
264
|
+
border-radius: var(--pf-t--global--border--radius--large);
|
|
265
|
+
background: var(--pf-t--global--background--color--primary--default);
|
|
266
|
+
content: "This page is optimized for wide screens.\a\a Please view on a larger display and/or make your browser window wider.";
|
|
267
|
+
width: 80%;
|
|
268
|
+
max-width: 360px;
|
|
269
|
+
border: 1px solid var(--pf-t--global--border--color--default);
|
|
270
|
+
box-shadow: var(--pf-t--global--box-shadow--md);
|
|
271
|
+
white-space: pre-wrap;
|
|
272
|
+
text-align: center;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
/* stylelint-enable */
|
|
@@ -412,7 +412,8 @@
|
|
|
412
412
|
--pf-v6-c-data-list--sm--BorderBlockStartWidth: var(--pf-t--global--border--width--divider--default);
|
|
413
413
|
--pf-v6-c-data-list--sm--BorderBlockStartColor: var(--pf-t--global--border--color--default);
|
|
414
414
|
--pf-v6-c-data-list--MarginInlineStart: var(--pf-t--global--spacer--md);
|
|
415
|
-
--pf-v6-c-data-list__item--BackgroundColor: var(
|
|
415
|
+
--pf-v6-c-data-list__item--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
416
|
+
--pf-v6-c-data-list--pf-m-plain__item--BackgroundColor: transparent;
|
|
416
417
|
--pf-v6-c-data-list__item--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
|
|
417
418
|
--pf-v6-c-data-list__item--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
|
|
418
419
|
--pf-v6-c-data-list__item--m-clickable--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
@@ -567,6 +568,9 @@
|
|
|
567
568
|
.pf-v6-c-data-list.pf-m-drag-over {
|
|
568
569
|
overflow-anchor: none;
|
|
569
570
|
}
|
|
571
|
+
.pf-v6-c-data-list.pf-m-plain {
|
|
572
|
+
--pf-v6-c-data-list__item--BackgroundColor: var(--pf-v6-c-data-list--pf-m-plain__item--BackgroundColor);
|
|
573
|
+
}
|
|
570
574
|
|
|
571
575
|
.pf-v6-c-data-list.pf-m-truncate,
|
|
572
576
|
.pf-v6-c-data-list__item-row.pf-m-truncate,
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
// item
|
|
19
|
-
--#{$data-list}__item--BackgroundColor: var(
|
|
19
|
+
--#{$data-list}__item--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
20
|
+
--#{$data-list}--pf-m-plain__item--BackgroundColor: transparent;
|
|
20
21
|
--#{$data-list}__item--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
|
|
21
22
|
--#{$data-list}__item--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
|
|
22
23
|
--#{$data-list}__item--m-clickable--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
@@ -189,6 +190,10 @@
|
|
|
189
190
|
&.pf-m-drag-over {
|
|
190
191
|
overflow-anchor: none;
|
|
191
192
|
}
|
|
193
|
+
|
|
194
|
+
&.pf-m-plain {
|
|
195
|
+
--#{$data-list}__item--BackgroundColor: var(--#{$data-list}--pf-m-plain__item--BackgroundColor);
|
|
196
|
+
}
|
|
192
197
|
}
|
|
193
198
|
|
|
194
199
|
.#{$data-list},
|
package/components/Menu/menu.css
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
--pf-v6-c-menu__footer--BoxShadow: none;
|
|
29
29
|
--pf-v6-c-menu__footer--BorderColor: transparent;
|
|
30
30
|
--pf-v6-c-menu__footer--BorderWidth: 0;
|
|
31
|
-
--pf-v6-c-menu--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--
|
|
31
|
+
--pf-v6-c-menu--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
|
|
32
32
|
--pf-v6-c-menu--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
33
33
|
--pf-v6-c-menu--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
34
34
|
--pf-v6-c-menu__list-item--Color: var(--pf-t--global--text--color--regular);
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
--#{$menu}__footer--BoxShadow: none;
|
|
44
44
|
--#{$menu}__footer--BorderColor: transparent;
|
|
45
45
|
--#{$menu}__footer--BorderWidth: 0;
|
|
46
|
-
--#{$menu}--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--
|
|
46
|
+
--#{$menu}--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
|
|
47
47
|
--#{$menu}--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
48
48
|
--#{$menu}--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
49
49
|
|
|
@@ -123,6 +123,7 @@
|
|
|
123
123
|
--pf-v6-c-menu-toggle--m-plain--disabled--BackgroundColor: transparent;
|
|
124
124
|
--pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--plain--compact);
|
|
125
125
|
--pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--plain--compact);
|
|
126
|
+
--pf-v6-c-menu-toggle--m-plain--m-circle--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
126
127
|
--pf-v6-c-menu-toggle--m-typeahead__button--AlignSelf: stretch;
|
|
127
128
|
--pf-v6-c-menu-toggle--m-small--PaddingBlockStart: var(--pf-t--global--spacer--control--vertical--compact);
|
|
128
129
|
--pf-v6-c-menu-toggle--m-small--PaddingBlockEnd: var(--pf-t--global--spacer--control--vertical--compact);
|
|
@@ -251,6 +252,9 @@
|
|
|
251
252
|
--pf-v6-c-menu-toggle--m-small--PaddingInlineStart: var(--pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineStart);
|
|
252
253
|
--pf-v6-c-menu-toggle--m-small--PaddingInlineEnd: var(--pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineEnd);
|
|
253
254
|
}
|
|
255
|
+
.pf-v6-c-menu-toggle.pf-m-plain.pf-m-circle {
|
|
256
|
+
--pf-v6-c-menu-toggle--BorderRadius: var(--pf-v6-c-menu-toggle--m-plain--m-circle--BorderRadius);
|
|
257
|
+
}
|
|
254
258
|
.pf-v6-c-menu-toggle.pf-m-plain::before {
|
|
255
259
|
--pf-v6-c-menu-toggle--BorderWidth: var(--pf-v6-c-menu-toggle--m-plain--BorderWidth);
|
|
256
260
|
--pf-v6-c-menu-toggle--BorderColor: var(--pf-v6-c-menu-toggle--m-plain--BorderColor);
|
|
@@ -151,6 +151,7 @@
|
|
|
151
151
|
--#{$menu-toggle}--m-plain--disabled--BackgroundColor: transparent;
|
|
152
152
|
--#{$menu-toggle}--m-plain--m-small--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--plain--compact);
|
|
153
153
|
--#{$menu-toggle}--m-plain--m-small--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--plain--compact);
|
|
154
|
+
--#{$menu-toggle}--m-plain--m-circle--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
154
155
|
|
|
155
156
|
// Typeahead
|
|
156
157
|
--#{$menu-toggle}--m-typeahead__button--AlignSelf: stretch;
|
|
@@ -307,6 +308,10 @@
|
|
|
307
308
|
--#{$menu-toggle}--m-small--PaddingInlineStart: var(--#{$menu-toggle}--m-plain--m-small--PaddingInlineStart);
|
|
308
309
|
--#{$menu-toggle}--m-small--PaddingInlineEnd: var(--#{$menu-toggle}--m-plain--m-small--PaddingInlineEnd);
|
|
309
310
|
|
|
311
|
+
&.pf-m-circle {
|
|
312
|
+
--#{$menu-toggle}--BorderRadius: var(--#{$menu-toggle}--m-plain--m-circle--BorderRadius);
|
|
313
|
+
}
|
|
314
|
+
|
|
310
315
|
&::before {
|
|
311
316
|
--#{$menu-toggle}--BorderWidth: var(--#{$menu-toggle}--m-plain--BorderWidth);
|
|
312
317
|
--#{$menu-toggle}--BorderColor: var(--#{$menu-toggle}--m-plain--BorderColor);
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
--pf-v6-c-panel__footer--BorderWidth: 0;
|
|
34
34
|
--pf-v6-c-panel--m-scrollable__main--MaxHeight: 18.75rem;
|
|
35
35
|
--pf-v6-c-panel--m-scrollable__main--Overflow: auto;
|
|
36
|
-
--pf-v6-c-panel--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--
|
|
36
|
+
--pf-v6-c-panel--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
|
|
37
37
|
--pf-v6-c-panel--m-scrollable__footer--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
38
38
|
--pf-v6-c-panel--m-scrollable__footer--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
39
39
|
--pf-v6-c-panel--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
// scrollable
|
|
54
54
|
--#{$panel}--m-scrollable__main--MaxHeight: #{pf-size-prem(300px)};
|
|
55
55
|
--#{$panel}--m-scrollable__main--Overflow: auto;
|
|
56
|
-
--#{$panel}--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--
|
|
56
|
+
--#{$panel}--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
|
|
57
57
|
--#{$panel}--m-scrollable__footer--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
58
58
|
--#{$panel}--m-scrollable__footer--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
59
59
|
--#{$panel}--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
@@ -55,6 +55,11 @@
|
|
|
55
55
|
&.pf-m-xl {
|
|
56
56
|
--#{$spinner}--diameter: var(--#{$spinner}--m-xl--diameter);
|
|
57
57
|
}
|
|
58
|
+
|
|
59
|
+
// Disable animations when no-motion modifier is applied
|
|
60
|
+
.#{$pf-prefix}m-no-motion & {
|
|
61
|
+
--#{$spinner}--AnimationDuration: 0s;
|
|
62
|
+
}
|
|
58
63
|
}
|
|
59
64
|
|
|
60
65
|
.#{$spinner}__path {
|
|
@@ -207,6 +207,9 @@
|
|
|
207
207
|
.pf-v6-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:where(.pf-v6-c-table__tr):not(:last-child) td:where(.pf-v6-c-table__td):not([rowspan]) {
|
|
208
208
|
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table__thead--m-nested-column-header__tr--PaddingBlockEnd);
|
|
209
209
|
}
|
|
210
|
+
.pf-v6-c-table.pf-m-plain {
|
|
211
|
+
--pf-v6-c-table--BackgroundColor: transparent;
|
|
212
|
+
}
|
|
210
213
|
.pf-v6-c-table.pf-m-striped:not(.pf-m-expandable) > tbody:where(.pf-v6-c-table__tbody) > tr:where(.pf-v6-c-table__tr):nth-child(odd), .pf-v6-c-table.pf-m-striped.pf-m-expandable > tbody:where(.pf-v6-c-table__tbody):nth-of-type(odd) > tr:where(.pf-v6-c-table__tr),
|
|
211
214
|
.pf-v6-c-table > .pf-m-striped > tr:nth-child(odd),
|
|
212
215
|
.pf-v6-c-table > .pf-m-striped-even > tr:nth-child(even),
|
|
@@ -324,6 +324,11 @@
|
|
|
324
324
|
}
|
|
325
325
|
}
|
|
326
326
|
|
|
327
|
+
// - Table plain
|
|
328
|
+
&.pf-m-plain {
|
|
329
|
+
--#{$table}--BackgroundColor: transparent;
|
|
330
|
+
}
|
|
331
|
+
|
|
327
332
|
// - Table striped
|
|
328
333
|
// stylelint-disable
|
|
329
334
|
&.pf-m-striped:not(.pf-m-expandable) > tbody:where(.#{$table}__tbody) > tr:where(.#{$table}__tr):nth-child(odd), // regular table
|