@patternfly/patternfly 6.0.0-alpha.182 → 6.0.0-alpha.184
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/Table/table-grid.css +5 -0
- package/components/Table/table-grid.scss +1 -0
- package/components/Table/table-tree-view.css +20 -0
- package/components/Table/table-tree-view.scss +5 -0
- package/components/TextInputGroup/text-input-group.css +67 -15
- package/components/TextInputGroup/text-input-group.scss +78 -21
- package/components/_index.css +92 -15
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +80 -0
- package/package.json +1 -1
- package/patternfly-no-globals.css +92 -15
- package/patternfly.css +92 -15
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/patternfly.css
CHANGED
|
@@ -20957,6 +20957,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
20957
20957
|
grid-column: 2;
|
|
20958
20958
|
}
|
|
20959
20959
|
.pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
|
20960
|
+
position: revert;
|
|
20960
20961
|
font-weight: bold;
|
|
20961
20962
|
text-align: start;
|
|
20962
20963
|
content: attr(data-label);
|
|
@@ -21256,6 +21257,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
21256
21257
|
grid-column: 2;
|
|
21257
21258
|
}
|
|
21258
21259
|
.pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
|
21260
|
+
position: revert;
|
|
21259
21261
|
font-weight: bold;
|
|
21260
21262
|
text-align: start;
|
|
21261
21263
|
content: attr(data-label);
|
|
@@ -21558,6 +21560,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
21558
21560
|
grid-column: 2;
|
|
21559
21561
|
}
|
|
21560
21562
|
.pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
|
21563
|
+
position: revert;
|
|
21561
21564
|
font-weight: bold;
|
|
21562
21565
|
text-align: start;
|
|
21563
21566
|
content: attr(data-label);
|
|
@@ -21860,6 +21863,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
21860
21863
|
grid-column: 2;
|
|
21861
21864
|
}
|
|
21862
21865
|
.pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
|
21866
|
+
position: revert;
|
|
21863
21867
|
font-weight: bold;
|
|
21864
21868
|
text-align: start;
|
|
21865
21869
|
content: attr(data-label);
|
|
@@ -22162,6 +22166,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
22162
22166
|
grid-column: 2;
|
|
22163
22167
|
}
|
|
22164
22168
|
.pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
|
22169
|
+
position: revert;
|
|
22165
22170
|
font-weight: bold;
|
|
22166
22171
|
text-align: start;
|
|
22167
22172
|
content: attr(data-label);
|
|
@@ -23470,10 +23475,14 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
23470
23475
|
grid-column: 2;
|
|
23471
23476
|
}
|
|
23472
23477
|
.pf-m-tree-view-grid.pf-v6-c-table td:where(.pf-v6-c-table__td)[data-label]::before {
|
|
23478
|
+
position: revert;
|
|
23473
23479
|
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
23474
23480
|
text-align: start;
|
|
23475
23481
|
content: attr(data-label);
|
|
23476
23482
|
}
|
|
23483
|
+
.pf-m-tree-view-grid.pf-v6-c-table .pf-v6-c-table__tr > :where(th, td).pf-m-border-right::before {
|
|
23484
|
+
border-inline-end: 0;
|
|
23485
|
+
}
|
|
23477
23486
|
.pf-m-tree-view-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr).pf-m-tree-view-details-expanded {
|
|
23478
23487
|
padding-block-end: var(--pf-v6-c-table--m-tree-view-grid--m-tree-view-details-expanded--PaddingBlockEnd);
|
|
23479
23488
|
}
|
|
@@ -23610,10 +23619,14 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
23610
23619
|
grid-column: 2;
|
|
23611
23620
|
}
|
|
23612
23621
|
.pf-m-tree-view-grid-md.pf-v6-c-table td:where(.pf-v6-c-table__td)[data-label]::before {
|
|
23622
|
+
position: revert;
|
|
23613
23623
|
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
23614
23624
|
text-align: start;
|
|
23615
23625
|
content: attr(data-label);
|
|
23616
23626
|
}
|
|
23627
|
+
.pf-m-tree-view-grid-md.pf-v6-c-table .pf-v6-c-table__tr > :where(th, td).pf-m-border-right::before {
|
|
23628
|
+
border-inline-end: 0;
|
|
23629
|
+
}
|
|
23617
23630
|
.pf-m-tree-view-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr).pf-m-tree-view-details-expanded {
|
|
23618
23631
|
padding-block-end: var(--pf-v6-c-table--m-tree-view-grid--m-tree-view-details-expanded--PaddingBlockEnd);
|
|
23619
23632
|
}
|
|
@@ -23751,10 +23764,14 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
23751
23764
|
grid-column: 2;
|
|
23752
23765
|
}
|
|
23753
23766
|
.pf-m-tree-view-grid-lg.pf-v6-c-table td:where(.pf-v6-c-table__td)[data-label]::before {
|
|
23767
|
+
position: revert;
|
|
23754
23768
|
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
23755
23769
|
text-align: start;
|
|
23756
23770
|
content: attr(data-label);
|
|
23757
23771
|
}
|
|
23772
|
+
.pf-m-tree-view-grid-lg.pf-v6-c-table .pf-v6-c-table__tr > :where(th, td).pf-m-border-right::before {
|
|
23773
|
+
border-inline-end: 0;
|
|
23774
|
+
}
|
|
23758
23775
|
.pf-m-tree-view-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr).pf-m-tree-view-details-expanded {
|
|
23759
23776
|
padding-block-end: var(--pf-v6-c-table--m-tree-view-grid--m-tree-view-details-expanded--PaddingBlockEnd);
|
|
23760
23777
|
}
|
|
@@ -23892,10 +23909,14 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
23892
23909
|
grid-column: 2;
|
|
23893
23910
|
}
|
|
23894
23911
|
.pf-m-tree-view-grid-xl.pf-v6-c-table td:where(.pf-v6-c-table__td)[data-label]::before {
|
|
23912
|
+
position: revert;
|
|
23895
23913
|
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
23896
23914
|
text-align: start;
|
|
23897
23915
|
content: attr(data-label);
|
|
23898
23916
|
}
|
|
23917
|
+
.pf-m-tree-view-grid-xl.pf-v6-c-table .pf-v6-c-table__tr > :where(th, td).pf-m-border-right::before {
|
|
23918
|
+
border-inline-end: 0;
|
|
23919
|
+
}
|
|
23899
23920
|
.pf-m-tree-view-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr).pf-m-tree-view-details-expanded {
|
|
23900
23921
|
padding-block-end: var(--pf-v6-c-table--m-tree-view-grid--m-tree-view-details-expanded--PaddingBlockEnd);
|
|
23901
23922
|
}
|
|
@@ -24033,10 +24054,14 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
24033
24054
|
grid-column: 2;
|
|
24034
24055
|
}
|
|
24035
24056
|
.pf-m-tree-view-grid-2xl.pf-v6-c-table td:where(.pf-v6-c-table__td)[data-label]::before {
|
|
24057
|
+
position: revert;
|
|
24036
24058
|
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
24037
24059
|
text-align: start;
|
|
24038
24060
|
content: attr(data-label);
|
|
24039
24061
|
}
|
|
24062
|
+
.pf-m-tree-view-grid-2xl.pf-v6-c-table .pf-v6-c-table__tr > :where(th, td).pf-m-border-right::before {
|
|
24063
|
+
border-inline-end: 0;
|
|
24064
|
+
}
|
|
24040
24065
|
.pf-m-tree-view-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr).pf-m-tree-view-details-expanded {
|
|
24041
24066
|
padding-block-end: var(--pf-v6-c-table--m-tree-view-grid--m-tree-view-details-expanded--PaddingBlockEnd);
|
|
24042
24067
|
}
|
|
@@ -24915,10 +24940,19 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
24915
24940
|
:where(:root, .pf-v6-c-text-input-group) {
|
|
24916
24941
|
--pf-v6-c-text-input-group--BackgroundColor: var(--pf-t--global--background--color--control--default);
|
|
24917
24942
|
--pf-v6-c-text-input-group--BorderColor: var(--pf-t--global--border--color--default);
|
|
24943
|
+
--pf-v6-c-text-input-group--m-success--BorderColor: var(--pf-t--global--border--color--status--success--default);
|
|
24944
|
+
--pf-v6-c-text-input-group--m-warning--BorderColor: var(--pf-t--global--border--color--status--warning--default);
|
|
24945
|
+
--pf-v6-c-text-input-group--m-error--BorderColor: var(--pf-t--global--border--color--status--danger--default);
|
|
24918
24946
|
--pf-v6-c-text-input-group--BorderWidth: var(--pf-t--global--border--width--control--default);
|
|
24947
|
+
--pf-v6-c-text-input-group__LineHeight: var(--pf-t--global--font--line-height--body);
|
|
24948
|
+
--pf-v6-c-text-input-group__FontSize: var(--pf-t--global--font--size--body--default);
|
|
24919
24949
|
--pf-v6-c-text-input-group--m-hover--BorderColor: var(--pf-t--global--border--color--hover);
|
|
24950
|
+
--pf-v6-c-text-input-group--m-hover--m-success--BorderColor: var(--pf-t--global--border--color--status--success--hover);
|
|
24951
|
+
--pf-v6-c-text-input-group--m-hover--m-warning--BorderColor: var(--pf-t--global--border--color--status--warning--hover);
|
|
24952
|
+
--pf-v6-c-text-input-group--m-hover--m-error--BorderColor: var(--pf-t--global--border--color--status--danger--hover);
|
|
24920
24953
|
--pf-v6-c-text-input-group__main--first-child--not--text-input--MarginInlineStart: var(--pf-t--global--spacer--xs);
|
|
24921
24954
|
--pf-v6-c-text-input-group__main--m-icon__text-input--PaddingInlineStart: var(--pf-t--global--spacer--xl);
|
|
24955
|
+
--pf-v6-c-text-input-group--status__text-input--PaddingInlineEnd: var(--pf-t--global--spacer--xl);
|
|
24922
24956
|
--pf-v6-c-text-input-group__main--RowGap: var(--pf-t--global--spacer--xs);
|
|
24923
24957
|
--pf-v6-c-text-input-group__main--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
24924
24958
|
--pf-v6-c-text-input-group__text--BorderRadius--base: var(--pf-t--global--border--radius--small);
|
|
@@ -24939,7 +24973,14 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
24939
24973
|
--pf-v6-c-text-input-group__text-input--BackgroundColor: transparent;
|
|
24940
24974
|
--pf-v6-c-text-input-group__text-input--OutlineOffset: -6px;
|
|
24941
24975
|
--pf-v6-c-text-input-group__icon--InsetInlineStart: var(--pf-t--global--spacer--sm);
|
|
24976
|
+
--pf-v6-c-text-input-group__icon--m-status--InsetInlineEnd: var(--pf-t--global--spacer--sm);
|
|
24942
24977
|
--pf-v6-c-text-input-group__icon--Color: var(--pf-t--global--icon--color--regular);
|
|
24978
|
+
--pf-v6-c-text-input-group--m-disabled__icon--Color: var(--pf-t--global--icon--color--disabled);
|
|
24979
|
+
--pf-v6-c-text-input-group__icon--m-status--Color: var(--pf-t--global--icon--color--regular);
|
|
24980
|
+
--pf-v6-c-text-input-group--m-disabled__icon--m-status--Color: var(--pf-t--global--icon--color--disabled);
|
|
24981
|
+
--pf-v6-c-text-input-group__main--m-success__icon--m-status--Color: var(--pf-t--global--icon--color--status--success--default);
|
|
24982
|
+
--pf-v6-c-text-input-group__main--m-warning__icon--m-status--Color: var(--pf-t--global--icon--color--status--warning--default);
|
|
24983
|
+
--pf-v6-c-text-input-group__main--m-error__icon--m-status--Color: var(--pf-t--global--icon--color--status--danger--default);
|
|
24943
24984
|
--pf-v6-c-text-input-group__icon--TranslateY: -50%;
|
|
24944
24985
|
--pf-v6-c-text-input-group__utilities--child--MarginInlineStart: var(--pf-t--global--spacer--xs);
|
|
24945
24986
|
--pf-v6-c-text-input-group__utilities--c-button--PaddingInlineEnd: var(--pf-t--global--spacer--xs);
|
|
@@ -24952,24 +24993,60 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
24952
24993
|
position: relative;
|
|
24953
24994
|
display: flex;
|
|
24954
24995
|
width: 100%;
|
|
24996
|
+
font-size: var(--pf-v6-c-text-input-group__FontSize);
|
|
24997
|
+
line-height: var(--pf-v6-c-text-input-group__LineHeight);
|
|
24955
24998
|
color: var(--pf-v6-c-text-input-group--Color, inherit);
|
|
24956
24999
|
background-color: var(--pf-v6-c-text-input-group--BackgroundColor);
|
|
25000
|
+
border-start-start-radius: var(--pf-v6-c-text-input-group__text--BorderStartStartRadius);
|
|
25001
|
+
border-start-end-radius: var(--pf-v6-c-text-input-group__text--BorderStartEndRadius);
|
|
25002
|
+
border-end-start-radius: var(--pf-v6-c-text-input-group__text--BorderEndStartRadius);
|
|
25003
|
+
border-end-end-radius: var(--pf-v6-c-text-input-group__text--BorderEndEndRadius);
|
|
24957
25004
|
}
|
|
24958
|
-
.pf-v6-c-text-input-group
|
|
24959
|
-
|
|
25005
|
+
.pf-v6-c-text-input-group::before {
|
|
25006
|
+
position: absolute;
|
|
25007
|
+
inset: 0;
|
|
25008
|
+
pointer-events: none;
|
|
25009
|
+
content: "";
|
|
25010
|
+
border: var(--pf-v6-c-text-input-group--BorderWidth) solid var(--pf-v6-c-text-input-group--BorderColor);
|
|
25011
|
+
border-start-start-radius: var(--pf-v6-c-text-input-group__text--BorderStartStartRadius);
|
|
25012
|
+
border-start-end-radius: var(--pf-v6-c-text-input-group__text--BorderStartEndRadius);
|
|
25013
|
+
border-end-start-radius: var(--pf-v6-c-text-input-group__text--BorderEndStartRadius);
|
|
25014
|
+
border-end-end-radius: var(--pf-v6-c-text-input-group__text--BorderEndEndRadius);
|
|
24960
25015
|
}
|
|
24961
25016
|
.pf-v6-c-text-input-group.pf-m-disabled {
|
|
24962
25017
|
--pf-v6-c-text-input-group--Color: var(--pf-v6-c-text-input-group--m-disabled--Color);
|
|
24963
|
-
--pf-v6-c-text-input-group__icon--Color: var(--pf-v6-c-text-input-group--m-
|
|
25018
|
+
--pf-v6-c-text-input-group__icon--Color: var(--pf-v6-c-text-input-group--m-disabled__icon--Color);
|
|
25019
|
+
--pf-v6-c-text-input-group__icon--m-status--Color: var(--pf-v6-c-text-input-group--m-disabled__icon--m-status--Color);
|
|
24964
25020
|
--pf-v6-c-text-input-group--BackgroundColor: var(--pf-v6-c-text-input-group--m-disabled--BackgroundColor);
|
|
24965
25021
|
pointer-events: none;
|
|
24966
25022
|
}
|
|
24967
25023
|
.pf-v6-c-text-input-group.pf-m-plain {
|
|
24968
25024
|
--pf-v6-c-text-input-group--BackgroundColor: transparent;
|
|
24969
25025
|
}
|
|
24970
|
-
.pf-v6-c-text-input-group.pf-m-plain
|
|
25026
|
+
.pf-v6-c-text-input-group.pf-m-plain::before {
|
|
24971
25027
|
border: 0;
|
|
24972
25028
|
}
|
|
25029
|
+
.pf-v6-c-text-input-group.pf-m-success {
|
|
25030
|
+
--pf-v6-c-text-input-group--BorderColor: var(--pf-v6-c-text-input-group--m-success--BorderColor);
|
|
25031
|
+
--pf-v6-c-text-input-group--m-hover--BorderColor: var(--pf-v6-c-text-input-group--m-hover--m-success--BorderColor);
|
|
25032
|
+
--pf-v6-c-text-input-group__icon--m-status--Color: var(--pf-v6-c-text-input-group__main--m-success__icon--m-status--Color);
|
|
25033
|
+
}
|
|
25034
|
+
.pf-v6-c-text-input-group.pf-m-warning {
|
|
25035
|
+
--pf-v6-c-text-input-group--BorderColor: var(--pf-v6-c-text-input-group--m-warning--BorderColor);
|
|
25036
|
+
--pf-v6-c-text-input-group--m-hover--BorderColor: var(--pf-v6-c-text-input-group--m-hover--m-warning--BorderColor);
|
|
25037
|
+
--pf-v6-c-text-input-group__icon--m-status--Color: var(--pf-v6-c-text-input-group__main--m-warning__icon--m-status--Color);
|
|
25038
|
+
}
|
|
25039
|
+
.pf-v6-c-text-input-group.pf-m-error {
|
|
25040
|
+
--pf-v6-c-text-input-group--BorderColor: var(--pf-v6-c-text-input-group--m-error--BorderColor);
|
|
25041
|
+
--pf-v6-c-text-input-group--m-hover--BorderColor: var(--pf-v6-c-text-input-group--m-hover--m-error--BorderColor);
|
|
25042
|
+
--pf-v6-c-text-input-group__icon--m-status--Color: var(--pf-v6-c-text-input-group__main--m-error__icon--m-status--Color);
|
|
25043
|
+
}
|
|
25044
|
+
.pf-v6-c-text-input-group:hover {
|
|
25045
|
+
--pf-v6-c-text-input-group--BorderColor: var(--pf-v6-c-text-input-group--m-hover--BorderColor);
|
|
25046
|
+
}
|
|
25047
|
+
.pf-v6-c-text-input-group:where(.pf-m-success, .pf-m-warning, .pf-m-error) {
|
|
25048
|
+
--pf-v6-c-text-input-group__text-input--PaddingInlineEnd: var(--pf-v6-c-text-input-group--status__text-input--PaddingInlineEnd);
|
|
25049
|
+
}
|
|
24973
25050
|
|
|
24974
25051
|
.pf-v6-c-text-input-group__main {
|
|
24975
25052
|
display: flex;
|
|
@@ -24979,7 +25056,12 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
24979
25056
|
min-width: 0;
|
|
24980
25057
|
}
|
|
24981
25058
|
.pf-v6-c-text-input-group__main.pf-m-icon {
|
|
25059
|
+
--pf-v6-c-text-input-group__text--Position: relative;
|
|
24982
25060
|
--pf-v6-c-text-input-group__text-input--PaddingInlineStart: var(--pf-v6-c-text-input-group__main--m-icon__text-input--PaddingInlineStart);
|
|
25061
|
+
display: inline-flex;
|
|
25062
|
+
align-items: center;
|
|
25063
|
+
justify-content: center;
|
|
25064
|
+
min-width: calc(var(--pf-v6-c-text-input-group__LineHeight) * var(--pf-v6-c-text-input-group__FontSize));
|
|
24983
25065
|
}
|
|
24984
25066
|
.pf-v6-c-text-input-group__main > :first-child:not(.pf-v6-c-text-input-group__text) {
|
|
24985
25067
|
padding-block-start: var(--pf-v6-c-text-input-group__main--first-child--not--text-input--PaddingBlockStart);
|
|
@@ -24993,22 +25075,12 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
24993
25075
|
}
|
|
24994
25076
|
|
|
24995
25077
|
.pf-v6-c-text-input-group__text {
|
|
25078
|
+
position: var(--pf-v6-c-text-input-group__text--Position, revert);
|
|
24996
25079
|
display: inline-grid;
|
|
24997
25080
|
flex: 1;
|
|
24998
25081
|
grid-template-areas: "text-input";
|
|
24999
25082
|
grid-template-columns: 1fr;
|
|
25000
25083
|
}
|
|
25001
|
-
.pf-v6-c-text-input-group__text::before {
|
|
25002
|
-
position: absolute;
|
|
25003
|
-
inset: 0;
|
|
25004
|
-
pointer-events: none;
|
|
25005
|
-
content: "";
|
|
25006
|
-
border: var(--pf-v6-c-text-input-group--BorderWidth) solid var(--pf-v6-c-text-input-group--BorderColor);
|
|
25007
|
-
border-start-start-radius: var(--pf-v6-c-text-input-group__text--BorderStartStartRadius);
|
|
25008
|
-
border-start-end-radius: var(--pf-v6-c-text-input-group__text--BorderStartEndRadius);
|
|
25009
|
-
border-end-start-radius: var(--pf-v6-c-text-input-group__text--BorderEndStartRadius);
|
|
25010
|
-
border-end-end-radius: var(--pf-v6-c-text-input-group__text--BorderEndEndRadius);
|
|
25011
|
-
}
|
|
25012
25084
|
|
|
25013
25085
|
.pf-v6-c-text-input-group__icon {
|
|
25014
25086
|
position: absolute;
|
|
@@ -25017,6 +25089,11 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25017
25089
|
color: var(--pf-v6-c-text-input-group__icon--Color);
|
|
25018
25090
|
transform: translateY(var(--pf-v6-c-text-input-group__icon--TranslateY));
|
|
25019
25091
|
}
|
|
25092
|
+
.pf-v6-c-text-input-group__icon.pf-m-status {
|
|
25093
|
+
inset-inline-start: auto;
|
|
25094
|
+
inset-inline-end: var(--pf-v6-c-text-input-group__icon--m-status--InsetInlineEnd);
|
|
25095
|
+
color: var(--pf-v6-c-text-input-group__icon--m-status--Color);
|
|
25096
|
+
}
|
|
25020
25097
|
|
|
25021
25098
|
.pf-v6-c-text-input-group__text-input {
|
|
25022
25099
|
overflow: hidden;
|