@patternfly/patternfly 6.5.0-prerelease.66 → 6.5.0-prerelease.68
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/Card/card.css +8 -0
- package/components/Card/card.scss +13 -0
- 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/OverflowMenu/overflow-menu.css +16 -0
- package/components/OverflowMenu/overflow-menu.scss +20 -1
- 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/Toolbar/toolbar.css +100 -0
- package/components/Toolbar/toolbar.scss +2 -2
- package/components/Wizard/wizard.css +2 -2
- package/components/Wizard/wizard.scss +4 -4
- package/components/_index.css +143 -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/OverflowMenu/examples/overflow-menu.css +6 -3
- package/docs/components/OverflowMenu/examples/overflow-menu.md +21 -0
- package/docs/components/Toolbar/examples/Toolbar.md +106 -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 +143 -23
- package/patternfly.css +143 -23
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/mixins.scss +16 -1
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
|
}
|
|
@@ -2999,6 +2998,14 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2999
2998
|
--pf-v6-c-card--BackgroundColor: var(--pf-v6-c-card--m-plain--BackgroundColor);
|
|
3000
2999
|
--pf-v6-c-card--BoxShadow: var(--pf-v6-c-card--m-plain--BoxShadow);
|
|
3001
3000
|
}
|
|
3001
|
+
.pf-v6-c-card.pf-m-plain.pf-m-selectable, .pf-v6-c-card.pf-m-plain.pf-m-clickable {
|
|
3002
|
+
--pf-v6-c-card--BorderColor: var(--pf-v6-c-card--m-selectable--BorderColor);
|
|
3003
|
+
--pf-v6-c-card--BorderWidth: var(--pf-v6-c-card--m-selectable--BorderWidth);
|
|
3004
|
+
}
|
|
3005
|
+
.pf-v6-c-card.pf-m-plain.pf-m-selectable.pf-m-current, .pf-v6-c-card.pf-m-plain.pf-m-clickable.pf-m-current {
|
|
3006
|
+
--pf-v6-c-card--BorderColor: var(--pf-v6-c-card--m-selectable--m-clickable--m-current--BorderColor);
|
|
3007
|
+
--pf-v6-c-card--BorderWidth: var(--pf-v6-c-card--m-selectable--m-clickable--m-current--BorderWidth);
|
|
3008
|
+
}
|
|
3002
3009
|
.pf-v6-c-card.pf-m-expanded .pf-v6-c-card__header-toggle-icon {
|
|
3003
3010
|
transform: rotate(var(--pf-v6-c-card--m-expanded__header-toggle-icon--Rotate));
|
|
3004
3011
|
}
|
|
@@ -4838,7 +4845,7 @@ ul) {
|
|
|
4838
4845
|
.pf-v6-c-data-list.pf-m-drag-over {
|
|
4839
4846
|
overflow-anchor: none;
|
|
4840
4847
|
}
|
|
4841
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-data-list
|
|
4848
|
+
: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
4849
|
--pf-v6-c-data-list__item--BackgroundColor: var(--pf-v6-c-data-list--pf-m-plain__item--BackgroundColor);
|
|
4843
4850
|
}
|
|
4844
4851
|
|
|
@@ -6488,11 +6495,9 @@ ul) {
|
|
|
6488
6495
|
.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
6496
|
padding-inline-start: var(--pf-v6-c-drawer--m-inline__panel--PaddingInlineStart);
|
|
6490
6497
|
}
|
|
6491
|
-
.pf-v6-c-drawer.pf-m-inline.pf-m-glass, .pf-v6-c-drawer.pf-m-static.pf-m-glass {
|
|
6498
|
+
.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
6499
|
--pf-v6-c-drawer__panel--BackgroundColor: var(--pf-v6-c-drawer__panel--m-glass--BackgroundColor);
|
|
6493
6500
|
--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
6501
|
backdrop-filter: var(--pf-v6-c-drawer__panel--m-glass--BackdropFilter);
|
|
6497
6502
|
}
|
|
6498
6503
|
.pf-v6-c-drawer.pf-m-panel-left > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
|
@@ -6825,8 +6830,8 @@ ul) {
|
|
|
6825
6830
|
--pf-v6-c-drawer--m-inline__panel--after--Width: var(--pf-v6-c-drawer--m-inline__panel--after--md--Width);
|
|
6826
6831
|
min-width: var(--pf-v6-c-drawer__panel--MinWidth);
|
|
6827
6832
|
}
|
|
6828
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-drawer.pf-m-inline
|
|
6829
|
-
|
|
6833
|
+
: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) {
|
|
6834
|
+
--pf-v6-c-drawer__panel--BackgroundColor: transparent;
|
|
6830
6835
|
}
|
|
6831
6836
|
.pf-v6-c-drawer > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
|
6832
6837
|
box-shadow: var(--pf-v6-c-drawer--m-expanded__panel--BoxShadow);
|
|
@@ -13507,16 +13512,27 @@ ul.pf-v6-c-list {
|
|
|
13507
13512
|
|
|
13508
13513
|
.pf-v6-c-overflow-menu {
|
|
13509
13514
|
--pf-v6-c-overflow-menu--ColumnGap: var(--pf-t--global--spacer--md);
|
|
13515
|
+
--pf-v6-c-overflow-menu--RowGap: var(--pf-t--global--spacer--md);
|
|
13510
13516
|
--pf-v6-c-overflow-menu__group--ColumnGap: var(--pf-t--global--spacer--md);
|
|
13517
|
+
--pf-v6-c-overflow-menu__group--RowGap: var(--pf-t--global--spacer--md);
|
|
13511
13518
|
--pf-v6-c-overflow-menu__group--m-button-group--ColumnGap: var(--pf-t--global--spacer--sm);
|
|
13519
|
+
--pf-v6-c-overflow-menu__group--m-button-group--RowGap: var(--pf-t--global--spacer--sm);
|
|
13512
13520
|
--pf-v6-c-overflow-menu__group--m-icon-button-group--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
13521
|
+
--pf-v6-c-overflow-menu__group--m-icon-button-group--RowGap: var(--pf-t--global--spacer--xs);
|
|
13513
13522
|
}
|
|
13514
13523
|
|
|
13515
13524
|
.pf-v6-c-overflow-menu {
|
|
13516
13525
|
display: inline-flex;
|
|
13526
|
+
row-gap: var(--pf-v6-c-overflow-menu--RowGap);
|
|
13517
13527
|
column-gap: var(--pf-v6-c-overflow-menu--ColumnGap);
|
|
13518
13528
|
}
|
|
13519
13529
|
|
|
13530
|
+
.pf-v6-c-overflow-menu.pf-m-vertical,
|
|
13531
|
+
.pf-v6-c-overflow-menu.pf-m-vertical .pf-v6-c-overflow-menu__content,
|
|
13532
|
+
.pf-v6-c-overflow-menu.pf-m-vertical .pf-v6-c-overflow-menu__group {
|
|
13533
|
+
flex-direction: column;
|
|
13534
|
+
}
|
|
13535
|
+
|
|
13520
13536
|
.pf-v6-c-overflow-menu__content,
|
|
13521
13537
|
.pf-v6-c-overflow-menu__group {
|
|
13522
13538
|
display: flex;
|
|
@@ -13524,21 +13540,26 @@ ul.pf-v6-c-list {
|
|
|
13524
13540
|
}
|
|
13525
13541
|
|
|
13526
13542
|
.pf-v6-c-overflow-menu__group {
|
|
13543
|
+
row-gap: var(--pf-v6-c-overflow-menu__group--RowGap);
|
|
13527
13544
|
column-gap: var(--pf-v6-c-overflow-menu__group--ColumnGap);
|
|
13528
13545
|
}
|
|
13529
13546
|
.pf-v6-c-overflow-menu__group.pf-m-button-group {
|
|
13547
|
+
row-gap: var(--pf-v6-c-overflow-menu__group--m-button-group--RowGap);
|
|
13530
13548
|
column-gap: var(--pf-v6-c-overflow-menu__group--m-button-group--ColumnGap);
|
|
13531
13549
|
}
|
|
13532
13550
|
.pf-v6-c-overflow-menu__group.pf-m-icon-button-group {
|
|
13551
|
+
row-gap: var(--pf-v6-c-overflow-menu__group--m-icon-button-group--RowGap);
|
|
13533
13552
|
column-gap: var(--pf-v6-c-overflow-menu__group--m-icon-button-group--ColumnGap);
|
|
13534
13553
|
}
|
|
13535
13554
|
|
|
13536
13555
|
.pf-v6-c-overflow-menu__item {
|
|
13556
|
+
row-gap: var(--pf-v6-c-overflow-menu__item--RowGap, var(--pf-v6-c-overflow-menu--RowGap));
|
|
13537
13557
|
column-gap: var(--pf-v6-c-overflow-menu__item--ColumnGap, var(--pf-v6-c-overflow-menu--ColumnGap));
|
|
13538
13558
|
}
|
|
13539
13559
|
|
|
13540
13560
|
.pf-v6-c-overflow-menu__content,
|
|
13541
13561
|
.pf-v6-c-overflow-menu__control {
|
|
13562
|
+
row-gap: var(--pf-v6-c-overflow-menu--RowGap);
|
|
13542
13563
|
column-gap: var(--pf-v6-c-overflow-menu--ColumnGap);
|
|
13543
13564
|
}
|
|
13544
13565
|
|
|
@@ -14317,17 +14338,17 @@ ul.pf-v6-c-list {
|
|
|
14317
14338
|
outline: 0;
|
|
14318
14339
|
}
|
|
14319
14340
|
|
|
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 {
|
|
14341
|
+
: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),
|
|
14342
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-breadcrumb.pf-m-plain,
|
|
14343
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-breadcrumb:not(.pf-m-no-plain-on-glass),
|
|
14344
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-tabs.pf-m-plain,
|
|
14345
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-tabs:not(.pf-m-no-plain-on-glass),
|
|
14346
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-section.pf-m-plain,
|
|
14347
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-section:not(.pf-m-no-plain-on-glass),
|
|
14348
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-wizard.pf-m-plain,
|
|
14349
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-wizard:not(.pf-m-no-plain-on-glass),
|
|
14350
|
+
:where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-page__main-group.pf-m-plain,
|
|
14351
|
+
:where(:root.pf-v6-theme-glass) .pf-v6-c-page__main-group:not(.pf-m-no-plain-on-glass) {
|
|
14331
14352
|
--pf-v6-c-page__main-section--BackgroundColor: transparent;
|
|
14332
14353
|
--pf-v6-c-page__main-subnav--BackgroundColor: transparent;
|
|
14333
14354
|
--pf-v6-c-page__main-breadcrumb--BackgroundColor: transparent;
|
|
@@ -19095,14 +19116,13 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
19095
19116
|
width: 100%;
|
|
19096
19117
|
background-color: var(--pf-v6-c-table--BackgroundColor);
|
|
19097
19118
|
}
|
|
19098
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-table
|
|
19119
|
+
: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
19120
|
--pf-v6-c-table--BackgroundColor: transparent;
|
|
19100
19121
|
--pf-v6-c-table__expandable-row-content--BackgroundColor: transparent;
|
|
19101
19122
|
--pf-v6-c-table__expandable-row-content--PaddingInlineStart: 0;
|
|
19102
19123
|
--pf-v6-c-table__expandable-row-content--PaddingInlineEnd: 0;
|
|
19103
19124
|
--pf-v6-c-table__control-row--BackgroundColor: transparent;
|
|
19104
19125
|
}
|
|
19105
|
-
|
|
19106
19126
|
.pf-v6-c-table.pf-m-fixed {
|
|
19107
19127
|
table-layout: fixed;
|
|
19108
19128
|
}
|
|
@@ -22446,6 +22466,66 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22446
22466
|
.pf-v6-c-toolbar__item.pf-m-hidden {
|
|
22447
22467
|
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22448
22468
|
}
|
|
22469
|
+
@media screen and (min-height: 0) {
|
|
22470
|
+
.pf-v6-c-toolbar__content-section.pf-m-hidden-on-sm-height,
|
|
22471
|
+
.pf-v6-c-toolbar__group.pf-m-hidden-on-sm-height,
|
|
22472
|
+
.pf-v6-c-toolbar__item.pf-m-hidden-on-sm-height {
|
|
22473
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22474
|
+
}
|
|
22475
|
+
.pf-v6-c-toolbar__content-section.pf-m-visible-on-sm-height,
|
|
22476
|
+
.pf-v6-c-toolbar__group.pf-m-visible-on-sm-height,
|
|
22477
|
+
.pf-v6-c-toolbar__item.pf-m-visible-on-sm-height {
|
|
22478
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
|
|
22479
|
+
}
|
|
22480
|
+
}
|
|
22481
|
+
@media screen and (min-height: 40rem) {
|
|
22482
|
+
.pf-v6-c-toolbar__content-section.pf-m-hidden-on-md-height,
|
|
22483
|
+
.pf-v6-c-toolbar__group.pf-m-hidden-on-md-height,
|
|
22484
|
+
.pf-v6-c-toolbar__item.pf-m-hidden-on-md-height {
|
|
22485
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22486
|
+
}
|
|
22487
|
+
.pf-v6-c-toolbar__content-section.pf-m-visible-on-md-height,
|
|
22488
|
+
.pf-v6-c-toolbar__group.pf-m-visible-on-md-height,
|
|
22489
|
+
.pf-v6-c-toolbar__item.pf-m-visible-on-md-height {
|
|
22490
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
|
|
22491
|
+
}
|
|
22492
|
+
}
|
|
22493
|
+
@media screen and (min-height: 48rem) {
|
|
22494
|
+
.pf-v6-c-toolbar__content-section.pf-m-hidden-on-lg-height,
|
|
22495
|
+
.pf-v6-c-toolbar__group.pf-m-hidden-on-lg-height,
|
|
22496
|
+
.pf-v6-c-toolbar__item.pf-m-hidden-on-lg-height {
|
|
22497
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22498
|
+
}
|
|
22499
|
+
.pf-v6-c-toolbar__content-section.pf-m-visible-on-lg-height,
|
|
22500
|
+
.pf-v6-c-toolbar__group.pf-m-visible-on-lg-height,
|
|
22501
|
+
.pf-v6-c-toolbar__item.pf-m-visible-on-lg-height {
|
|
22502
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
|
|
22503
|
+
}
|
|
22504
|
+
}
|
|
22505
|
+
@media screen and (min-height: 60rem) {
|
|
22506
|
+
.pf-v6-c-toolbar__content-section.pf-m-hidden-on-xl-height,
|
|
22507
|
+
.pf-v6-c-toolbar__group.pf-m-hidden-on-xl-height,
|
|
22508
|
+
.pf-v6-c-toolbar__item.pf-m-hidden-on-xl-height {
|
|
22509
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22510
|
+
}
|
|
22511
|
+
.pf-v6-c-toolbar__content-section.pf-m-visible-on-xl-height,
|
|
22512
|
+
.pf-v6-c-toolbar__group.pf-m-visible-on-xl-height,
|
|
22513
|
+
.pf-v6-c-toolbar__item.pf-m-visible-on-xl-height {
|
|
22514
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
|
|
22515
|
+
}
|
|
22516
|
+
}
|
|
22517
|
+
@media screen and (min-height: 80rem) {
|
|
22518
|
+
.pf-v6-c-toolbar__content-section.pf-m-hidden-on-2xl-height,
|
|
22519
|
+
.pf-v6-c-toolbar__group.pf-m-hidden-on-2xl-height,
|
|
22520
|
+
.pf-v6-c-toolbar__item.pf-m-hidden-on-2xl-height {
|
|
22521
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22522
|
+
}
|
|
22523
|
+
.pf-v6-c-toolbar__content-section.pf-m-visible-on-2xl-height,
|
|
22524
|
+
.pf-v6-c-toolbar__group.pf-m-visible-on-2xl-height,
|
|
22525
|
+
.pf-v6-c-toolbar__item.pf-m-visible-on-2xl-height {
|
|
22526
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
|
|
22527
|
+
}
|
|
22528
|
+
}
|
|
22449
22529
|
@media screen and (min-width: 36rem) {
|
|
22450
22530
|
.pf-v6-c-toolbar__content-section.pf-m-hidden-on-sm,
|
|
22451
22531
|
.pf-v6-c-toolbar__group.pf-m-hidden-on-sm,
|
|
@@ -22521,6 +22601,46 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22521
22601
|
.pf-v6-c-toolbar__content.pf-m-hidden {
|
|
22522
22602
|
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22523
22603
|
}
|
|
22604
|
+
@media screen and (min-height: 0) {
|
|
22605
|
+
.pf-v6-c-toolbar__content.pf-m-hidden-on-sm-height {
|
|
22606
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22607
|
+
}
|
|
22608
|
+
.pf-v6-c-toolbar__content.pf-m-visible-on-sm-height {
|
|
22609
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
|
|
22610
|
+
}
|
|
22611
|
+
}
|
|
22612
|
+
@media screen and (min-height: 40rem) {
|
|
22613
|
+
.pf-v6-c-toolbar__content.pf-m-hidden-on-md-height {
|
|
22614
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22615
|
+
}
|
|
22616
|
+
.pf-v6-c-toolbar__content.pf-m-visible-on-md-height {
|
|
22617
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
|
|
22618
|
+
}
|
|
22619
|
+
}
|
|
22620
|
+
@media screen and (min-height: 48rem) {
|
|
22621
|
+
.pf-v6-c-toolbar__content.pf-m-hidden-on-lg-height {
|
|
22622
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22623
|
+
}
|
|
22624
|
+
.pf-v6-c-toolbar__content.pf-m-visible-on-lg-height {
|
|
22625
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
|
|
22626
|
+
}
|
|
22627
|
+
}
|
|
22628
|
+
@media screen and (min-height: 60rem) {
|
|
22629
|
+
.pf-v6-c-toolbar__content.pf-m-hidden-on-xl-height {
|
|
22630
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22631
|
+
}
|
|
22632
|
+
.pf-v6-c-toolbar__content.pf-m-visible-on-xl-height {
|
|
22633
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
|
|
22634
|
+
}
|
|
22635
|
+
}
|
|
22636
|
+
@media screen and (min-height: 80rem) {
|
|
22637
|
+
.pf-v6-c-toolbar__content.pf-m-hidden-on-2xl-height {
|
|
22638
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
22639
|
+
}
|
|
22640
|
+
.pf-v6-c-toolbar__content.pf-m-visible-on-2xl-height {
|
|
22641
|
+
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
|
|
22642
|
+
}
|
|
22643
|
+
}
|
|
22524
22644
|
@media screen and (min-width: 36rem) {
|
|
22525
22645
|
.pf-v6-c-toolbar__content.pf-m-hidden-on-sm {
|
|
22526
22646
|
--pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
|
|
@@ -25243,14 +25363,14 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
25243
25363
|
.pf-v6-c-wizard.pf-m-finished .pf-v6-c-wizard__toggle {
|
|
25244
25364
|
display: none;
|
|
25245
25365
|
}
|
|
25246
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-wizard
|
|
25366
|
+
: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
25367
|
--pf-v6-c-wizard__header--BackgroundColor: var(--pf-v6-c-wizard--m-plain__header--BackgroundColor);
|
|
25248
25368
|
--pf-v6-c-wizard__toggle--BackgroundColor: var(--pf-v6-c-wizard--m-plain__toggle--BackgroundColor);
|
|
25249
25369
|
--pf-v6-c-wizard__outer-wrap--BackgroundColor: var(--pf-v6-c-wizard--m-plain__outer-wrap--BackgroundColor);
|
|
25250
25370
|
--pf-v6-c-wizard__footer--BackgroundColor: var(--pf-v6-c-wizard--m-plain__footer--BackgroundColor);
|
|
25251
25371
|
}
|
|
25252
25372
|
@media screen and (min-width: 62rem) {
|
|
25253
|
-
:where(.pf-v6-theme-glass) .pf-v6-c-wizard
|
|
25373
|
+
: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
25374
|
--pf-v6-c-wizard__nav--BackgroundColor: var(--pf-v6-c-wizard--m-plain__nav--BackgroundColor);
|
|
25255
25375
|
}
|
|
25256
25376
|
}
|
|
@@ -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>
|