@patternfly/patternfly 6.6.0-prerelease.27 → 6.6.0-prerelease.29
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/Label/label.css +9 -3
- package/components/Label/label.scss +9 -3
- package/components/Table/table-grid.css +25 -13
- package/components/Table/table-grid.scss +10 -5
- package/components/_index.css +34 -16
- package/docs/components/CodeEditor/examples/CodeEditor.md +131 -47
- package/docs/components/DataList/examples/DataList.md +143 -11
- package/docs/components/DatePicker/examples/DatePicker.md +26 -2
- package/docs/components/DescriptionList/examples/DescriptionList.md +115 -55
- package/docs/components/DualListSelector/examples/DualListSelector.md +270 -54
- package/docs/components/EmptyState/examples/EmptyState.md +12 -12
- package/docs/components/FileUpload/examples/FileUpload.md +26 -2
- package/docs/components/Form/examples/Form.md +104 -8
- package/docs/components/FormControl/examples/FormControl.md +260 -20
- package/docs/components/HelperText/examples/HelperText.md +139 -11
- package/docs/components/Icon/examples/Icon.md +403 -31
- package/docs/components/InlineEdit/examples/InlineEdit.md +13 -1
- package/docs/components/InputGroup/examples/InputGroup.md +19 -7
- package/docs/components/Label/examples/Label.md +4029 -765
- package/docs/components/List/examples/List.md +78 -6
- package/docs/components/Login/examples/Login.md +104 -8
- package/docs/components/Menu/examples/Menu.md +221 -17
- package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +247 -19
- package/docs/components/NumberInput/examples/NumberInput.md +301 -25
- package/docs/components/ProgressStepper/examples/ProgressStepper.md +169 -13
- package/docs/components/Switch/examples/Switch.md +52 -4
- package/docs/components/Table/examples/Table.md +936 -72
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +309 -81
- package/docs/components/Toolbar/examples/Toolbar.md +117 -9
- package/docs/components/TreeView/examples/TreeView.md +186 -18
- package/docs/components/Wizard/examples/Wizard.md +325 -25
- package/docs/demos/Alert/examples/Alert.md +149 -26
- package/docs/demos/Card/examples/Card.md +280 -34
- package/docs/demos/Dashboard/examples/Dashboard.md +72 -18
- package/docs/demos/DataList/examples/DataList.md +26 -2
- package/docs/demos/Form/examples/BasicForms.md +56 -8
- package/docs/demos/HelperText/examples/HelperText.md +104 -8
- package/docs/demos/Masthead/examples/Masthead.md +52 -4
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +176 -14
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +52 -4
- package/docs/demos/Table/examples/Table.md +247 -19
- package/docs/demos/Toolbar/examples/Toolbar.md +103 -10
- package/docs/demos/Wizard/examples/Wizard.md +117 -9
- package/package.json +6 -6
- package/patternfly-no-globals.css +34 -16
- package/patternfly.css +34 -16
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -485,7 +485,19 @@ wrapperTag: div
|
|
|
485
485
|
<span class="pf-v6-c-wizard__toggle-list-item">Substep B</span>
|
|
486
486
|
</span>
|
|
487
487
|
<span class="pf-v6-c-wizard__toggle-icon">
|
|
488
|
-
<
|
|
488
|
+
<svg
|
|
489
|
+
class="pf-v6-svg"
|
|
490
|
+
fill="currentColor"
|
|
491
|
+
viewBox="0 0 32 32"
|
|
492
|
+
aria-hidden="true"
|
|
493
|
+
role="img"
|
|
494
|
+
width="1em"
|
|
495
|
+
height="1em"
|
|
496
|
+
>
|
|
497
|
+
<path
|
|
498
|
+
d="M29.707 11.707 17.061 24.353c-.292.292-.677.438-1.061.438s-.769-.146-1.061-.438L2.293 11.707A1 1 0 0 1 3 10h26a1 1 0 0 1 .707 1.707Z"
|
|
499
|
+
/>
|
|
500
|
+
</svg>
|
|
489
501
|
</span>
|
|
490
502
|
</button>
|
|
491
503
|
<div class="pf-v6-c-wizard__outer-wrap">
|
|
@@ -1236,7 +1248,19 @@ wrapperTag: div
|
|
|
1236
1248
|
<span class="pf-v6-c-wizard__toggle-list-item">Substep B</span>
|
|
1237
1249
|
</span>
|
|
1238
1250
|
<span class="pf-v6-c-wizard__toggle-icon">
|
|
1239
|
-
<
|
|
1251
|
+
<svg
|
|
1252
|
+
class="pf-v6-svg"
|
|
1253
|
+
fill="currentColor"
|
|
1254
|
+
viewBox="0 0 32 32"
|
|
1255
|
+
aria-hidden="true"
|
|
1256
|
+
role="img"
|
|
1257
|
+
width="1em"
|
|
1258
|
+
height="1em"
|
|
1259
|
+
>
|
|
1260
|
+
<path
|
|
1261
|
+
d="M29.707 11.707 17.061 24.353c-.292.292-.677.438-1.061.438s-.769-.146-1.061-.438L2.293 11.707A1 1 0 0 1 3 10h26a1 1 0 0 1 .707 1.707Z"
|
|
1262
|
+
/>
|
|
1263
|
+
</svg>
|
|
1240
1264
|
</span>
|
|
1241
1265
|
</button>
|
|
1242
1266
|
<div class="pf-v6-c-wizard__outer-wrap">
|
|
@@ -1969,7 +1993,19 @@ wrapperTag: div
|
|
|
1969
1993
|
<span class="pf-v6-c-wizard__toggle-list-item">Substep B</span>
|
|
1970
1994
|
</span>
|
|
1971
1995
|
<span class="pf-v6-c-wizard__toggle-icon">
|
|
1972
|
-
<
|
|
1996
|
+
<svg
|
|
1997
|
+
class="pf-v6-svg"
|
|
1998
|
+
fill="currentColor"
|
|
1999
|
+
viewBox="0 0 32 32"
|
|
2000
|
+
aria-hidden="true"
|
|
2001
|
+
role="img"
|
|
2002
|
+
width="1em"
|
|
2003
|
+
height="1em"
|
|
2004
|
+
>
|
|
2005
|
+
<path
|
|
2006
|
+
d="M29.707 11.707 17.061 24.353c-.292.292-.677.438-1.061.438s-.769-.146-1.061-.438L2.293 11.707A1 1 0 0 1 3 10h26a1 1 0 0 1 .707 1.707Z"
|
|
2007
|
+
/>
|
|
2008
|
+
</svg>
|
|
1973
2009
|
</span>
|
|
1974
2010
|
</button>
|
|
1975
2011
|
<div class="pf-v6-c-wizard__outer-wrap">
|
|
@@ -2798,7 +2834,19 @@ wrapperTag: div
|
|
|
2798
2834
|
<span class="pf-v6-c-wizard__toggle-list-item">Substep B</span>
|
|
2799
2835
|
</span>
|
|
2800
2836
|
<span class="pf-v6-c-wizard__toggle-icon">
|
|
2801
|
-
<
|
|
2837
|
+
<svg
|
|
2838
|
+
class="pf-v6-svg"
|
|
2839
|
+
fill="currentColor"
|
|
2840
|
+
viewBox="0 0 32 32"
|
|
2841
|
+
aria-hidden="true"
|
|
2842
|
+
role="img"
|
|
2843
|
+
width="1em"
|
|
2844
|
+
height="1em"
|
|
2845
|
+
>
|
|
2846
|
+
<path
|
|
2847
|
+
d="M29.707 11.707 17.061 24.353c-.292.292-.677.438-1.061.438s-.769-.146-1.061-.438L2.293 11.707A1 1 0 0 1 3 10h26a1 1 0 0 1 .707 1.707Z"
|
|
2848
|
+
/>
|
|
2849
|
+
</svg>
|
|
2802
2850
|
</span>
|
|
2803
2851
|
</button>
|
|
2804
2852
|
<div class="pf-v6-c-wizard__outer-wrap">
|
|
@@ -3623,7 +3671,19 @@ wrapperTag: div
|
|
|
3623
3671
|
<span class="pf-v6-c-wizard__toggle-list-item">Substep B</span>
|
|
3624
3672
|
</span>
|
|
3625
3673
|
<span class="pf-v6-c-wizard__toggle-icon">
|
|
3626
|
-
<
|
|
3674
|
+
<svg
|
|
3675
|
+
class="pf-v6-svg"
|
|
3676
|
+
fill="currentColor"
|
|
3677
|
+
viewBox="0 0 32 32"
|
|
3678
|
+
aria-hidden="true"
|
|
3679
|
+
role="img"
|
|
3680
|
+
width="1em"
|
|
3681
|
+
height="1em"
|
|
3682
|
+
>
|
|
3683
|
+
<path
|
|
3684
|
+
d="M29.707 11.707 17.061 24.353c-.292.292-.677.438-1.061.438s-.769-.146-1.061-.438L2.293 11.707A1 1 0 0 1 3 10h26a1 1 0 0 1 .707 1.707Z"
|
|
3685
|
+
/>
|
|
3686
|
+
</svg>
|
|
3627
3687
|
</span>
|
|
3628
3688
|
</button>
|
|
3629
3689
|
<div class="pf-v6-c-wizard__outer-wrap">
|
|
@@ -4246,7 +4306,19 @@ wrapperTag: div
|
|
|
4246
4306
|
<span class="pf-v6-c-wizard__toggle-list-item">Substep B</span>
|
|
4247
4307
|
</span>
|
|
4248
4308
|
<span class="pf-v6-c-wizard__toggle-icon">
|
|
4249
|
-
<
|
|
4309
|
+
<svg
|
|
4310
|
+
class="pf-v6-svg"
|
|
4311
|
+
fill="currentColor"
|
|
4312
|
+
viewBox="0 0 32 32"
|
|
4313
|
+
aria-hidden="true"
|
|
4314
|
+
role="img"
|
|
4315
|
+
width="1em"
|
|
4316
|
+
height="1em"
|
|
4317
|
+
>
|
|
4318
|
+
<path
|
|
4319
|
+
d="M29.707 11.707 17.061 24.353c-.292.292-.677.438-1.061.438s-.769-.146-1.061-.438L2.293 11.707A1 1 0 0 1 3 10h26a1 1 0 0 1 .707 1.707Z"
|
|
4320
|
+
/>
|
|
4321
|
+
</svg>
|
|
4250
4322
|
</span>
|
|
4251
4323
|
</button>
|
|
4252
4324
|
<div class="pf-v6-c-wizard__outer-wrap">
|
|
@@ -4929,7 +5001,19 @@ wrapperTag: div
|
|
|
4929
5001
|
<span class="pf-v6-c-wizard__toggle-list-item">Substep B</span>
|
|
4930
5002
|
</span>
|
|
4931
5003
|
<span class="pf-v6-c-wizard__toggle-icon">
|
|
4932
|
-
<
|
|
5004
|
+
<svg
|
|
5005
|
+
class="pf-v6-svg"
|
|
5006
|
+
fill="currentColor"
|
|
5007
|
+
viewBox="0 0 32 32"
|
|
5008
|
+
aria-hidden="true"
|
|
5009
|
+
role="img"
|
|
5010
|
+
width="1em"
|
|
5011
|
+
height="1em"
|
|
5012
|
+
>
|
|
5013
|
+
<path
|
|
5014
|
+
d="M29.707 11.707 17.061 24.353c-.292.292-.677.438-1.061.438s-.769-.146-1.061-.438L2.293 11.707A1 1 0 0 1 3 10h26a1 1 0 0 1 .707 1.707Z"
|
|
5015
|
+
/>
|
|
5016
|
+
</svg>
|
|
4933
5017
|
</span>
|
|
4934
5018
|
</button>
|
|
4935
5019
|
<div class="pf-v6-c-wizard__outer-wrap">
|
|
@@ -5594,7 +5678,19 @@ wrapperTag: div
|
|
|
5594
5678
|
<span class="pf-v6-c-wizard__toggle-list-item">Substep B</span>
|
|
5595
5679
|
</span>
|
|
5596
5680
|
<span class="pf-v6-c-wizard__toggle-icon">
|
|
5597
|
-
<
|
|
5681
|
+
<svg
|
|
5682
|
+
class="pf-v6-svg"
|
|
5683
|
+
fill="currentColor"
|
|
5684
|
+
viewBox="0 0 32 32"
|
|
5685
|
+
aria-hidden="true"
|
|
5686
|
+
role="img"
|
|
5687
|
+
width="1em"
|
|
5688
|
+
height="1em"
|
|
5689
|
+
>
|
|
5690
|
+
<path
|
|
5691
|
+
d="M29.707 11.707 17.061 24.353c-.292.292-.677.438-1.061.438s-.769-.146-1.061-.438L2.293 11.707A1 1 0 0 1 3 10h26a1 1 0 0 1 .707 1.707Z"
|
|
5692
|
+
/>
|
|
5693
|
+
</svg>
|
|
5598
5694
|
</span>
|
|
5599
5695
|
</button>
|
|
5600
5696
|
<div class="pf-v6-c-wizard__outer-wrap">
|
|
@@ -6342,7 +6438,19 @@ wrapperTag: div
|
|
|
6342
6438
|
<span class="pf-v6-c-wizard__toggle-list-item">Substep B</span>
|
|
6343
6439
|
</span>
|
|
6344
6440
|
<span class="pf-v6-c-wizard__toggle-icon">
|
|
6345
|
-
<
|
|
6441
|
+
<svg
|
|
6442
|
+
class="pf-v6-svg"
|
|
6443
|
+
fill="currentColor"
|
|
6444
|
+
viewBox="0 0 32 32"
|
|
6445
|
+
aria-hidden="true"
|
|
6446
|
+
role="img"
|
|
6447
|
+
width="1em"
|
|
6448
|
+
height="1em"
|
|
6449
|
+
>
|
|
6450
|
+
<path
|
|
6451
|
+
d="M29.707 11.707 17.061 24.353c-.292.292-.677.438-1.061.438s-.769-.146-1.061-.438L2.293 11.707A1 1 0 0 1 3 10h26a1 1 0 0 1 .707 1.707Z"
|
|
6452
|
+
/>
|
|
6453
|
+
</svg>
|
|
6346
6454
|
</span>
|
|
6347
6455
|
</button>
|
|
6348
6456
|
<div class="pf-v6-c-wizard__outer-wrap">
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/patternfly",
|
|
3
3
|
"description": "Assets, source, tooling, and content for PatternFly",
|
|
4
|
-
"version": "6.6.0-prerelease.
|
|
4
|
+
"version": "6.6.0-prerelease.29",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -71,12 +71,12 @@
|
|
|
71
71
|
"@commitlint/config-conventional": "^19.1.0",
|
|
72
72
|
"@fortawesome/fontawesome": "^1.1.8",
|
|
73
73
|
"@octokit/rest": "^20.1.0",
|
|
74
|
-
"@patternfly/documentation-framework": "6.
|
|
74
|
+
"@patternfly/documentation-framework": "6.51.6",
|
|
75
75
|
"@patternfly/patternfly-a11y": "5.2.1",
|
|
76
|
-
"@patternfly/react-code-editor": "6.6.
|
|
77
|
-
"@patternfly/react-core": "6.6.
|
|
78
|
-
"@patternfly/react-icons": "6.6.
|
|
79
|
-
"@patternfly/react-table": "6.6.
|
|
76
|
+
"@patternfly/react-code-editor": "6.6.1",
|
|
77
|
+
"@patternfly/react-core": "6.6.1",
|
|
78
|
+
"@patternfly/react-icons": "6.6.1",
|
|
79
|
+
"@patternfly/react-table": "6.6.1",
|
|
80
80
|
"@rspack/cli": "^1.6.0",
|
|
81
81
|
"@rspack/core": "^1.6.0",
|
|
82
82
|
"@rspack/dev-server": "^1.1.4",
|
|
@@ -19580,7 +19580,6 @@ label.pf-v6-c-input-group__text {
|
|
|
19580
19580
|
position: absolute;
|
|
19581
19581
|
inset: 0;
|
|
19582
19582
|
z-index: -1;
|
|
19583
|
-
pointer-events: none;
|
|
19584
19583
|
content: "";
|
|
19585
19584
|
background-color: var(--pf-v6-c-label--BackgroundColor);
|
|
19586
19585
|
border: var(--pf-v6-c-label--BorderWidth) solid var(--pf-v6-c-label--BorderColor);
|
|
@@ -19599,8 +19598,15 @@ input.pf-v6-c-label__content {
|
|
|
19599
19598
|
.pf-v6-c-label__actions {
|
|
19600
19599
|
margin-inline-end: var(--pf-v6-c-label__actions--MarginInlineEnd);
|
|
19601
19600
|
}
|
|
19602
|
-
.pf-v6-c-label
|
|
19603
|
-
--pf-v6-c-
|
|
19601
|
+
.pf-v6-c-label .pf-v6-c-label__actions .pf-v6-c-button {
|
|
19602
|
+
padding-block-start: var(--pf-v6-c-label--PaddingBlockStart);
|
|
19603
|
+
padding-block-end: var(--pf-v6-c-label--PaddingBlockEnd);
|
|
19604
|
+
padding-inline-end: var(--pf-v6-c-label--PaddingInlineEnd);
|
|
19605
|
+
margin-block-start: calc(var(--pf-v6-c-label--PaddingBlockStart) * -1);
|
|
19606
|
+
margin-block-end: calc(var(--pf-v6-c-label--PaddingBlockEnd) * -1);
|
|
19607
|
+
margin-inline-end: calc(var(--pf-v6-c-label--PaddingInlineEnd) * -1);
|
|
19608
|
+
border-start-end-radius: var(--pf-v6-c-label--BorderRadius);
|
|
19609
|
+
border-end-end-radius: var(--pf-v6-c-label--BorderRadius);
|
|
19604
19610
|
}
|
|
19605
19611
|
|
|
19606
19612
|
.pf-v6-c-label__actions .pf-v6-c-button {
|
|
@@ -27170,22 +27176,24 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27170
27176
|
--pf-v6-c-table--cell--responsive--PaddingInlineEnd: 0;
|
|
27171
27177
|
--pf-v6-c-table--cell--responsive--PaddingInlineStart: 0;
|
|
27172
27178
|
--pf-v6-c-table--cell--responsive--th--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
27179
|
+
--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
27173
27180
|
--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
27174
27181
|
--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
27175
27182
|
--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
27176
27183
|
--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
27177
|
-
--pf-v6-c-table--m-compact__check--responsive--MarginBlockStart: 0.
|
|
27178
|
-
--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart: calc(var(--pf-t--global--spacer--
|
|
27184
|
+
--pf-v6-c-table--m-compact__check--responsive--MarginBlockStart: calc(var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart) + 0.25rem);
|
|
27185
|
+
--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart: calc(var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart) + var(--pf-t--global--spacer--control--vertical--compact) * -1);
|
|
27179
27186
|
--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd: calc(var(--pf-t--global--spacer--xs) * -1);
|
|
27180
27187
|
--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd: calc(var(--pf-t--global--spacer--xs) * -1);
|
|
27181
27188
|
--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineEnd: var(--pf-t--global--spacer--inset--page-chrome);
|
|
27182
27189
|
--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineStart: var(--pf-t--global--spacer--inset--page-chrome);
|
|
27183
27190
|
--pf-v6-c-table__expandable-row-content--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
27184
27191
|
--pf-v6-c-table__check--responsive--MarginInlineStart: var(--pf-v6-c-table__tbody--responsive--border-width--base);
|
|
27185
|
-
--pf-v6-c-table__check--responsive--MarginBlockStart: 0.
|
|
27192
|
+
--pf-v6-c-table__check--responsive--MarginBlockStart: calc(var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart) + 0.25rem);
|
|
27186
27193
|
--pf-v6-c-table--m-grid__favorite--MarginBlockStart: 0.5rem;
|
|
27187
27194
|
--pf-v6-c-table--m-grid__check--favorite--MarginInlineStart: var(--pf-t--global--spacer--xl);
|
|
27188
27195
|
--pf-v6-c-table__action--responsive--MarginInlineStart: var(--pf-t--global--spacer--xl);
|
|
27196
|
+
--pf-v6-c-table__action--responsive--MarginBlockStart: calc(var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart) + var(--pf-t--global--spacer--control--vertical--plain) * -1);
|
|
27189
27197
|
--pf-v6-c-table--m-grid__favorite--action--MarginInlineStart: var(--pf-t--global--spacer--2xl);
|
|
27190
27198
|
--pf-v6-c-table--m-grid__check--favorite--action--MarginInlineStart: calc(var(--pf-v6-c-table--m-grid__check--favorite--MarginInlineStart) + var(--pf-v6-c-table--m-grid__favorite--action--MarginInlineStart));
|
|
27191
27199
|
--pf-v6-c-table__toggle__icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
@@ -27267,10 +27275,11 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27267
27275
|
padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
|
|
27268
27276
|
padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
|
|
27269
27277
|
}
|
|
27270
|
-
.pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
|
|
27278
|
+
.pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child, .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):is(.pf-v6-c-table__toggle, .pf-v6-c-table__check) + :where(th, td) {
|
|
27271
27279
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
|
|
27272
27280
|
}
|
|
27273
27281
|
.pf-m-grid.pf-v6-c-table.pf-m-compact {
|
|
27282
|
+
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart);
|
|
27274
27283
|
--pf-v6-c-table__tr--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart);
|
|
27275
27284
|
--pf-v6-c-table__tr--responsive--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd);
|
|
27276
27285
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart);
|
|
@@ -27280,7 +27289,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27280
27289
|
}
|
|
27281
27290
|
.pf-m-grid.pf-v6-c-table.pf-m-compact .pf-v6-c-table__action {
|
|
27282
27291
|
margin-block-start: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart);
|
|
27283
|
-
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--
|
|
27292
|
+
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd);
|
|
27284
27293
|
}
|
|
27285
27294
|
.pf-m-grid.pf-v6-c-table.pf-m-compact .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
27286
27295
|
margin-block-end: var(--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd);
|
|
@@ -27470,6 +27479,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27470
27479
|
}
|
|
27471
27480
|
.pf-m-grid.pf-v6-c-table .pf-v6-c-table__action {
|
|
27472
27481
|
text-align: end;
|
|
27482
|
+
margin-block-start: var(--pf-v6-c-table__action--responsive--MarginBlockStart);
|
|
27473
27483
|
}
|
|
27474
27484
|
@media screen and (max-width: 36rem) {
|
|
27475
27485
|
.pf-m-grid.pf-v6-c-table .pf-v6-c-table__action {
|
|
@@ -27576,10 +27586,11 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27576
27586
|
padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
|
|
27577
27587
|
padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
|
|
27578
27588
|
}
|
|
27579
|
-
.pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
|
|
27589
|
+
.pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child, .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):is(.pf-v6-c-table__toggle, .pf-v6-c-table__check) + :where(th, td) {
|
|
27580
27590
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
|
|
27581
27591
|
}
|
|
27582
27592
|
.pf-m-grid-md.pf-v6-c-table.pf-m-compact {
|
|
27593
|
+
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart);
|
|
27583
27594
|
--pf-v6-c-table__tr--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart);
|
|
27584
27595
|
--pf-v6-c-table__tr--responsive--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd);
|
|
27585
27596
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart);
|
|
@@ -27589,7 +27600,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27589
27600
|
}
|
|
27590
27601
|
.pf-m-grid-md.pf-v6-c-table.pf-m-compact .pf-v6-c-table__action {
|
|
27591
27602
|
margin-block-start: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart);
|
|
27592
|
-
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--
|
|
27603
|
+
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd);
|
|
27593
27604
|
}
|
|
27594
27605
|
.pf-m-grid-md.pf-v6-c-table.pf-m-compact .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
27595
27606
|
margin-block-end: var(--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd);
|
|
@@ -27779,6 +27790,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27779
27790
|
}
|
|
27780
27791
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__action {
|
|
27781
27792
|
text-align: end;
|
|
27793
|
+
margin-block-start: var(--pf-v6-c-table__action--responsive--MarginBlockStart);
|
|
27782
27794
|
}
|
|
27783
27795
|
@media screen and (max-width: 36rem) {
|
|
27784
27796
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__action {
|
|
@@ -27886,10 +27898,11 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27886
27898
|
padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
|
|
27887
27899
|
padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
|
|
27888
27900
|
}
|
|
27889
|
-
.pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
|
|
27901
|
+
.pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child, .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):is(.pf-v6-c-table__toggle, .pf-v6-c-table__check) + :where(th, td) {
|
|
27890
27902
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
|
|
27891
27903
|
}
|
|
27892
27904
|
.pf-m-grid-lg.pf-v6-c-table.pf-m-compact {
|
|
27905
|
+
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart);
|
|
27893
27906
|
--pf-v6-c-table__tr--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart);
|
|
27894
27907
|
--pf-v6-c-table__tr--responsive--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd);
|
|
27895
27908
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart);
|
|
@@ -27899,7 +27912,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27899
27912
|
}
|
|
27900
27913
|
.pf-m-grid-lg.pf-v6-c-table.pf-m-compact .pf-v6-c-table__action {
|
|
27901
27914
|
margin-block-start: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart);
|
|
27902
|
-
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--
|
|
27915
|
+
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd);
|
|
27903
27916
|
}
|
|
27904
27917
|
.pf-m-grid-lg.pf-v6-c-table.pf-m-compact .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
27905
27918
|
margin-block-end: var(--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd);
|
|
@@ -28089,6 +28102,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28089
28102
|
}
|
|
28090
28103
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__action {
|
|
28091
28104
|
text-align: end;
|
|
28105
|
+
margin-block-start: var(--pf-v6-c-table__action--responsive--MarginBlockStart);
|
|
28092
28106
|
}
|
|
28093
28107
|
@media screen and (max-width: 36rem) {
|
|
28094
28108
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__action {
|
|
@@ -28196,10 +28210,11 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28196
28210
|
padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
|
|
28197
28211
|
padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
|
|
28198
28212
|
}
|
|
28199
|
-
.pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
|
|
28213
|
+
.pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child, .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):is(.pf-v6-c-table__toggle, .pf-v6-c-table__check) + :where(th, td) {
|
|
28200
28214
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
|
|
28201
28215
|
}
|
|
28202
28216
|
.pf-m-grid-xl.pf-v6-c-table.pf-m-compact {
|
|
28217
|
+
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart);
|
|
28203
28218
|
--pf-v6-c-table__tr--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart);
|
|
28204
28219
|
--pf-v6-c-table__tr--responsive--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd);
|
|
28205
28220
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart);
|
|
@@ -28209,7 +28224,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28209
28224
|
}
|
|
28210
28225
|
.pf-m-grid-xl.pf-v6-c-table.pf-m-compact .pf-v6-c-table__action {
|
|
28211
28226
|
margin-block-start: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart);
|
|
28212
|
-
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--
|
|
28227
|
+
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd);
|
|
28213
28228
|
}
|
|
28214
28229
|
.pf-m-grid-xl.pf-v6-c-table.pf-m-compact .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
28215
28230
|
margin-block-end: var(--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd);
|
|
@@ -28399,6 +28414,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28399
28414
|
}
|
|
28400
28415
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
28401
28416
|
text-align: end;
|
|
28417
|
+
margin-block-start: var(--pf-v6-c-table__action--responsive--MarginBlockStart);
|
|
28402
28418
|
}
|
|
28403
28419
|
@media screen and (max-width: 36rem) {
|
|
28404
28420
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
@@ -28506,10 +28522,11 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28506
28522
|
padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
|
|
28507
28523
|
padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
|
|
28508
28524
|
}
|
|
28509
|
-
.pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
|
|
28525
|
+
.pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child, .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):is(.pf-v6-c-table__toggle, .pf-v6-c-table__check) + :where(th, td) {
|
|
28510
28526
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
|
|
28511
28527
|
}
|
|
28512
28528
|
.pf-m-grid-2xl.pf-v6-c-table.pf-m-compact {
|
|
28529
|
+
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart);
|
|
28513
28530
|
--pf-v6-c-table__tr--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart);
|
|
28514
28531
|
--pf-v6-c-table__tr--responsive--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd);
|
|
28515
28532
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart);
|
|
@@ -28519,7 +28536,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28519
28536
|
}
|
|
28520
28537
|
.pf-m-grid-2xl.pf-v6-c-table.pf-m-compact .pf-v6-c-table__action {
|
|
28521
28538
|
margin-block-start: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart);
|
|
28522
|
-
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--
|
|
28539
|
+
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd);
|
|
28523
28540
|
}
|
|
28524
28541
|
.pf-m-grid-2xl.pf-v6-c-table.pf-m-compact .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
28525
28542
|
margin-block-end: var(--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd);
|
|
@@ -28709,6 +28726,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28709
28726
|
}
|
|
28710
28727
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
28711
28728
|
text-align: end;
|
|
28729
|
+
margin-block-start: var(--pf-v6-c-table__action--responsive--MarginBlockStart);
|
|
28712
28730
|
}
|
|
28713
28731
|
@media screen and (max-width: 36rem) {
|
|
28714
28732
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__action {
|
package/patternfly.css
CHANGED
|
@@ -19735,7 +19735,6 @@ label.pf-v6-c-input-group__text {
|
|
|
19735
19735
|
position: absolute;
|
|
19736
19736
|
inset: 0;
|
|
19737
19737
|
z-index: -1;
|
|
19738
|
-
pointer-events: none;
|
|
19739
19738
|
content: "";
|
|
19740
19739
|
background-color: var(--pf-v6-c-label--BackgroundColor);
|
|
19741
19740
|
border: var(--pf-v6-c-label--BorderWidth) solid var(--pf-v6-c-label--BorderColor);
|
|
@@ -19754,8 +19753,15 @@ input.pf-v6-c-label__content {
|
|
|
19754
19753
|
.pf-v6-c-label__actions {
|
|
19755
19754
|
margin-inline-end: var(--pf-v6-c-label__actions--MarginInlineEnd);
|
|
19756
19755
|
}
|
|
19757
|
-
.pf-v6-c-label
|
|
19758
|
-
--pf-v6-c-
|
|
19756
|
+
.pf-v6-c-label .pf-v6-c-label__actions .pf-v6-c-button {
|
|
19757
|
+
padding-block-start: var(--pf-v6-c-label--PaddingBlockStart);
|
|
19758
|
+
padding-block-end: var(--pf-v6-c-label--PaddingBlockEnd);
|
|
19759
|
+
padding-inline-end: var(--pf-v6-c-label--PaddingInlineEnd);
|
|
19760
|
+
margin-block-start: calc(var(--pf-v6-c-label--PaddingBlockStart) * -1);
|
|
19761
|
+
margin-block-end: calc(var(--pf-v6-c-label--PaddingBlockEnd) * -1);
|
|
19762
|
+
margin-inline-end: calc(var(--pf-v6-c-label--PaddingInlineEnd) * -1);
|
|
19763
|
+
border-start-end-radius: var(--pf-v6-c-label--BorderRadius);
|
|
19764
|
+
border-end-end-radius: var(--pf-v6-c-label--BorderRadius);
|
|
19759
19765
|
}
|
|
19760
19766
|
|
|
19761
19767
|
.pf-v6-c-label__actions .pf-v6-c-button {
|
|
@@ -27325,22 +27331,24 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27325
27331
|
--pf-v6-c-table--cell--responsive--PaddingInlineEnd: 0;
|
|
27326
27332
|
--pf-v6-c-table--cell--responsive--PaddingInlineStart: 0;
|
|
27327
27333
|
--pf-v6-c-table--cell--responsive--th--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
27334
|
+
--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
27328
27335
|
--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
27329
27336
|
--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
27330
27337
|
--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
27331
27338
|
--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
27332
|
-
--pf-v6-c-table--m-compact__check--responsive--MarginBlockStart: 0.
|
|
27333
|
-
--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart: calc(var(--pf-t--global--spacer--
|
|
27339
|
+
--pf-v6-c-table--m-compact__check--responsive--MarginBlockStart: calc(var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart) + 0.25rem);
|
|
27340
|
+
--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart: calc(var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart) + var(--pf-t--global--spacer--control--vertical--compact) * -1);
|
|
27334
27341
|
--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd: calc(var(--pf-t--global--spacer--xs) * -1);
|
|
27335
27342
|
--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd: calc(var(--pf-t--global--spacer--xs) * -1);
|
|
27336
27343
|
--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineEnd: var(--pf-t--global--spacer--inset--page-chrome);
|
|
27337
27344
|
--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineStart: var(--pf-t--global--spacer--inset--page-chrome);
|
|
27338
27345
|
--pf-v6-c-table__expandable-row-content--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
27339
27346
|
--pf-v6-c-table__check--responsive--MarginInlineStart: var(--pf-v6-c-table__tbody--responsive--border-width--base);
|
|
27340
|
-
--pf-v6-c-table__check--responsive--MarginBlockStart: 0.
|
|
27347
|
+
--pf-v6-c-table__check--responsive--MarginBlockStart: calc(var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart) + 0.25rem);
|
|
27341
27348
|
--pf-v6-c-table--m-grid__favorite--MarginBlockStart: 0.5rem;
|
|
27342
27349
|
--pf-v6-c-table--m-grid__check--favorite--MarginInlineStart: var(--pf-t--global--spacer--xl);
|
|
27343
27350
|
--pf-v6-c-table__action--responsive--MarginInlineStart: var(--pf-t--global--spacer--xl);
|
|
27351
|
+
--pf-v6-c-table__action--responsive--MarginBlockStart: calc(var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart) + var(--pf-t--global--spacer--control--vertical--plain) * -1);
|
|
27344
27352
|
--pf-v6-c-table--m-grid__favorite--action--MarginInlineStart: var(--pf-t--global--spacer--2xl);
|
|
27345
27353
|
--pf-v6-c-table--m-grid__check--favorite--action--MarginInlineStart: calc(var(--pf-v6-c-table--m-grid__check--favorite--MarginInlineStart) + var(--pf-v6-c-table--m-grid__favorite--action--MarginInlineStart));
|
|
27346
27354
|
--pf-v6-c-table__toggle__icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
@@ -27422,10 +27430,11 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27422
27430
|
padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
|
|
27423
27431
|
padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
|
|
27424
27432
|
}
|
|
27425
|
-
.pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
|
|
27433
|
+
.pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child, .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):is(.pf-v6-c-table__toggle, .pf-v6-c-table__check) + :where(th, td) {
|
|
27426
27434
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
|
|
27427
27435
|
}
|
|
27428
27436
|
.pf-m-grid.pf-v6-c-table.pf-m-compact {
|
|
27437
|
+
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart);
|
|
27429
27438
|
--pf-v6-c-table__tr--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart);
|
|
27430
27439
|
--pf-v6-c-table__tr--responsive--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd);
|
|
27431
27440
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart);
|
|
@@ -27435,7 +27444,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27435
27444
|
}
|
|
27436
27445
|
.pf-m-grid.pf-v6-c-table.pf-m-compact .pf-v6-c-table__action {
|
|
27437
27446
|
margin-block-start: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart);
|
|
27438
|
-
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--
|
|
27447
|
+
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd);
|
|
27439
27448
|
}
|
|
27440
27449
|
.pf-m-grid.pf-v6-c-table.pf-m-compact .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
27441
27450
|
margin-block-end: var(--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd);
|
|
@@ -27625,6 +27634,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27625
27634
|
}
|
|
27626
27635
|
.pf-m-grid.pf-v6-c-table .pf-v6-c-table__action {
|
|
27627
27636
|
text-align: end;
|
|
27637
|
+
margin-block-start: var(--pf-v6-c-table__action--responsive--MarginBlockStart);
|
|
27628
27638
|
}
|
|
27629
27639
|
@media screen and (max-width: 36rem) {
|
|
27630
27640
|
.pf-m-grid.pf-v6-c-table .pf-v6-c-table__action {
|
|
@@ -27731,10 +27741,11 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27731
27741
|
padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
|
|
27732
27742
|
padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
|
|
27733
27743
|
}
|
|
27734
|
-
.pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
|
|
27744
|
+
.pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child, .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):is(.pf-v6-c-table__toggle, .pf-v6-c-table__check) + :where(th, td) {
|
|
27735
27745
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
|
|
27736
27746
|
}
|
|
27737
27747
|
.pf-m-grid-md.pf-v6-c-table.pf-m-compact {
|
|
27748
|
+
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart);
|
|
27738
27749
|
--pf-v6-c-table__tr--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart);
|
|
27739
27750
|
--pf-v6-c-table__tr--responsive--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd);
|
|
27740
27751
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart);
|
|
@@ -27744,7 +27755,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27744
27755
|
}
|
|
27745
27756
|
.pf-m-grid-md.pf-v6-c-table.pf-m-compact .pf-v6-c-table__action {
|
|
27746
27757
|
margin-block-start: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart);
|
|
27747
|
-
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--
|
|
27758
|
+
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd);
|
|
27748
27759
|
}
|
|
27749
27760
|
.pf-m-grid-md.pf-v6-c-table.pf-m-compact .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
27750
27761
|
margin-block-end: var(--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd);
|
|
@@ -27934,6 +27945,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
27934
27945
|
}
|
|
27935
27946
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__action {
|
|
27936
27947
|
text-align: end;
|
|
27948
|
+
margin-block-start: var(--pf-v6-c-table__action--responsive--MarginBlockStart);
|
|
27937
27949
|
}
|
|
27938
27950
|
@media screen and (max-width: 36rem) {
|
|
27939
27951
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__action {
|
|
@@ -28041,10 +28053,11 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28041
28053
|
padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
|
|
28042
28054
|
padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
|
|
28043
28055
|
}
|
|
28044
|
-
.pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
|
|
28056
|
+
.pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child, .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):is(.pf-v6-c-table__toggle, .pf-v6-c-table__check) + :where(th, td) {
|
|
28045
28057
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
|
|
28046
28058
|
}
|
|
28047
28059
|
.pf-m-grid-lg.pf-v6-c-table.pf-m-compact {
|
|
28060
|
+
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart);
|
|
28048
28061
|
--pf-v6-c-table__tr--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart);
|
|
28049
28062
|
--pf-v6-c-table__tr--responsive--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd);
|
|
28050
28063
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart);
|
|
@@ -28054,7 +28067,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28054
28067
|
}
|
|
28055
28068
|
.pf-m-grid-lg.pf-v6-c-table.pf-m-compact .pf-v6-c-table__action {
|
|
28056
28069
|
margin-block-start: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart);
|
|
28057
|
-
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--
|
|
28070
|
+
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd);
|
|
28058
28071
|
}
|
|
28059
28072
|
.pf-m-grid-lg.pf-v6-c-table.pf-m-compact .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
28060
28073
|
margin-block-end: var(--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd);
|
|
@@ -28244,6 +28257,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28244
28257
|
}
|
|
28245
28258
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__action {
|
|
28246
28259
|
text-align: end;
|
|
28260
|
+
margin-block-start: var(--pf-v6-c-table__action--responsive--MarginBlockStart);
|
|
28247
28261
|
}
|
|
28248
28262
|
@media screen and (max-width: 36rem) {
|
|
28249
28263
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__action {
|
|
@@ -28351,10 +28365,11 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28351
28365
|
padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
|
|
28352
28366
|
padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
|
|
28353
28367
|
}
|
|
28354
|
-
.pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
|
|
28368
|
+
.pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child, .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):is(.pf-v6-c-table__toggle, .pf-v6-c-table__check) + :where(th, td) {
|
|
28355
28369
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
|
|
28356
28370
|
}
|
|
28357
28371
|
.pf-m-grid-xl.pf-v6-c-table.pf-m-compact {
|
|
28372
|
+
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart);
|
|
28358
28373
|
--pf-v6-c-table__tr--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart);
|
|
28359
28374
|
--pf-v6-c-table__tr--responsive--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd);
|
|
28360
28375
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart);
|
|
@@ -28364,7 +28379,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28364
28379
|
}
|
|
28365
28380
|
.pf-m-grid-xl.pf-v6-c-table.pf-m-compact .pf-v6-c-table__action {
|
|
28366
28381
|
margin-block-start: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart);
|
|
28367
|
-
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--
|
|
28382
|
+
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd);
|
|
28368
28383
|
}
|
|
28369
28384
|
.pf-m-grid-xl.pf-v6-c-table.pf-m-compact .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
28370
28385
|
margin-block-end: var(--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd);
|
|
@@ -28554,6 +28569,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28554
28569
|
}
|
|
28555
28570
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
28556
28571
|
text-align: end;
|
|
28572
|
+
margin-block-start: var(--pf-v6-c-table__action--responsive--MarginBlockStart);
|
|
28557
28573
|
}
|
|
28558
28574
|
@media screen and (max-width: 36rem) {
|
|
28559
28575
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
@@ -28661,10 +28677,11 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28661
28677
|
padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
|
|
28662
28678
|
padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
|
|
28663
28679
|
}
|
|
28664
|
-
.pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
|
|
28680
|
+
.pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child, .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):is(.pf-v6-c-table__toggle, .pf-v6-c-table__check) + :where(th, td) {
|
|
28665
28681
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
|
|
28666
28682
|
}
|
|
28667
28683
|
.pf-m-grid-2xl.pf-v6-c-table.pf-m-compact {
|
|
28684
|
+
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--first-child--responsive--PaddingBlockStart);
|
|
28668
28685
|
--pf-v6-c-table__tr--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart);
|
|
28669
28686
|
--pf-v6-c-table__tr--responsive--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd);
|
|
28670
28687
|
--pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart);
|
|
@@ -28674,7 +28691,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28674
28691
|
}
|
|
28675
28692
|
.pf-m-grid-2xl.pf-v6-c-table.pf-m-compact .pf-v6-c-table__action {
|
|
28676
28693
|
margin-block-start: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockStart);
|
|
28677
|
-
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--
|
|
28694
|
+
margin-block-end: var(--pf-v6-c-table--m-compact__action--responsive--MarginBlockEnd);
|
|
28678
28695
|
}
|
|
28679
28696
|
.pf-m-grid-2xl.pf-v6-c-table.pf-m-compact .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
28680
28697
|
margin-block-end: var(--pf-v6-c-table--m-compact__toggle--c-button--responsive--MarginBlockEnd);
|
|
@@ -28864,6 +28881,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
28864
28881
|
}
|
|
28865
28882
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
28866
28883
|
text-align: end;
|
|
28884
|
+
margin-block-start: var(--pf-v6-c-table__action--responsive--MarginBlockStart);
|
|
28867
28885
|
}
|
|
28868
28886
|
@media screen and (max-width: 36rem) {
|
|
28869
28887
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__action {
|