@patternfly/patternfly 6.5.0-prerelease.66 → 6.5.0-prerelease.67
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/Accordion/accordion.css +1 -2
- package/components/Accordion/accordion.scss +2 -2
- package/components/DataList/data-list.css +1 -1
- package/components/DataList/data-list.scss +2 -2
- package/components/Drawer/drawer.css +3 -5
- package/components/Drawer/drawer.scss +7 -9
- package/components/Page/page.css +11 -11
- package/components/Page/page.scss +2 -2
- package/components/Table/table.css +1 -2
- package/components/Table/table.scss +2 -2
- package/components/Wizard/wizard.css +2 -2
- package/components/Wizard/wizard.scss +4 -4
- package/components/_index.css +19 -23
- package/docs/components/ActionList/examples/ActionList.md +2 -2
- package/docs/components/Alert/examples/Alert.md +4 -4
- package/docs/components/Button/examples/Button.md +1 -1
- package/docs/components/Icon/examples/Icon.md +13 -1
- package/docs/components/Menu/examples/Menu.md +26 -2
- package/docs/components/MenuToggle/examples/MenuToggle.md +172 -64
- package/docs/components/Toolbar/examples/Toolbar.md +67 -7
- package/docs/components/TreeView/examples/TreeView.md +4 -4
- package/docs/components/Wizard/examples/Wizard.md +1 -1
- package/docs/demos/AboutModal/examples/AboutModal.md +23 -15
- package/docs/demos/Alert/examples/Alert.md +69 -45
- package/docs/demos/BackToTop/examples/BackToTop.md +23 -15
- package/docs/demos/Banner/examples/Banner.md +46 -30
- package/docs/demos/CardView/examples/CardView.md +36 -16
- package/docs/demos/Compass/examples/Compass.md +76 -19
- package/docs/demos/Dashboard/examples/Dashboard.md +23 -15
- package/docs/demos/DataList/examples/DataList.md +157 -65
- package/docs/demos/DescriptionList/examples/DescriptionList.md +69 -45
- package/docs/demos/Drawer/examples/Drawer.md +115 -75
- package/docs/demos/JumpLinks/examples/JumpLinks.md +138 -90
- package/docs/demos/Masthead/examples/Masthead.md +101 -21
- package/docs/demos/Modal/examples/Modal.md +138 -90
- package/docs/demos/Nav/examples/Nav.md +188 -120
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +115 -75
- package/docs/demos/Page/examples/Page.md +361 -213
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +265 -113
- package/docs/demos/Skeleton/examples/Skeleton.md +23 -15
- package/docs/demos/Table/examples/Table.md +711 -271
- package/docs/demos/Tabs/examples/Tabs.md +151 -91
- package/docs/demos/Toolbar/examples/Toolbar.md +124 -36
- package/docs/demos/Wizard/examples/Wizard.md +207 -135
- package/package.json +1 -1
- package/patternfly-no-globals.css +19 -23
- package/patternfly.css +19 -23
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -104,13 +104,12 @@
|
|
|
104
104
|
row-gap: var(--pf-v6-c-accordion--RowGap);
|
|
105
105
|
background-color: var(--pf-v6-c-accordion--BackgroundColor);
|
|
106
106
|
}
|
|
107
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-accordion
|
|
107
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-accordion.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-accordion:not(.pf-m-no-plain-on-glass) {
|
|
108
108
|
--pf-v6-c-accordion--BackgroundColor: transparent;
|
|
109
109
|
--pf-v6-c-accordion__expandable-content--BackgroundColor: transparent;
|
|
110
110
|
--pf-v6-c-accordion__item--m-expanded--BackgroundColor: transparent;
|
|
111
111
|
--pf-v6-c-accordion__item--m-expanded__toggle--BackgroundColor: var(--pf-v6-c-accordion--m-plain__item--m-expanded__toggle--BackgroundColor);
|
|
112
112
|
}
|
|
113
|
-
|
|
114
113
|
.pf-v6-c-accordion.pf-m-toggle-start {
|
|
115
114
|
--pf-v6-c-accordion__toggle--ColumnGap: var(--pf-v6-c-accordion--m-toggle-start__toggle--ColumnGap);
|
|
116
115
|
}
|
|
@@ -129,8 +129,8 @@
|
|
|
129
129
|
row-gap: var(--#{$accordion}--RowGap);
|
|
130
130
|
background-color: var(--#{$accordion}--BackgroundColor);
|
|
131
131
|
|
|
132
|
-
|
|
133
|
-
|
|
132
|
+
:where(:root:not(.pf-v6-theme-glass)) &.pf-m-plain,
|
|
133
|
+
:where(:root.pf-v6-theme-glass) &:not(.pf-m-no-plain-on-glass) {
|
|
134
134
|
--#{$accordion}--BackgroundColor: transparent;
|
|
135
135
|
--#{$accordion}__expandable-content--BackgroundColor: transparent;
|
|
136
136
|
--#{$accordion}__item--m-expanded--BackgroundColor: transparent;
|
|
@@ -572,7 +572,7 @@
|
|
|
572
572
|
.pf-v6-c-data-list.pf-m-drag-over {
|
|
573
573
|
overflow-anchor: none;
|
|
574
574
|
}
|
|
575
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-data-list
|
|
575
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-data-list.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-data-list:not(.pf-m-no-plain-on-glass) {
|
|
576
576
|
--pf-v6-c-data-list__item--BackgroundColor: var(--pf-v6-c-data-list--pf-m-plain__item--BackgroundColor);
|
|
577
577
|
}
|
|
578
578
|
|
|
@@ -191,8 +191,8 @@
|
|
|
191
191
|
overflow-anchor: none;
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
-
|
|
195
|
-
|
|
194
|
+
:where(:root:not(.pf-v6-theme-glass)) &.pf-m-plain,
|
|
195
|
+
:where(:root.pf-v6-theme-glass) &:not(.pf-m-no-plain-on-glass) {
|
|
196
196
|
--#{$data-list}__item--BackgroundColor: var(--#{$data-list}--pf-m-plain__item--BackgroundColor);
|
|
197
197
|
}
|
|
198
198
|
}
|
|
@@ -226,11 +226,9 @@
|
|
|
226
226
|
.pf-v6-c-drawer.pf-m-inline > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-border, .pf-m-resizable), .pf-v6-c-drawer.pf-m-static > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-border, .pf-m-resizable) {
|
|
227
227
|
padding-inline-start: var(--pf-v6-c-drawer--m-inline__panel--PaddingInlineStart);
|
|
228
228
|
}
|
|
229
|
-
.pf-v6-c-drawer.pf-m-inline.pf-m-glass, .pf-v6-c-drawer.pf-m-static.pf-m-glass {
|
|
229
|
+
.pf-v6-c-drawer.pf-m-inline > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-glass, .pf-v6-c-drawer.pf-m-static > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-glass {
|
|
230
230
|
--pf-v6-c-drawer__panel--BackgroundColor: var(--pf-v6-c-drawer__panel--m-glass--BackgroundColor);
|
|
231
231
|
--pf-v6-c-drawer__panel--BorderColor: var(--pf-v6-c-drawer__panel--m-glass--BorderColor);
|
|
232
|
-
}
|
|
233
|
-
.pf-v6-c-drawer.pf-m-inline.pf-m-glass > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel, .pf-v6-c-drawer.pf-m-static.pf-m-glass > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
|
234
232
|
backdrop-filter: var(--pf-v6-c-drawer__panel--m-glass--BackdropFilter);
|
|
235
233
|
}
|
|
236
234
|
.pf-v6-c-drawer.pf-m-panel-left > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
|
@@ -563,8 +561,8 @@
|
|
|
563
561
|
--pf-v6-c-drawer--m-inline__panel--after--Width: var(--pf-v6-c-drawer--m-inline__panel--after--md--Width);
|
|
564
562
|
min-width: var(--pf-v6-c-drawer__panel--MinWidth);
|
|
565
563
|
}
|
|
566
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-drawer.pf-m-inline
|
|
567
|
-
|
|
564
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-drawer.pf-m-inline > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-drawer.pf-m-inline > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-plain-on-glass), :where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-drawer.pf-m-static > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-drawer.pf-m-static > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-plain-on-glass) {
|
|
565
|
+
--pf-v6-c-drawer__panel--BackgroundColor: transparent;
|
|
568
566
|
}
|
|
569
567
|
.pf-v6-c-drawer > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
|
570
568
|
box-shadow: var(--pf-v6-c-drawer--m-expanded__panel--BoxShadow);
|
|
@@ -261,13 +261,11 @@ $pf-v6-c-drawer__panel--list--width: (25, 33, 50, 66, 75, 100);
|
|
|
261
261
|
padding-inline-start: var(--#{$drawer}--m-inline__panel--PaddingInlineStart);
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
-
|
|
264
|
+
> .#{$drawer}__main > .#{$drawer}__panel.pf-m-glass {
|
|
265
265
|
--#{$drawer}__panel--BackgroundColor: var(--#{$drawer}__panel--m-glass--BackgroundColor);
|
|
266
266
|
--#{$drawer}__panel--BorderColor: var(--#{$drawer}__panel--m-glass--BorderColor);
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
backdrop-filter: var(--#{$drawer}__panel--m-glass--BackdropFilter);
|
|
270
|
-
}
|
|
267
|
+
|
|
268
|
+
backdrop-filter: var(--#{$drawer}__panel--m-glass--BackdropFilter);
|
|
271
269
|
}
|
|
272
270
|
}
|
|
273
271
|
|
|
@@ -659,10 +657,10 @@ $pf-v6-c-drawer__panel--list--width: (25, 33, 50, 66, 75, 100);
|
|
|
659
657
|
|
|
660
658
|
&.pf-m-inline,
|
|
661
659
|
&.pf-m-static {
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
660
|
+
> .#{$drawer}__main > .#{$drawer}__panel {
|
|
661
|
+
@at-root :where(:root:not(.pf-v6-theme-glass)) &.pf-m-plain,
|
|
662
|
+
:where(:root.pf-v6-theme-glass) &:not(.pf-m-no-plain-on-glass) {
|
|
663
|
+
--#{$drawer}__panel--BackgroundColor: transparent;
|
|
666
664
|
}
|
|
667
665
|
}
|
|
668
666
|
}
|
package/components/Page/page.css
CHANGED
|
@@ -773,17 +773,17 @@
|
|
|
773
773
|
outline: 0;
|
|
774
774
|
}
|
|
775
775
|
|
|
776
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-subnav
|
|
777
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-breadcrumb
|
|
778
|
-
.pf-v6-c-page__main-breadcrumb.pf-m-plain,
|
|
779
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-tabs
|
|
780
|
-
.pf-v6-c-page__main-tabs.pf-m-plain,
|
|
781
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-section
|
|
782
|
-
.pf-v6-c-page__main-section.pf-m-plain,
|
|
783
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-wizard
|
|
784
|
-
.pf-v6-c-page__main-wizard.pf-m-plain,
|
|
785
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-group
|
|
786
|
-
.pf-v6-c-page__main-group.pf-m-plain {
|
|
776
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-subnav.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-subnav:not(.pf-m-no-plain-on-glass),
|
|
777
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-breadcrumb.pf-m-plain,
|
|
778
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-breadcrumb:not(.pf-m-no-plain-on-glass),
|
|
779
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-tabs.pf-m-plain,
|
|
780
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-tabs:not(.pf-m-no-plain-on-glass),
|
|
781
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-section.pf-m-plain,
|
|
782
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-section:not(.pf-m-no-plain-on-glass),
|
|
783
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-wizard.pf-m-plain,
|
|
784
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-wizard:not(.pf-m-no-plain-on-glass),
|
|
785
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-group.pf-m-plain,
|
|
786
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-group:not(.pf-m-no-plain-on-glass) {
|
|
787
787
|
--pf-v6-c-page__main-section--BackgroundColor: transparent;
|
|
788
788
|
--pf-v6-c-page__main-subnav--BackgroundColor: transparent;
|
|
789
789
|
--pf-v6-c-page__main-breadcrumb--BackgroundColor: transparent;
|
|
@@ -704,8 +704,8 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
704
704
|
.#{$page}__main-section,
|
|
705
705
|
.#{$page}__main-wizard,
|
|
706
706
|
.#{$page}__main-group {
|
|
707
|
-
|
|
708
|
-
|
|
707
|
+
:where(:root:not(.pf-v6-theme-glass)) &.pf-m-plain,
|
|
708
|
+
:where(:root.pf-v6-theme-glass) &:not(.pf-m-no-plain-on-glass) {
|
|
709
709
|
--#{$page}__main-section--BackgroundColor: transparent;
|
|
710
710
|
--#{$page}__main-subnav--BackgroundColor: transparent;
|
|
711
711
|
--#{$page}__main-breadcrumb--BackgroundColor: transparent;
|
|
@@ -186,14 +186,13 @@
|
|
|
186
186
|
width: 100%;
|
|
187
187
|
background-color: var(--pf-v6-c-table--BackgroundColor);
|
|
188
188
|
}
|
|
189
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-table
|
|
189
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-table.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-table:not(.pf-m-no-plain-on-glass) {
|
|
190
190
|
--pf-v6-c-table--BackgroundColor: transparent;
|
|
191
191
|
--pf-v6-c-table__expandable-row-content--BackgroundColor: transparent;
|
|
192
192
|
--pf-v6-c-table__expandable-row-content--PaddingInlineStart: 0;
|
|
193
193
|
--pf-v6-c-table__expandable-row-content--PaddingInlineEnd: 0;
|
|
194
194
|
--pf-v6-c-table__control-row--BackgroundColor: transparent;
|
|
195
195
|
}
|
|
196
|
-
|
|
197
196
|
.pf-v6-c-table.pf-m-fixed {
|
|
198
197
|
table-layout: fixed;
|
|
199
198
|
}
|
|
@@ -284,8 +284,8 @@
|
|
|
284
284
|
width: 100%;
|
|
285
285
|
background-color: var(--#{$table}--BackgroundColor);
|
|
286
286
|
|
|
287
|
-
|
|
288
|
-
|
|
287
|
+
:where(:root:not(.pf-v6-theme-glass)) &.pf-m-plain,
|
|
288
|
+
:where(:root.pf-v6-theme-glass) &:not(.pf-m-no-plain-on-glass) {
|
|
289
289
|
--#{$table}--BackgroundColor: transparent;
|
|
290
290
|
--#{$table}__expandable-row-content--BackgroundColor: transparent;
|
|
291
291
|
--#{$table}__expandable-row-content--PaddingInlineStart: 0;
|
|
@@ -163,14 +163,14 @@
|
|
|
163
163
|
.pf-v6-c-wizard.pf-m-finished .pf-v6-c-wizard__toggle {
|
|
164
164
|
display: none;
|
|
165
165
|
}
|
|
166
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-wizard
|
|
166
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-wizard.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-wizard:not(.pf-m-no-plain-on-glass) {
|
|
167
167
|
--pf-v6-c-wizard__header--BackgroundColor: var(--pf-v6-c-wizard--m-plain__header--BackgroundColor);
|
|
168
168
|
--pf-v6-c-wizard__toggle--BackgroundColor: var(--pf-v6-c-wizard--m-plain__toggle--BackgroundColor);
|
|
169
169
|
--pf-v6-c-wizard__outer-wrap--BackgroundColor: var(--pf-v6-c-wizard--m-plain__outer-wrap--BackgroundColor);
|
|
170
170
|
--pf-v6-c-wizard__footer--BackgroundColor: var(--pf-v6-c-wizard--m-plain__footer--BackgroundColor);
|
|
171
171
|
}
|
|
172
172
|
@media screen and (min-width: 62rem) {
|
|
173
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-wizard
|
|
173
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-wizard.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-wizard:not(.pf-m-no-plain-on-glass) {
|
|
174
174
|
--pf-v6-c-wizard__nav--BackgroundColor: var(--pf-v6-c-wizard--m-plain__nav--BackgroundColor);
|
|
175
175
|
}
|
|
176
176
|
}
|
|
@@ -224,15 +224,15 @@
|
|
|
224
224
|
}
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
:where(:root:not(.pf-v6-theme-glass)) &.pf-m-plain,
|
|
228
|
+
:where(:root.pf-v6-theme-glass) &:not(.pf-m-no-plain-on-glass) {
|
|
229
229
|
--#{$wizard}__header--BackgroundColor: var(--#{$wizard}--m-plain__header--BackgroundColor);
|
|
230
230
|
--#{$wizard}__toggle--BackgroundColor: var(--#{$wizard}--m-plain__toggle--BackgroundColor);
|
|
231
231
|
--#{$wizard}__outer-wrap--BackgroundColor: var(--#{$wizard}--m-plain__outer-wrap--BackgroundColor);
|
|
232
232
|
--#{$wizard}__footer--BackgroundColor: var(--#{$wizard}--m-plain__footer--BackgroundColor);
|
|
233
|
-
|
|
233
|
+
|
|
234
234
|
@media screen and (min-width: $pf-v6-global--breakpoint--lg) {
|
|
235
|
-
--#{$wizard}__nav--BackgroundColor: var(--#{$wizard}--m-plain__nav--BackgroundColor);
|
|
235
|
+
--#{$wizard}__nav--BackgroundColor: var(--#{$wizard}--m-plain__nav--BackgroundColor);
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
238
|
}
|
package/components/_index.css
CHANGED
|
@@ -306,13 +306,12 @@
|
|
|
306
306
|
row-gap: var(--pf-v6-c-accordion--RowGap);
|
|
307
307
|
background-color: var(--pf-v6-c-accordion--BackgroundColor);
|
|
308
308
|
}
|
|
309
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-accordion
|
|
309
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-accordion.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-accordion:not(.pf-m-no-plain-on-glass) {
|
|
310
310
|
--pf-v6-c-accordion--BackgroundColor: transparent;
|
|
311
311
|
--pf-v6-c-accordion__expandable-content--BackgroundColor: transparent;
|
|
312
312
|
--pf-v6-c-accordion__item--m-expanded--BackgroundColor: transparent;
|
|
313
313
|
--pf-v6-c-accordion__item--m-expanded__toggle--BackgroundColor: var(--pf-v6-c-accordion--m-plain__item--m-expanded__toggle--BackgroundColor);
|
|
314
314
|
}
|
|
315
|
-
|
|
316
315
|
.pf-v6-c-accordion.pf-m-toggle-start {
|
|
317
316
|
--pf-v6-c-accordion__toggle--ColumnGap: var(--pf-v6-c-accordion--m-toggle-start__toggle--ColumnGap);
|
|
318
317
|
}
|
|
@@ -4838,7 +4837,7 @@ ul) {
|
|
|
4838
4837
|
.pf-v6-c-data-list.pf-m-drag-over {
|
|
4839
4838
|
overflow-anchor: none;
|
|
4840
4839
|
}
|
|
4841
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-data-list
|
|
4840
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-data-list.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-data-list:not(.pf-m-no-plain-on-glass) {
|
|
4842
4841
|
--pf-v6-c-data-list__item--BackgroundColor: var(--pf-v6-c-data-list--pf-m-plain__item--BackgroundColor);
|
|
4843
4842
|
}
|
|
4844
4843
|
|
|
@@ -6488,11 +6487,9 @@ ul) {
|
|
|
6488
6487
|
.pf-v6-c-drawer.pf-m-inline > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-border, .pf-m-resizable), .pf-v6-c-drawer.pf-m-static > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-border, .pf-m-resizable) {
|
|
6489
6488
|
padding-inline-start: var(--pf-v6-c-drawer--m-inline__panel--PaddingInlineStart);
|
|
6490
6489
|
}
|
|
6491
|
-
.pf-v6-c-drawer.pf-m-inline.pf-m-glass, .pf-v6-c-drawer.pf-m-static.pf-m-glass {
|
|
6490
|
+
.pf-v6-c-drawer.pf-m-inline > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-glass, .pf-v6-c-drawer.pf-m-static > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-glass {
|
|
6492
6491
|
--pf-v6-c-drawer__panel--BackgroundColor: var(--pf-v6-c-drawer__panel--m-glass--BackgroundColor);
|
|
6493
6492
|
--pf-v6-c-drawer__panel--BorderColor: var(--pf-v6-c-drawer__panel--m-glass--BorderColor);
|
|
6494
|
-
}
|
|
6495
|
-
.pf-v6-c-drawer.pf-m-inline.pf-m-glass > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel, .pf-v6-c-drawer.pf-m-static.pf-m-glass > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
|
6496
6493
|
backdrop-filter: var(--pf-v6-c-drawer__panel--m-glass--BackdropFilter);
|
|
6497
6494
|
}
|
|
6498
6495
|
.pf-v6-c-drawer.pf-m-panel-left > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
|
@@ -6825,8 +6822,8 @@ ul) {
|
|
|
6825
6822
|
--pf-v6-c-drawer--m-inline__panel--after--Width: var(--pf-v6-c-drawer--m-inline__panel--after--md--Width);
|
|
6826
6823
|
min-width: var(--pf-v6-c-drawer__panel--MinWidth);
|
|
6827
6824
|
}
|
|
6828
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-drawer.pf-m-inline
|
|
6829
|
-
|
|
6825
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-drawer.pf-m-inline > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-drawer.pf-m-inline > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-plain-on-glass), :where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-drawer.pf-m-static > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-drawer.pf-m-static > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-plain-on-glass) {
|
|
6826
|
+
--pf-v6-c-drawer__panel--BackgroundColor: transparent;
|
|
6830
6827
|
}
|
|
6831
6828
|
.pf-v6-c-drawer > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
|
6832
6829
|
box-shadow: var(--pf-v6-c-drawer--m-expanded__panel--BoxShadow);
|
|
@@ -14317,17 +14314,17 @@ ul.pf-v6-c-list {
|
|
|
14317
14314
|
outline: 0;
|
|
14318
14315
|
}
|
|
14319
14316
|
|
|
14320
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-subnav
|
|
14321
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-breadcrumb
|
|
14322
|
-
.pf-v6-c-page__main-breadcrumb.pf-m-plain,
|
|
14323
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-tabs
|
|
14324
|
-
.pf-v6-c-page__main-tabs.pf-m-plain,
|
|
14325
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-section
|
|
14326
|
-
.pf-v6-c-page__main-section.pf-m-plain,
|
|
14327
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-wizard
|
|
14328
|
-
.pf-v6-c-page__main-wizard.pf-m-plain,
|
|
14329
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-page__main-group
|
|
14330
|
-
.pf-v6-c-page__main-group.pf-m-plain {
|
|
14317
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-subnav.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-subnav:not(.pf-m-no-plain-on-glass),
|
|
14318
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-breadcrumb.pf-m-plain,
|
|
14319
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-breadcrumb:not(.pf-m-no-plain-on-glass),
|
|
14320
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-tabs.pf-m-plain,
|
|
14321
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-tabs:not(.pf-m-no-plain-on-glass),
|
|
14322
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-section.pf-m-plain,
|
|
14323
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-section:not(.pf-m-no-plain-on-glass),
|
|
14324
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-wizard.pf-m-plain,
|
|
14325
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-wizard:not(.pf-m-no-plain-on-glass),
|
|
14326
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-group.pf-m-plain,
|
|
14327
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-group:not(.pf-m-no-plain-on-glass) {
|
|
14331
14328
|
--pf-v6-c-page__main-section--BackgroundColor: transparent;
|
|
14332
14329
|
--pf-v6-c-page__main-subnav--BackgroundColor: transparent;
|
|
14333
14330
|
--pf-v6-c-page__main-breadcrumb--BackgroundColor: transparent;
|
|
@@ -19095,14 +19092,13 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
19095
19092
|
width: 100%;
|
|
19096
19093
|
background-color: var(--pf-v6-c-table--BackgroundColor);
|
|
19097
19094
|
}
|
|
19098
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-table
|
|
19095
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-table.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-table:not(.pf-m-no-plain-on-glass) {
|
|
19099
19096
|
--pf-v6-c-table--BackgroundColor: transparent;
|
|
19100
19097
|
--pf-v6-c-table__expandable-row-content--BackgroundColor: transparent;
|
|
19101
19098
|
--pf-v6-c-table__expandable-row-content--PaddingInlineStart: 0;
|
|
19102
19099
|
--pf-v6-c-table__expandable-row-content--PaddingInlineEnd: 0;
|
|
19103
19100
|
--pf-v6-c-table__control-row--BackgroundColor: transparent;
|
|
19104
19101
|
}
|
|
19105
|
-
|
|
19106
19102
|
.pf-v6-c-table.pf-m-fixed {
|
|
19107
19103
|
table-layout: fixed;
|
|
19108
19104
|
}
|
|
@@ -25243,14 +25239,14 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
25243
25239
|
.pf-v6-c-wizard.pf-m-finished .pf-v6-c-wizard__toggle {
|
|
25244
25240
|
display: none;
|
|
25245
25241
|
}
|
|
25246
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-wizard
|
|
25242
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-wizard.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-wizard:not(.pf-m-no-plain-on-glass) {
|
|
25247
25243
|
--pf-v6-c-wizard__header--BackgroundColor: var(--pf-v6-c-wizard--m-plain__header--BackgroundColor);
|
|
25248
25244
|
--pf-v6-c-wizard__toggle--BackgroundColor: var(--pf-v6-c-wizard--m-plain__toggle--BackgroundColor);
|
|
25249
25245
|
--pf-v6-c-wizard__outer-wrap--BackgroundColor: var(--pf-v6-c-wizard--m-plain__outer-wrap--BackgroundColor);
|
|
25250
25246
|
--pf-v6-c-wizard__footer--BackgroundColor: var(--pf-v6-c-wizard--m-plain__footer--BackgroundColor);
|
|
25251
25247
|
}
|
|
25252
25248
|
@media screen and (min-width: 62rem) {
|
|
25253
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-wizard
|
|
25249
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-wizard.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-wizard:not(.pf-m-no-plain-on-glass) {
|
|
25254
25250
|
--pf-v6-c-wizard__nav--BackgroundColor: var(--pf-v6-c-wizard--m-plain__nav--BackgroundColor);
|
|
25255
25251
|
}
|
|
25256
25252
|
}
|
|
@@ -43,7 +43,7 @@ cssPrefix: pf-v6-c-action-list
|
|
|
43
43
|
<span class="pf-v6-c-button__icon">
|
|
44
44
|
<svg
|
|
45
45
|
class="pf-v6-svg"
|
|
46
|
-
viewBox="0 0
|
|
46
|
+
viewBox="0 0 32 32"
|
|
47
47
|
fill="currentColor"
|
|
48
48
|
aria-hidden="true"
|
|
49
49
|
role="img"
|
|
@@ -51,7 +51,7 @@ cssPrefix: pf-v6-c-action-list
|
|
|
51
51
|
height="1em"
|
|
52
52
|
>
|
|
53
53
|
<path
|
|
54
|
-
d="
|
|
54
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
55
55
|
/>
|
|
56
56
|
</svg>
|
|
57
57
|
</span>
|
|
@@ -734,7 +734,7 @@ cssPrefix: ['pf-v6-c-alert','pf-v6-c-alert-group']
|
|
|
734
734
|
<div class="pf-v6-c-alert__icon">
|
|
735
735
|
<svg
|
|
736
736
|
class="pf-v6-svg"
|
|
737
|
-
viewBox="0 0
|
|
737
|
+
viewBox="0 0 32 32"
|
|
738
738
|
fill="currentColor"
|
|
739
739
|
aria-hidden="true"
|
|
740
740
|
role="img"
|
|
@@ -742,7 +742,7 @@ cssPrefix: ['pf-v6-c-alert','pf-v6-c-alert-group']
|
|
|
742
742
|
height="1em"
|
|
743
743
|
>
|
|
744
744
|
<path
|
|
745
|
-
d="
|
|
745
|
+
d="M30.168 12.894a.5.5 0 0 0-.488-.394h-2.732a11.512 11.512 0 0 0-.729-1.769l1.931-1.93a.5.5 0 0 0 .066-.625 14.693 14.693 0 0 0-4.393-4.392.498.498 0 0 0-.624.067l-1.93 1.93a11.512 11.512 0 0 0-1.769-.729V2.319a.5.5 0 0 0-.395-.489 14.81 14.81 0 0 0-6.211 0 .5.5 0 0 0-.395.489v2.733c-.614.196-1.207.439-1.769.729L8.8 3.851a.498.498 0 0 0-.624-.067 14.714 14.714 0 0 0-4.393 4.392.5.5 0 0 0 .066.625l1.931 1.93a11.512 11.512 0 0 0-.729 1.769H2.319a.5.5 0 0 0-.488.394 14.652 14.652 0 0 0 0 6.212.5.5 0 0 0 .488.394h2.732c.196.615.44 1.207.729 1.769l-1.931 1.93a.5.5 0 0 0-.066.625 14.673 14.673 0 0 0 4.393 4.392.498.498 0 0 0 .624-.067l1.93-1.93c.562.289 1.154.533 1.769.729v2.733a.5.5 0 0 0 .395.489 14.686 14.686 0 0 0 6.21 0 .5.5 0 0 0 .395-.489v-2.733a11.454 11.454 0 0 0 1.769-.729l1.93 1.93a.5.5 0 0 0 .624.067 14.714 14.714 0 0 0 4.393-4.392.5.5 0 0 0-.066-.625l-1.931-1.93c.289-.562.533-1.154.729-1.769h2.732a.5.5 0 0 0 .488-.394 14.652 14.652 0 0 0 0-6.212ZM16 21.25c-2.895 0-5.25-2.355-5.25-5.25s2.355-5.25 5.25-5.25 5.25 2.355 5.25 5.25-2.355 5.25-5.25 5.25Z"
|
|
746
746
|
/>
|
|
747
747
|
</svg>
|
|
748
748
|
</div>
|
|
@@ -756,7 +756,7 @@ cssPrefix: ['pf-v6-c-alert','pf-v6-c-alert-group']
|
|
|
756
756
|
<div class="pf-v6-c-alert__icon">
|
|
757
757
|
<svg
|
|
758
758
|
class="pf-v6-svg"
|
|
759
|
-
viewBox="0 0
|
|
759
|
+
viewBox="0 0 32 32"
|
|
760
760
|
fill="currentColor"
|
|
761
761
|
aria-hidden="true"
|
|
762
762
|
role="img"
|
|
@@ -764,7 +764,7 @@ cssPrefix: ['pf-v6-c-alert','pf-v6-c-alert-group']
|
|
|
764
764
|
height="1em"
|
|
765
765
|
>
|
|
766
766
|
<path
|
|
767
|
-
d="
|
|
767
|
+
d="M30.168 12.894a.5.5 0 0 0-.488-.394h-2.732a11.512 11.512 0 0 0-.729-1.769l1.931-1.93a.5.5 0 0 0 .066-.625 14.693 14.693 0 0 0-4.393-4.392.498.498 0 0 0-.624.067l-1.93 1.93a11.512 11.512 0 0 0-1.769-.729V2.319a.5.5 0 0 0-.395-.489 14.81 14.81 0 0 0-6.211 0 .5.5 0 0 0-.395.489v2.733c-.614.196-1.207.439-1.769.729L8.8 3.851a.498.498 0 0 0-.624-.067 14.714 14.714 0 0 0-4.393 4.392.5.5 0 0 0 .066.625l1.931 1.93a11.512 11.512 0 0 0-.729 1.769H2.319a.5.5 0 0 0-.488.394 14.652 14.652 0 0 0 0 6.212.5.5 0 0 0 .488.394h2.732c.196.615.44 1.207.729 1.769l-1.931 1.93a.5.5 0 0 0-.066.625 14.673 14.673 0 0 0 4.393 4.392.498.498 0 0 0 .624-.067l1.93-1.93c.562.289 1.154.533 1.769.729v2.733a.5.5 0 0 0 .395.489 14.686 14.686 0 0 0 6.21 0 .5.5 0 0 0 .395-.489v-2.733a11.454 11.454 0 0 0 1.769-.729l1.93 1.93a.5.5 0 0 0 .624.067 14.714 14.714 0 0 0 4.393-4.392.5.5 0 0 0-.066-.625l-1.931-1.93c.289-.562.533-1.154.729-1.769h2.732a.5.5 0 0 0 .488-.394 14.652 14.652 0 0 0 0-6.212ZM16 21.25c-2.895 0-5.25-2.355-5.25-5.25s2.355-5.25 5.25-5.25 5.25 2.355 5.25 5.25-2.355 5.25-5.25 5.25Z"
|
|
768
768
|
/>
|
|
769
769
|
</svg>
|
|
770
770
|
</div>
|
|
@@ -4416,7 +4416,7 @@ A favorite button should use a plain button with the star icon. Applying `.pf-m-
|
|
|
4416
4416
|
height="1em"
|
|
4417
4417
|
>
|
|
4418
4418
|
<path
|
|
4419
|
-
d="
|
|
4419
|
+
d="M30.168 12.894a.5.5 0 0 0-.488-.394h-2.732a11.512 11.512 0 0 0-.729-1.769l1.931-1.93a.5.5 0 0 0 .066-.625 14.693 14.693 0 0 0-4.393-4.392.498.498 0 0 0-.624.067l-1.93 1.93a11.512 11.512 0 0 0-1.769-.729V2.319a.5.5 0 0 0-.395-.489 14.81 14.81 0 0 0-6.211 0 .5.5 0 0 0-.395.489v2.733c-.614.196-1.207.439-1.769.729L8.8 3.851a.498.498 0 0 0-.624-.067 14.714 14.714 0 0 0-4.393 4.392.5.5 0 0 0 .066.625l1.931 1.93a11.512 11.512 0 0 0-.729 1.769H2.319a.5.5 0 0 0-.488.394 14.652 14.652 0 0 0 0 6.212.5.5 0 0 0 .488.394h2.732c.196.615.44 1.207.729 1.769l-1.931 1.93a.5.5 0 0 0-.066.625 14.673 14.673 0 0 0 4.393 4.392.498.498 0 0 0 .624-.067l1.93-1.93c.562.289 1.154.533 1.769.729v2.733a.5.5 0 0 0 .395.489 14.686 14.686 0 0 0 6.21 0 .5.5 0 0 0 .395-.489v-2.733a11.454 11.454 0 0 0 1.769-.729l1.93 1.93a.5.5 0 0 0 .624.067 14.714 14.714 0 0 0 4.393-4.392.5.5 0 0 0-.066-.625l-1.931-1.93c.289-.562.533-1.154.729-1.769h2.732a.5.5 0 0 0 .488-.394 14.652 14.652 0 0 0 0-6.212ZM16 21.25c-2.895 0-5.25-2.355-5.25-5.25s2.355-5.25 5.25-5.25 5.25 2.355 5.25 5.25-2.355 5.25-5.25 5.25Z"
|
|
4420
4420
|
/>
|
|
4421
4421
|
</svg>
|
|
4422
4422
|
</span>
|
|
@@ -51,7 +51,19 @@ cssPrefix: pf-v6-c-icon
|
|
|
51
51
|
|
|
52
52
|
<span class="pf-v6-c-icon">
|
|
53
53
|
<span class="pf-v6-c-icon__content">
|
|
54
|
-
<
|
|
54
|
+
<svg
|
|
55
|
+
class="pf-v6-svg"
|
|
56
|
+
viewBox="0 0 32 32"
|
|
57
|
+
fill="currentColor"
|
|
58
|
+
aria-hidden="true"
|
|
59
|
+
role="img"
|
|
60
|
+
width="1em"
|
|
61
|
+
height="1em"
|
|
62
|
+
>
|
|
63
|
+
<path
|
|
64
|
+
d="M30.168 12.894a.5.5 0 0 0-.488-.394h-2.732a11.512 11.512 0 0 0-.729-1.769l1.931-1.93a.5.5 0 0 0 .066-.625 14.693 14.693 0 0 0-4.393-4.392.498.498 0 0 0-.624.067l-1.93 1.93a11.512 11.512 0 0 0-1.769-.729V2.319a.5.5 0 0 0-.395-.489 14.81 14.81 0 0 0-6.211 0 .5.5 0 0 0-.395.489v2.733c-.614.196-1.207.439-1.769.729L8.8 3.851a.498.498 0 0 0-.624-.067 14.714 14.714 0 0 0-4.393 4.392.5.5 0 0 0 .066.625l1.931 1.93a11.512 11.512 0 0 0-.729 1.769H2.319a.5.5 0 0 0-.488.394 14.652 14.652 0 0 0 0 6.212.5.5 0 0 0 .488.394h2.732c.196.615.44 1.207.729 1.769l-1.931 1.93a.5.5 0 0 0-.066.625 14.673 14.673 0 0 0 4.393 4.392.498.498 0 0 0 .624-.067l1.93-1.93c.562.289 1.154.533 1.769.729v2.733a.5.5 0 0 0 .395.489 14.686 14.686 0 0 0 6.21 0 .5.5 0 0 0 .395-.489v-2.733a11.454 11.454 0 0 0 1.769-.729l1.93 1.93a.5.5 0 0 0 .624.067 14.714 14.714 0 0 0 4.393-4.392.5.5 0 0 0-.066-.625l-1.931-1.93c.289-.562.533-1.154.729-1.769h2.732a.5.5 0 0 0 .488-.394 14.652 14.652 0 0 0 0-6.212ZM16 21.25c-2.895 0-5.25-2.355-5.25-5.25s2.355-5.25 5.25-5.25 5.25 2.355 5.25 5.25-2.355 5.25-5.25 5.25Z"
|
|
65
|
+
/>
|
|
66
|
+
</svg>
|
|
55
67
|
</span>
|
|
56
68
|
</span>
|
|
57
69
|
|
|
@@ -6880,7 +6880,19 @@ cssPrefix: pf-v6-c-menu
|
|
|
6880
6880
|
aria-label="Actions"
|
|
6881
6881
|
>
|
|
6882
6882
|
<span class="pf-v6-c-button__icon">
|
|
6883
|
-
<
|
|
6883
|
+
<svg
|
|
6884
|
+
class="pf-v6-svg"
|
|
6885
|
+
viewBox="0 0 32 32"
|
|
6886
|
+
fill="currentColor"
|
|
6887
|
+
aria-hidden="true"
|
|
6888
|
+
role="img"
|
|
6889
|
+
width="1em"
|
|
6890
|
+
height="1em"
|
|
6891
|
+
>
|
|
6892
|
+
<path
|
|
6893
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
6894
|
+
/>
|
|
6895
|
+
</svg>
|
|
6884
6896
|
</span>
|
|
6885
6897
|
</button>
|
|
6886
6898
|
</div>
|
|
@@ -7039,7 +7051,19 @@ cssPrefix: pf-v6-c-menu
|
|
|
7039
7051
|
aria-disabled="true"
|
|
7040
7052
|
>
|
|
7041
7053
|
<span class="pf-v6-c-button__icon">
|
|
7042
|
-
<
|
|
7054
|
+
<svg
|
|
7055
|
+
class="pf-v6-svg"
|
|
7056
|
+
viewBox="0 0 32 32"
|
|
7057
|
+
fill="currentColor"
|
|
7058
|
+
aria-hidden="true"
|
|
7059
|
+
role="img"
|
|
7060
|
+
width="1em"
|
|
7061
|
+
height="1em"
|
|
7062
|
+
>
|
|
7063
|
+
<path
|
|
7064
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
7065
|
+
/>
|
|
7066
|
+
</svg>
|
|
7043
7067
|
</span>
|
|
7044
7068
|
</button>
|
|
7045
7069
|
</div>
|