@patternfly/patternfly 6.1.0-prerelease.1 → 6.1.0-prerelease.3
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/README.md +5 -5
- package/components/CodeEditor/code-editor.css +15 -0
- package/components/CodeEditor/code-editor.scss +16 -1
- package/components/Content/content.css +9 -0
- package/components/Content/content.scss +7 -0
- package/components/Label/label-group.css +12 -0
- package/components/Label/label-group.scss +14 -0
- package/components/Label/label.css +2 -0
- package/components/Label/label.scss +2 -0
- package/components/MenuToggle/menu-toggle.css +3 -7
- package/components/MenuToggle/menu-toggle.scss +3 -8
- package/components/Table/table-grid.css +12 -12
- package/components/Table/table-grid.scss +4 -4
- package/components/Table/table-tree-view.css +4 -4
- package/components/Table/table-tree-view.scss +4 -4
- package/components/Table/table.css +1 -0
- package/components/Table/table.scss +2 -0
- package/components/Title/title.css +4 -0
- package/components/Title/title.scss +7 -0
- package/components/Wizard/wizard.css +1 -1
- package/components/Wizard/wizard.scss +1 -1
- package/components/_index.css +63 -24
- package/docs/components/CodeEditor/examples/CodeEditor.css +3 -0
- package/docs/components/CodeEditor/examples/CodeEditor.md +158 -7
- package/docs/components/Content/examples/Content.md +8 -7
- package/docs/components/InlineEdit/examples/InlineEdit.md +3 -18
- package/docs/components/Label/examples/Label.css +12 -0
- package/docs/components/Label/examples/Label.md +127 -0
- package/docs/components/MenuToggle/examples/MenuToggle.md +1193 -536
- package/docs/components/Table/examples/Table.md +465 -2523
- package/docs/components/Title/examples/Title.md +10 -0
- package/docs/demos/AboutModal/examples/AboutModal.md +2 -4
- package/docs/demos/Alert/examples/Alert.md +6 -12
- package/docs/demos/BackToTop/examples/BackToTop.md +2 -4
- package/docs/demos/Banner/examples/Banner.md +4 -8
- package/docs/demos/Card/examples/Card.css +4 -0
- package/docs/demos/Card/examples/Card.md +13 -21
- package/docs/demos/CardView/examples/CardView.md +2 -4
- package/docs/demos/Dashboard/examples/Dashboard.md +2 -4
- package/docs/demos/DataList/examples/DataList.md +13 -46
- package/docs/demos/DescriptionList/examples/DescriptionList.md +11 -42
- package/docs/demos/Drawer/examples/Drawer.md +6 -12
- package/docs/demos/JumpLinks/examples/JumpLinks.md +8 -16
- package/docs/demos/Masthead/examples/Masthead.md +18 -36
- package/docs/demos/Modal/examples/Modal.md +12 -24
- package/docs/demos/Nav/examples/Nav.md +12 -24
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +10 -20
- package/docs/demos/Page/examples/Page.md +24 -48
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +14 -28
- package/docs/demos/Skeleton/examples/Skeleton.md +2 -4
- package/docs/demos/Table/examples/Table.md +191 -984
- package/docs/demos/Tabs/examples/Tabs.md +18 -60
- package/docs/demos/Toolbar/examples/Toolbar.md +16 -80
- package/docs/demos/Wizard/examples/Wizard.md +18 -36
- package/package.json +3 -3
- package/patternfly-no-globals.css +63 -24
- package/patternfly.css +63 -24
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/functions.scss +6 -0
|
@@ -10267,9 +10267,22 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
10267
10267
|
--pf-v6-c-code-editor__tab-icon--text--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
10268
10268
|
}
|
|
10269
10269
|
|
|
10270
|
+
.pf-v6-c-code-editor {
|
|
10271
|
+
display: flex;
|
|
10272
|
+
flex-direction: column;
|
|
10273
|
+
}
|
|
10270
10274
|
.pf-v6-c-code-editor.pf-m-read-only {
|
|
10271
10275
|
--pf-v6-c-code-editor__main--BackgroundColor: var(--pf-v6-c-code-editor--m-read-only__main--BackgroundColor);
|
|
10272
10276
|
}
|
|
10277
|
+
.pf-v6-c-code-editor.pf-m-full-height {
|
|
10278
|
+
height: 100%;
|
|
10279
|
+
}
|
|
10280
|
+
|
|
10281
|
+
.pf-v6-c-code-editor__container {
|
|
10282
|
+
display: flex;
|
|
10283
|
+
flex-direction: column;
|
|
10284
|
+
flex-grow: 1;
|
|
10285
|
+
}
|
|
10273
10286
|
|
|
10274
10287
|
.pf-v6-c-code-editor__header {
|
|
10275
10288
|
position: relative;
|
|
@@ -10336,6 +10349,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
10336
10349
|
|
|
10337
10350
|
.pf-v6-c-code-editor__main {
|
|
10338
10351
|
position: relative;
|
|
10352
|
+
flex-grow: 1;
|
|
10339
10353
|
color: var(--pf-v6-c-code-editor__main--Color, inherit);
|
|
10340
10354
|
background-color: var(--pf-v6-c-code-editor__main--BackgroundColor);
|
|
10341
10355
|
border: var(--pf-v6-c-code-editor__main--BorderWidth) solid;
|
|
@@ -10357,6 +10371,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
10357
10371
|
|
|
10358
10372
|
.pf-v6-c-code-editor__code {
|
|
10359
10373
|
position: relative;
|
|
10374
|
+
height: 100%;
|
|
10360
10375
|
padding-block-start: var(--pf-v6-c-code-editor__code--PaddingBlockStart);
|
|
10361
10376
|
padding-block-end: var(--pf-v6-c-code-editor__code--PaddingBlockEnd);
|
|
10362
10377
|
padding-inline-start: var(--pf-v6-c-code-editor__code--PaddingInlineStart);
|
|
@@ -10429,6 +10444,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
10429
10444
|
--pf-v6-c-content--h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
10430
10445
|
--pf-v6-c-content--h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
|
10431
10446
|
--pf-v6-c-content--h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
|
10447
|
+
--pf-v6-c-content--heading--m-page-title--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
|
10432
10448
|
--pf-v6-c-content--small--MarginBlockEnd: var(--pf-t--global--spacer--md);
|
|
10433
10449
|
--pf-v6-c-content--small--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
10434
10450
|
--pf-v6-c-content--small--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
@@ -10528,6 +10544,14 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
10528
10544
|
.pf-v6-c-content--h6, .pf-v6-c-content h1, .pf-v6-c-content h2, .pf-v6-c-content h3, .pf-v6-c-content h4, .pf-v6-c-content h5, .pf-v6-c-content h6):last-child {
|
|
10529
10545
|
margin-block-end: 0;
|
|
10530
10546
|
}
|
|
10547
|
+
:is(.pf-v6-c-content--h1,
|
|
10548
|
+
.pf-v6-c-content--h2,
|
|
10549
|
+
.pf-v6-c-content--h3,
|
|
10550
|
+
.pf-v6-c-content--h4,
|
|
10551
|
+
.pf-v6-c-content--h5,
|
|
10552
|
+
.pf-v6-c-content--h6, .pf-v6-c-content h1, .pf-v6-c-content h2, .pf-v6-c-content h3, .pf-v6-c-content h4, .pf-v6-c-content h5, .pf-v6-c-content h6).pf-m-page-title {
|
|
10553
|
+
font-weight: var(--pf-v6-c-content--heading--m-page-title--FontWeight);
|
|
10554
|
+
}
|
|
10531
10555
|
|
|
10532
10556
|
:is(.pf-v6-c-content--h1, .pf-v6-c-content h1) {
|
|
10533
10557
|
margin-block-start: var(--pf-v6-c-content--h1--MarginBlockStart);
|
|
@@ -15298,6 +15322,7 @@ label.pf-v6-c-input-group__text {
|
|
|
15298
15322
|
--pf-v6-c-label--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
15299
15323
|
--pf-v6-c-label--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
|
15300
15324
|
--pf-v6-c-label--MaxWidth: 100%;
|
|
15325
|
+
--pf-v6-c-label--MinWidth: 3em;
|
|
15301
15326
|
--pf-v6-c-label--BorderWidth: 0;
|
|
15302
15327
|
--pf-v6-c-label--BorderColor: transparent;
|
|
15303
15328
|
--pf-v6-c-label--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
@@ -15487,6 +15512,7 @@ label.pf-v6-c-input-group__text {
|
|
|
15487
15512
|
|
|
15488
15513
|
.pf-v6-c-label {
|
|
15489
15514
|
position: relative;
|
|
15515
|
+
min-width: var(--pf-v6-c-label--MinWidth);
|
|
15490
15516
|
max-width: var(--pf-v6-c-label--MaxWidth);
|
|
15491
15517
|
padding-block-start: var(--pf-v6-c-label--PaddingBlockStart);
|
|
15492
15518
|
padding-block-end: var(--pf-v6-c-label--PaddingBlockEnd);
|
|
@@ -15789,16 +15815,22 @@ input.pf-v6-c-label__content {
|
|
|
15789
15815
|
.pf-v6-c-label-group {
|
|
15790
15816
|
--pf-v6-c-label-group--RowGap: var(--pf-t--global--spacer--sm);
|
|
15791
15817
|
--pf-v6-c-label-group--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
15818
|
+
--pf-v6-c-label-group--MaxWidth: 100%;
|
|
15792
15819
|
--pf-v6-c-label-group--m-vertical--RowGap: var(--pf-t--global--spacer--sm);
|
|
15793
15820
|
--pf-v6-c-label-group--m-vertical--ColumnGap: var(--pf-t--global--spacer--sm);
|
|
15794
15821
|
--pf-v6-c-label-group__main--RowGap: var(--pf-t--global--spacer--xs);
|
|
15795
15822
|
--pf-v6-c-label-group__main--ColumnGap: var(--pf-t--global--spacer--sm);
|
|
15823
|
+
--pf-v6-c-label-group__main--MaxWidth: 100%;
|
|
15824
|
+
--pf-v6-c-label-group__main--MinWidth: 0;
|
|
15796
15825
|
--pf-v6-c-label-group--m-vertical__main--RowGap: var(--pf-t--global--spacer--sm);
|
|
15797
15826
|
--pf-v6-c-label-group--m-vertical__main--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
15798
15827
|
--pf-v6-c-label-group__list--RowGap: var(--pf-t--global--spacer--xs);
|
|
15799
15828
|
--pf-v6-c-label-group__list--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
15829
|
+
--pf-v6-c-label-group__list--MaxWidth: 100%;
|
|
15830
|
+
--pf-v6-c-label-group__list--MinWidth: 0;
|
|
15800
15831
|
--pf-v6-c-label-group--m-vertical__list--RowGap: var(--pf-t--global--spacer--xs);
|
|
15801
15832
|
--pf-v6-c-label-group--m-vertical__list--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
15833
|
+
--pf-v6-c-label-group__list-item--MaxWidth: 100%;
|
|
15802
15834
|
--pf-v6-c-label-group--m-category--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
15803
15835
|
--pf-v6-c-label-group--m-category--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
15804
15836
|
--pf-v6-c-label-group--m-category--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
@@ -15825,6 +15857,7 @@ input.pf-v6-c-label__content {
|
|
|
15825
15857
|
row-gap: var(--pf-v6-c-label-group--RowGap);
|
|
15826
15858
|
column-gap: var(--pf-v6-c-label-group--ColumnGap);
|
|
15827
15859
|
align-items: center;
|
|
15860
|
+
max-width: var(--pf-v6-c-label-group--MaxWidth);
|
|
15828
15861
|
}
|
|
15829
15862
|
.pf-v6-c-label-group.pf-m-category {
|
|
15830
15863
|
padding-block-start: var(--pf-v6-c-label-group--m-category--PaddingBlockStart);
|
|
@@ -15850,9 +15883,11 @@ input.pf-v6-c-label__content {
|
|
|
15850
15883
|
.pf-v6-c-label-group.pf-m-vertical .pf-v6-c-label-group__list {
|
|
15851
15884
|
flex-direction: column;
|
|
15852
15885
|
align-items: flex-start;
|
|
15886
|
+
max-width: var(--pf-v6-c-label-group__list--MaxWidth);
|
|
15853
15887
|
}
|
|
15854
15888
|
.pf-v6-c-label-group.pf-m-vertical .pf-v6-c-label-group__main {
|
|
15855
15889
|
flex-direction: column;
|
|
15890
|
+
min-width: var(--pf-v6-c-label-group__main--MinWidth);
|
|
15856
15891
|
}
|
|
15857
15892
|
.pf-v6-c-label-group.pf-m-editable,
|
|
15858
15893
|
.pf-v6-c-label-group.pf-m-editable .pf-v6-c-label-group__main,
|
|
@@ -15873,6 +15908,7 @@ input.pf-v6-c-label__content {
|
|
|
15873
15908
|
row-gap: var(--pf-v6-c-label-group__main--RowGap);
|
|
15874
15909
|
column-gap: var(--pf-v6-c-label-group__main--ColumnGap);
|
|
15875
15910
|
align-items: baseline;
|
|
15911
|
+
min-width: var(--pf-v6-c-label-group__main--MinWidth);
|
|
15876
15912
|
}
|
|
15877
15913
|
|
|
15878
15914
|
.pf-v6-c-label-group__list {
|
|
@@ -15880,10 +15916,12 @@ input.pf-v6-c-label__content {
|
|
|
15880
15916
|
flex-wrap: wrap;
|
|
15881
15917
|
row-gap: var(--pf-v6-c-label-group__list--RowGap);
|
|
15882
15918
|
column-gap: var(--pf-v6-c-label-group__list--ColumnGap);
|
|
15919
|
+
min-width: var(--pf-v6-c-label-group__list--MinWidth);
|
|
15883
15920
|
}
|
|
15884
15921
|
|
|
15885
15922
|
.pf-v6-c-label-group__list-item {
|
|
15886
15923
|
display: inline-flex;
|
|
15924
|
+
max-width: var(--pf-v6-c-label-group__list-item--MaxWidth);
|
|
15887
15925
|
}
|
|
15888
15926
|
|
|
15889
15927
|
.pf-v6-c-label-group__label {
|
|
@@ -17745,13 +17783,6 @@ ul.pf-v6-c-list {
|
|
|
17745
17783
|
flex-wrap: nowrap;
|
|
17746
17784
|
}
|
|
17747
17785
|
|
|
17748
|
-
.pf-v6-c-menu-toggle__controls,
|
|
17749
|
-
.pf-v6-c-menu-toggle__toggle-icon {
|
|
17750
|
-
display: flex;
|
|
17751
|
-
align-items: center;
|
|
17752
|
-
justify-content: center;
|
|
17753
|
-
}
|
|
17754
|
-
|
|
17755
17786
|
.pf-v6-c-menu-toggle__icon {
|
|
17756
17787
|
flex-shrink: 0;
|
|
17757
17788
|
}
|
|
@@ -17763,7 +17794,10 @@ ul.pf-v6-c-list {
|
|
|
17763
17794
|
}
|
|
17764
17795
|
|
|
17765
17796
|
.pf-v6-c-menu-toggle__controls {
|
|
17797
|
+
display: flex;
|
|
17766
17798
|
gap: var(--pf-v6-c-menu-toggle__controls--Gap);
|
|
17799
|
+
align-items: center;
|
|
17800
|
+
justify-content: center;
|
|
17767
17801
|
margin-inline-start: auto;
|
|
17768
17802
|
}
|
|
17769
17803
|
|
|
@@ -22389,7 +22423,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
22389
22423
|
--pf-v6-c-table--cell--Width: auto;
|
|
22390
22424
|
}
|
|
22391
22425
|
|
|
22392
|
-
@media screen and (max-width: 48rem) {
|
|
22426
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
22393
22427
|
.pf-m-grid-md.pf-v6-c-table {
|
|
22394
22428
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
22395
22429
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -22659,14 +22693,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
22659
22693
|
text-align: end;
|
|
22660
22694
|
}
|
|
22661
22695
|
}
|
|
22662
|
-
@media screen and (max-width: 48rem) and (max-width: 36rem) {
|
|
22696
|
+
@media screen and (max-width: calc(48rem - 1px)) and (max-width: 36rem) {
|
|
22663
22697
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__action {
|
|
22664
22698
|
grid-row-start: 1;
|
|
22665
22699
|
grid-column-start: 2;
|
|
22666
22700
|
margin-inline-start: 0;
|
|
22667
22701
|
}
|
|
22668
22702
|
}
|
|
22669
|
-
@media screen and (max-width: 48rem) {
|
|
22703
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
22670
22704
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
22671
22705
|
grid-column: 2;
|
|
22672
22706
|
grid-row: 2;
|
|
@@ -22692,7 +22726,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
22692
22726
|
}
|
|
22693
22727
|
}
|
|
22694
22728
|
|
|
22695
|
-
@media screen and (max-width: 62rem) {
|
|
22729
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
22696
22730
|
.pf-m-grid-lg.pf-v6-c-table {
|
|
22697
22731
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
22698
22732
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -22962,14 +22996,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
22962
22996
|
text-align: end;
|
|
22963
22997
|
}
|
|
22964
22998
|
}
|
|
22965
|
-
@media screen and (max-width: 62rem) and (max-width: 36rem) {
|
|
22999
|
+
@media screen and (max-width: calc(62rem - 1px)) and (max-width: 36rem) {
|
|
22966
23000
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__action {
|
|
22967
23001
|
grid-row-start: 1;
|
|
22968
23002
|
grid-column-start: 2;
|
|
22969
23003
|
margin-inline-start: 0;
|
|
22970
23004
|
}
|
|
22971
23005
|
}
|
|
22972
|
-
@media screen and (max-width: 62rem) {
|
|
23006
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
22973
23007
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
22974
23008
|
grid-column: 2;
|
|
22975
23009
|
grid-row: 2;
|
|
@@ -22995,7 +23029,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
22995
23029
|
}
|
|
22996
23030
|
}
|
|
22997
23031
|
|
|
22998
|
-
@media screen and (max-width: 75rem) {
|
|
23032
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
22999
23033
|
.pf-m-grid-xl.pf-v6-c-table {
|
|
23000
23034
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
23001
23035
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -23265,14 +23299,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
23265
23299
|
text-align: end;
|
|
23266
23300
|
}
|
|
23267
23301
|
}
|
|
23268
|
-
@media screen and (max-width: 75rem) and (max-width: 36rem) {
|
|
23302
|
+
@media screen and (max-width: calc(75rem - 1px)) and (max-width: 36rem) {
|
|
23269
23303
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
23270
23304
|
grid-row-start: 1;
|
|
23271
23305
|
grid-column-start: 2;
|
|
23272
23306
|
margin-inline-start: 0;
|
|
23273
23307
|
}
|
|
23274
23308
|
}
|
|
23275
|
-
@media screen and (max-width: 75rem) {
|
|
23309
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
23276
23310
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
23277
23311
|
grid-column: 2;
|
|
23278
23312
|
grid-row: 2;
|
|
@@ -23298,7 +23332,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
23298
23332
|
}
|
|
23299
23333
|
}
|
|
23300
23334
|
|
|
23301
|
-
@media screen and (max-width: 90.625rem) {
|
|
23335
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
23302
23336
|
.pf-m-grid-2xl.pf-v6-c-table {
|
|
23303
23337
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
23304
23338
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -23568,14 +23602,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
23568
23602
|
text-align: end;
|
|
23569
23603
|
}
|
|
23570
23604
|
}
|
|
23571
|
-
@media screen and (max-width: 90.625rem) and (max-width: 36rem) {
|
|
23605
|
+
@media screen and (max-width: calc(90.625rem - 1px)) and (max-width: 36rem) {
|
|
23572
23606
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
23573
23607
|
grid-row-start: 1;
|
|
23574
23608
|
grid-column-start: 2;
|
|
23575
23609
|
margin-inline-start: 0;
|
|
23576
23610
|
}
|
|
23577
23611
|
}
|
|
23578
|
-
@media screen and (max-width: 90.625rem) {
|
|
23612
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
23579
23613
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
23580
23614
|
grid-column: 2;
|
|
23581
23615
|
grid-row: 2;
|
|
@@ -24129,6 +24163,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
24129
24163
|
.pf-v6-c-table .pf-v6-c-table__draggable {
|
|
24130
24164
|
--pf-v6-c-table--cell--MinWidth: 0;
|
|
24131
24165
|
--pf-v6-c-table--cell--Width: 1%;
|
|
24166
|
+
max-width: none;
|
|
24132
24167
|
}
|
|
24133
24168
|
|
|
24134
24169
|
.pf-v6-c-table .pf-v6-c-table__favorite {
|
|
@@ -24777,7 +24812,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
24777
24812
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingInlineStart: calc(var(--pf-v6-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v6-c-table__tree-view-main--indent--base));
|
|
24778
24813
|
}
|
|
24779
24814
|
|
|
24780
|
-
@media screen and (max-width: 48rem) {
|
|
24815
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
24781
24816
|
.pf-m-tree-view-grid-md.pf-v6-c-table {
|
|
24782
24817
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
24783
24818
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -24920,7 +24955,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
24920
24955
|
}
|
|
24921
24956
|
}
|
|
24922
24957
|
|
|
24923
|
-
@media screen and (max-width: 62rem) {
|
|
24958
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
24924
24959
|
.pf-m-tree-view-grid-lg.pf-v6-c-table {
|
|
24925
24960
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
24926
24961
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -25063,7 +25098,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25063
25098
|
}
|
|
25064
25099
|
}
|
|
25065
25100
|
|
|
25066
|
-
@media screen and (max-width: 75rem) {
|
|
25101
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
25067
25102
|
.pf-m-tree-view-grid-xl.pf-v6-c-table {
|
|
25068
25103
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
25069
25104
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -25206,7 +25241,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25206
25241
|
}
|
|
25207
25242
|
}
|
|
25208
25243
|
|
|
25209
|
-
@media screen and (max-width: 90.625rem) {
|
|
25244
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
25210
25245
|
.pf-m-tree-view-grid-2xl.pf-v6-c-table {
|
|
25211
25246
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
25212
25247
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -26534,6 +26569,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
26534
26569
|
--pf-v6-c-title--m-h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
26535
26570
|
--pf-v6-c-title--m-h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
|
26536
26571
|
--pf-v6-c-title--m-h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
|
26572
|
+
--pf-v6-c-title--m-page-title--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
|
26537
26573
|
}
|
|
26538
26574
|
|
|
26539
26575
|
.pf-v6-c-title {
|
|
@@ -26600,6 +26636,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
26600
26636
|
font-weight: var(--pf-v6-c-title--m-h6--FontWeight);
|
|
26601
26637
|
line-height: var(--pf-v6-c-title--m-h6--LineHeight);
|
|
26602
26638
|
}
|
|
26639
|
+
.pf-v6-c-title.pf-m-page-title {
|
|
26640
|
+
font-weight: var(--pf-v6-c-title--m-page-title--FontWeight);
|
|
26641
|
+
}
|
|
26603
26642
|
|
|
26604
26643
|
.pf-v6-c-toggle-group {
|
|
26605
26644
|
--pf-v6-c-toggle-group__button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
@@ -29371,7 +29410,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
29371
29410
|
--pf-v6-c-wizard__toggle-separator--Color: var(--pf-t--global--border--color--default);
|
|
29372
29411
|
--pf-v6-c-wizard__toggle-icon--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
29373
29412
|
--pf-v6-c-wizard__toggle--m-expanded__toggle-icon--Rotate: 180deg;
|
|
29374
|
-
--pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--
|
|
29413
|
+
--pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--sm);
|
|
29375
29414
|
--pf-v6-c-wizard__nav--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
29376
29415
|
--pf-v6-c-wizard__nav--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
29377
29416
|
--pf-v6-c-wizard__nav--Width: 100%;
|
package/patternfly.css
CHANGED
|
@@ -10403,9 +10403,22 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
10403
10403
|
--pf-v6-c-code-editor__tab-icon--text--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
10404
10404
|
}
|
|
10405
10405
|
|
|
10406
|
+
.pf-v6-c-code-editor {
|
|
10407
|
+
display: flex;
|
|
10408
|
+
flex-direction: column;
|
|
10409
|
+
}
|
|
10406
10410
|
.pf-v6-c-code-editor.pf-m-read-only {
|
|
10407
10411
|
--pf-v6-c-code-editor__main--BackgroundColor: var(--pf-v6-c-code-editor--m-read-only__main--BackgroundColor);
|
|
10408
10412
|
}
|
|
10413
|
+
.pf-v6-c-code-editor.pf-m-full-height {
|
|
10414
|
+
height: 100%;
|
|
10415
|
+
}
|
|
10416
|
+
|
|
10417
|
+
.pf-v6-c-code-editor__container {
|
|
10418
|
+
display: flex;
|
|
10419
|
+
flex-direction: column;
|
|
10420
|
+
flex-grow: 1;
|
|
10421
|
+
}
|
|
10409
10422
|
|
|
10410
10423
|
.pf-v6-c-code-editor__header {
|
|
10411
10424
|
position: relative;
|
|
@@ -10472,6 +10485,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
10472
10485
|
|
|
10473
10486
|
.pf-v6-c-code-editor__main {
|
|
10474
10487
|
position: relative;
|
|
10488
|
+
flex-grow: 1;
|
|
10475
10489
|
color: var(--pf-v6-c-code-editor__main--Color, inherit);
|
|
10476
10490
|
background-color: var(--pf-v6-c-code-editor__main--BackgroundColor);
|
|
10477
10491
|
border: var(--pf-v6-c-code-editor__main--BorderWidth) solid;
|
|
@@ -10493,6 +10507,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
10493
10507
|
|
|
10494
10508
|
.pf-v6-c-code-editor__code {
|
|
10495
10509
|
position: relative;
|
|
10510
|
+
height: 100%;
|
|
10496
10511
|
padding-block-start: var(--pf-v6-c-code-editor__code--PaddingBlockStart);
|
|
10497
10512
|
padding-block-end: var(--pf-v6-c-code-editor__code--PaddingBlockEnd);
|
|
10498
10513
|
padding-inline-start: var(--pf-v6-c-code-editor__code--PaddingInlineStart);
|
|
@@ -10565,6 +10580,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
10565
10580
|
--pf-v6-c-content--h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
10566
10581
|
--pf-v6-c-content--h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
|
10567
10582
|
--pf-v6-c-content--h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
|
10583
|
+
--pf-v6-c-content--heading--m-page-title--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
|
10568
10584
|
--pf-v6-c-content--small--MarginBlockEnd: var(--pf-t--global--spacer--md);
|
|
10569
10585
|
--pf-v6-c-content--small--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
10570
10586
|
--pf-v6-c-content--small--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
@@ -10664,6 +10680,14 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
10664
10680
|
.pf-v6-c-content--h6, .pf-v6-c-content h1, .pf-v6-c-content h2, .pf-v6-c-content h3, .pf-v6-c-content h4, .pf-v6-c-content h5, .pf-v6-c-content h6):last-child {
|
|
10665
10681
|
margin-block-end: 0;
|
|
10666
10682
|
}
|
|
10683
|
+
:is(.pf-v6-c-content--h1,
|
|
10684
|
+
.pf-v6-c-content--h2,
|
|
10685
|
+
.pf-v6-c-content--h3,
|
|
10686
|
+
.pf-v6-c-content--h4,
|
|
10687
|
+
.pf-v6-c-content--h5,
|
|
10688
|
+
.pf-v6-c-content--h6, .pf-v6-c-content h1, .pf-v6-c-content h2, .pf-v6-c-content h3, .pf-v6-c-content h4, .pf-v6-c-content h5, .pf-v6-c-content h6).pf-m-page-title {
|
|
10689
|
+
font-weight: var(--pf-v6-c-content--heading--m-page-title--FontWeight);
|
|
10690
|
+
}
|
|
10667
10691
|
|
|
10668
10692
|
:is(.pf-v6-c-content--h1, .pf-v6-c-content h1) {
|
|
10669
10693
|
margin-block-start: var(--pf-v6-c-content--h1--MarginBlockStart);
|
|
@@ -15434,6 +15458,7 @@ label.pf-v6-c-input-group__text {
|
|
|
15434
15458
|
--pf-v6-c-label--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
15435
15459
|
--pf-v6-c-label--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
|
15436
15460
|
--pf-v6-c-label--MaxWidth: 100%;
|
|
15461
|
+
--pf-v6-c-label--MinWidth: 3em;
|
|
15437
15462
|
--pf-v6-c-label--BorderWidth: 0;
|
|
15438
15463
|
--pf-v6-c-label--BorderColor: transparent;
|
|
15439
15464
|
--pf-v6-c-label--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
@@ -15623,6 +15648,7 @@ label.pf-v6-c-input-group__text {
|
|
|
15623
15648
|
|
|
15624
15649
|
.pf-v6-c-label {
|
|
15625
15650
|
position: relative;
|
|
15651
|
+
min-width: var(--pf-v6-c-label--MinWidth);
|
|
15626
15652
|
max-width: var(--pf-v6-c-label--MaxWidth);
|
|
15627
15653
|
padding-block-start: var(--pf-v6-c-label--PaddingBlockStart);
|
|
15628
15654
|
padding-block-end: var(--pf-v6-c-label--PaddingBlockEnd);
|
|
@@ -15925,16 +15951,22 @@ input.pf-v6-c-label__content {
|
|
|
15925
15951
|
.pf-v6-c-label-group {
|
|
15926
15952
|
--pf-v6-c-label-group--RowGap: var(--pf-t--global--spacer--sm);
|
|
15927
15953
|
--pf-v6-c-label-group--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
15954
|
+
--pf-v6-c-label-group--MaxWidth: 100%;
|
|
15928
15955
|
--pf-v6-c-label-group--m-vertical--RowGap: var(--pf-t--global--spacer--sm);
|
|
15929
15956
|
--pf-v6-c-label-group--m-vertical--ColumnGap: var(--pf-t--global--spacer--sm);
|
|
15930
15957
|
--pf-v6-c-label-group__main--RowGap: var(--pf-t--global--spacer--xs);
|
|
15931
15958
|
--pf-v6-c-label-group__main--ColumnGap: var(--pf-t--global--spacer--sm);
|
|
15959
|
+
--pf-v6-c-label-group__main--MaxWidth: 100%;
|
|
15960
|
+
--pf-v6-c-label-group__main--MinWidth: 0;
|
|
15932
15961
|
--pf-v6-c-label-group--m-vertical__main--RowGap: var(--pf-t--global--spacer--sm);
|
|
15933
15962
|
--pf-v6-c-label-group--m-vertical__main--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
15934
15963
|
--pf-v6-c-label-group__list--RowGap: var(--pf-t--global--spacer--xs);
|
|
15935
15964
|
--pf-v6-c-label-group__list--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
15965
|
+
--pf-v6-c-label-group__list--MaxWidth: 100%;
|
|
15966
|
+
--pf-v6-c-label-group__list--MinWidth: 0;
|
|
15936
15967
|
--pf-v6-c-label-group--m-vertical__list--RowGap: var(--pf-t--global--spacer--xs);
|
|
15937
15968
|
--pf-v6-c-label-group--m-vertical__list--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
15969
|
+
--pf-v6-c-label-group__list-item--MaxWidth: 100%;
|
|
15938
15970
|
--pf-v6-c-label-group--m-category--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
15939
15971
|
--pf-v6-c-label-group--m-category--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
15940
15972
|
--pf-v6-c-label-group--m-category--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
@@ -15961,6 +15993,7 @@ input.pf-v6-c-label__content {
|
|
|
15961
15993
|
row-gap: var(--pf-v6-c-label-group--RowGap);
|
|
15962
15994
|
column-gap: var(--pf-v6-c-label-group--ColumnGap);
|
|
15963
15995
|
align-items: center;
|
|
15996
|
+
max-width: var(--pf-v6-c-label-group--MaxWidth);
|
|
15964
15997
|
}
|
|
15965
15998
|
.pf-v6-c-label-group.pf-m-category {
|
|
15966
15999
|
padding-block-start: var(--pf-v6-c-label-group--m-category--PaddingBlockStart);
|
|
@@ -15986,9 +16019,11 @@ input.pf-v6-c-label__content {
|
|
|
15986
16019
|
.pf-v6-c-label-group.pf-m-vertical .pf-v6-c-label-group__list {
|
|
15987
16020
|
flex-direction: column;
|
|
15988
16021
|
align-items: flex-start;
|
|
16022
|
+
max-width: var(--pf-v6-c-label-group__list--MaxWidth);
|
|
15989
16023
|
}
|
|
15990
16024
|
.pf-v6-c-label-group.pf-m-vertical .pf-v6-c-label-group__main {
|
|
15991
16025
|
flex-direction: column;
|
|
16026
|
+
min-width: var(--pf-v6-c-label-group__main--MinWidth);
|
|
15992
16027
|
}
|
|
15993
16028
|
.pf-v6-c-label-group.pf-m-editable,
|
|
15994
16029
|
.pf-v6-c-label-group.pf-m-editable .pf-v6-c-label-group__main,
|
|
@@ -16009,6 +16044,7 @@ input.pf-v6-c-label__content {
|
|
|
16009
16044
|
row-gap: var(--pf-v6-c-label-group__main--RowGap);
|
|
16010
16045
|
column-gap: var(--pf-v6-c-label-group__main--ColumnGap);
|
|
16011
16046
|
align-items: baseline;
|
|
16047
|
+
min-width: var(--pf-v6-c-label-group__main--MinWidth);
|
|
16012
16048
|
}
|
|
16013
16049
|
|
|
16014
16050
|
.pf-v6-c-label-group__list {
|
|
@@ -16016,10 +16052,12 @@ input.pf-v6-c-label__content {
|
|
|
16016
16052
|
flex-wrap: wrap;
|
|
16017
16053
|
row-gap: var(--pf-v6-c-label-group__list--RowGap);
|
|
16018
16054
|
column-gap: var(--pf-v6-c-label-group__list--ColumnGap);
|
|
16055
|
+
min-width: var(--pf-v6-c-label-group__list--MinWidth);
|
|
16019
16056
|
}
|
|
16020
16057
|
|
|
16021
16058
|
.pf-v6-c-label-group__list-item {
|
|
16022
16059
|
display: inline-flex;
|
|
16060
|
+
max-width: var(--pf-v6-c-label-group__list-item--MaxWidth);
|
|
16023
16061
|
}
|
|
16024
16062
|
|
|
16025
16063
|
.pf-v6-c-label-group__label {
|
|
@@ -17881,13 +17919,6 @@ ul.pf-v6-c-list {
|
|
|
17881
17919
|
flex-wrap: nowrap;
|
|
17882
17920
|
}
|
|
17883
17921
|
|
|
17884
|
-
.pf-v6-c-menu-toggle__controls,
|
|
17885
|
-
.pf-v6-c-menu-toggle__toggle-icon {
|
|
17886
|
-
display: flex;
|
|
17887
|
-
align-items: center;
|
|
17888
|
-
justify-content: center;
|
|
17889
|
-
}
|
|
17890
|
-
|
|
17891
17922
|
.pf-v6-c-menu-toggle__icon {
|
|
17892
17923
|
flex-shrink: 0;
|
|
17893
17924
|
}
|
|
@@ -17899,7 +17930,10 @@ ul.pf-v6-c-list {
|
|
|
17899
17930
|
}
|
|
17900
17931
|
|
|
17901
17932
|
.pf-v6-c-menu-toggle__controls {
|
|
17933
|
+
display: flex;
|
|
17902
17934
|
gap: var(--pf-v6-c-menu-toggle__controls--Gap);
|
|
17935
|
+
align-items: center;
|
|
17936
|
+
justify-content: center;
|
|
17903
17937
|
margin-inline-start: auto;
|
|
17904
17938
|
}
|
|
17905
17939
|
|
|
@@ -22525,7 +22559,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
22525
22559
|
--pf-v6-c-table--cell--Width: auto;
|
|
22526
22560
|
}
|
|
22527
22561
|
|
|
22528
|
-
@media screen and (max-width: 48rem) {
|
|
22562
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
22529
22563
|
.pf-m-grid-md.pf-v6-c-table {
|
|
22530
22564
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
22531
22565
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -22795,14 +22829,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
22795
22829
|
text-align: end;
|
|
22796
22830
|
}
|
|
22797
22831
|
}
|
|
22798
|
-
@media screen and (max-width: 48rem) and (max-width: 36rem) {
|
|
22832
|
+
@media screen and (max-width: calc(48rem - 1px)) and (max-width: 36rem) {
|
|
22799
22833
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__action {
|
|
22800
22834
|
grid-row-start: 1;
|
|
22801
22835
|
grid-column-start: 2;
|
|
22802
22836
|
margin-inline-start: 0;
|
|
22803
22837
|
}
|
|
22804
22838
|
}
|
|
22805
|
-
@media screen and (max-width: 48rem) {
|
|
22839
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
22806
22840
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
22807
22841
|
grid-column: 2;
|
|
22808
22842
|
grid-row: 2;
|
|
@@ -22828,7 +22862,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
22828
22862
|
}
|
|
22829
22863
|
}
|
|
22830
22864
|
|
|
22831
|
-
@media screen and (max-width: 62rem) {
|
|
22865
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
22832
22866
|
.pf-m-grid-lg.pf-v6-c-table {
|
|
22833
22867
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
22834
22868
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -23098,14 +23132,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
23098
23132
|
text-align: end;
|
|
23099
23133
|
}
|
|
23100
23134
|
}
|
|
23101
|
-
@media screen and (max-width: 62rem) and (max-width: 36rem) {
|
|
23135
|
+
@media screen and (max-width: calc(62rem - 1px)) and (max-width: 36rem) {
|
|
23102
23136
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__action {
|
|
23103
23137
|
grid-row-start: 1;
|
|
23104
23138
|
grid-column-start: 2;
|
|
23105
23139
|
margin-inline-start: 0;
|
|
23106
23140
|
}
|
|
23107
23141
|
}
|
|
23108
|
-
@media screen and (max-width: 62rem) {
|
|
23142
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
23109
23143
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
23110
23144
|
grid-column: 2;
|
|
23111
23145
|
grid-row: 2;
|
|
@@ -23131,7 +23165,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
23131
23165
|
}
|
|
23132
23166
|
}
|
|
23133
23167
|
|
|
23134
|
-
@media screen and (max-width: 75rem) {
|
|
23168
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
23135
23169
|
.pf-m-grid-xl.pf-v6-c-table {
|
|
23136
23170
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
23137
23171
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -23401,14 +23435,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
23401
23435
|
text-align: end;
|
|
23402
23436
|
}
|
|
23403
23437
|
}
|
|
23404
|
-
@media screen and (max-width: 75rem) and (max-width: 36rem) {
|
|
23438
|
+
@media screen and (max-width: calc(75rem - 1px)) and (max-width: 36rem) {
|
|
23405
23439
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
23406
23440
|
grid-row-start: 1;
|
|
23407
23441
|
grid-column-start: 2;
|
|
23408
23442
|
margin-inline-start: 0;
|
|
23409
23443
|
}
|
|
23410
23444
|
}
|
|
23411
|
-
@media screen and (max-width: 75rem) {
|
|
23445
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
23412
23446
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
23413
23447
|
grid-column: 2;
|
|
23414
23448
|
grid-row: 2;
|
|
@@ -23434,7 +23468,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
23434
23468
|
}
|
|
23435
23469
|
}
|
|
23436
23470
|
|
|
23437
|
-
@media screen and (max-width: 90.625rem) {
|
|
23471
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
23438
23472
|
.pf-m-grid-2xl.pf-v6-c-table {
|
|
23439
23473
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
23440
23474
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -23704,14 +23738,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
23704
23738
|
text-align: end;
|
|
23705
23739
|
}
|
|
23706
23740
|
}
|
|
23707
|
-
@media screen and (max-width: 90.625rem) and (max-width: 36rem) {
|
|
23741
|
+
@media screen and (max-width: calc(90.625rem - 1px)) and (max-width: 36rem) {
|
|
23708
23742
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
23709
23743
|
grid-row-start: 1;
|
|
23710
23744
|
grid-column-start: 2;
|
|
23711
23745
|
margin-inline-start: 0;
|
|
23712
23746
|
}
|
|
23713
23747
|
}
|
|
23714
|
-
@media screen and (max-width: 90.625rem) {
|
|
23748
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
23715
23749
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
23716
23750
|
grid-column: 2;
|
|
23717
23751
|
grid-row: 2;
|
|
@@ -24265,6 +24299,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
24265
24299
|
.pf-v6-c-table .pf-v6-c-table__draggable {
|
|
24266
24300
|
--pf-v6-c-table--cell--MinWidth: 0;
|
|
24267
24301
|
--pf-v6-c-table--cell--Width: 1%;
|
|
24302
|
+
max-width: none;
|
|
24268
24303
|
}
|
|
24269
24304
|
|
|
24270
24305
|
.pf-v6-c-table .pf-v6-c-table__favorite {
|
|
@@ -24913,7 +24948,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
24913
24948
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingInlineStart: calc(var(--pf-v6-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v6-c-table__tree-view-main--indent--base));
|
|
24914
24949
|
}
|
|
24915
24950
|
|
|
24916
|
-
@media screen and (max-width: 48rem) {
|
|
24951
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
24917
24952
|
.pf-m-tree-view-grid-md.pf-v6-c-table {
|
|
24918
24953
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
24919
24954
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -25056,7 +25091,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25056
25091
|
}
|
|
25057
25092
|
}
|
|
25058
25093
|
|
|
25059
|
-
@media screen and (max-width: 62rem) {
|
|
25094
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
25060
25095
|
.pf-m-tree-view-grid-lg.pf-v6-c-table {
|
|
25061
25096
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
25062
25097
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -25199,7 +25234,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25199
25234
|
}
|
|
25200
25235
|
}
|
|
25201
25236
|
|
|
25202
|
-
@media screen and (max-width: 75rem) {
|
|
25237
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
25203
25238
|
.pf-m-tree-view-grid-xl.pf-v6-c-table {
|
|
25204
25239
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
25205
25240
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -25342,7 +25377,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25342
25377
|
}
|
|
25343
25378
|
}
|
|
25344
25379
|
|
|
25345
|
-
@media screen and (max-width: 90.625rem) {
|
|
25380
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
25346
25381
|
.pf-m-tree-view-grid-2xl.pf-v6-c-table {
|
|
25347
25382
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
25348
25383
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -26670,6 +26705,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
26670
26705
|
--pf-v6-c-title--m-h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
26671
26706
|
--pf-v6-c-title--m-h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
|
26672
26707
|
--pf-v6-c-title--m-h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
|
26708
|
+
--pf-v6-c-title--m-page-title--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
|
26673
26709
|
}
|
|
26674
26710
|
|
|
26675
26711
|
.pf-v6-c-title {
|
|
@@ -26736,6 +26772,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
26736
26772
|
font-weight: var(--pf-v6-c-title--m-h6--FontWeight);
|
|
26737
26773
|
line-height: var(--pf-v6-c-title--m-h6--LineHeight);
|
|
26738
26774
|
}
|
|
26775
|
+
.pf-v6-c-title.pf-m-page-title {
|
|
26776
|
+
font-weight: var(--pf-v6-c-title--m-page-title--FontWeight);
|
|
26777
|
+
}
|
|
26739
26778
|
|
|
26740
26779
|
.pf-v6-c-toggle-group {
|
|
26741
26780
|
--pf-v6-c-toggle-group__button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
@@ -29507,7 +29546,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
29507
29546
|
--pf-v6-c-wizard__toggle-separator--Color: var(--pf-t--global--border--color--default);
|
|
29508
29547
|
--pf-v6-c-wizard__toggle-icon--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
29509
29548
|
--pf-v6-c-wizard__toggle--m-expanded__toggle-icon--Rotate: 180deg;
|
|
29510
|
-
--pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--
|
|
29549
|
+
--pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--sm);
|
|
29511
29550
|
--pf-v6-c-wizard__nav--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
29512
29551
|
--pf-v6-c-wizard__nav--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
29513
29552
|
--pf-v6-c-wizard__nav--Width: 100%;
|