@patternfly/patternfly 4.192.0 → 4.192.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/RELEASE-NOTES.md +26 -0
- package/components/DescriptionList/description-list.css +3 -0
- package/components/DescriptionList/description-list.scss +2 -0
- package/components/TextInputGroup/text-input-group.css +5 -0
- package/components/TextInputGroup/text-input-group.scss +6 -0
- package/components/TreeView/tree-view.css +2 -0
- package/components/TreeView/tree-view.scss +2 -0
- package/docs/components/InputGroup/examples/InputGroup.md +5 -5
- package/docs/components/TextInputGroup/examples/TextInputGroup.css +23 -0
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +617 -1
- package/package.json +2 -2
- package/patternfly-no-reset.css +10 -0
- package/patternfly.css +10 -0
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/patternfly.css
CHANGED
|
@@ -10046,6 +10046,9 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
10046
10046
|
color: var(--pf-c-description-list__term-icon--Color);
|
|
10047
10047
|
}
|
|
10048
10048
|
|
|
10049
|
+
.pf-c-description-list__text {
|
|
10050
|
+
min-width: 0;
|
|
10051
|
+
}
|
|
10049
10052
|
.pf-c-description-list__text.pf-m-help-text {
|
|
10050
10053
|
text-decoration: underline;
|
|
10051
10054
|
cursor: pointer;
|
|
@@ -27646,6 +27649,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27646
27649
|
--pf-c-text-input-group--m-disabled--BackgroundColor: var(--pf-global--disabled-color--300);
|
|
27647
27650
|
position: relative;
|
|
27648
27651
|
display: flex;
|
|
27652
|
+
width: 100%;
|
|
27649
27653
|
color: var(--pf-c-text-input-group--Color, inherit);
|
|
27650
27654
|
background-color: var(--pf-c-text-input-group--BackgroundColor);
|
|
27651
27655
|
}
|
|
@@ -27763,6 +27767,10 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27763
27767
|
--pf-c-button--PaddingLeft: var(--pf-c-text-input-group__utilities--c-button--PaddingLeft);
|
|
27764
27768
|
}
|
|
27765
27769
|
|
|
27770
|
+
.pf-c-text-input-group__group {
|
|
27771
|
+
display: flex;
|
|
27772
|
+
}
|
|
27773
|
+
|
|
27766
27774
|
.pf-c-tile {
|
|
27767
27775
|
--pf-c-tile--PaddingTop: var(--pf-global--spacer--lg);
|
|
27768
27776
|
--pf-c-tile--PaddingRight: var(--pf-global--spacer--lg);
|
|
@@ -28268,6 +28276,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
28268
28276
|
--pf-c-tree-view--m-guides__list-item--before--BackgroundColor: var(--pf-c-tree-view--m-guides--guide-color--base);
|
|
28269
28277
|
--pf-c-tree-view--m-guides__list-item--last-child--before--Top: var(--pf-c-tree-view--m-guides__node--before--Top);
|
|
28270
28278
|
--pf-c-tree-view--m-guides__list-item--last-child--before--Height: var(--pf-c-tree-view--m-guides__list-item--last-child--before--Top);
|
|
28279
|
+
--pf-c-tree-view--m-guides__list-item--ZIndex: var(--pf-global--ZIndex--xs);
|
|
28271
28280
|
--pf-c-tree-view--m-guides__node--before--Width: 1rem;
|
|
28272
28281
|
--pf-c-tree-view--m-guides__node--before--Height: var(--pf-c-tree-view--m-guides--guide-width--base);
|
|
28273
28282
|
--pf-c-tree-view--m-guides__node--before--Top: 1.125rem;
|
|
@@ -28328,6 +28337,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
28328
28337
|
}
|
|
28329
28338
|
.pf-c-tree-view.pf-m-compact .pf-c-tree-view__list-item .pf-c-tree-view__list-item::before, .pf-c-tree-view.pf-m-guides .pf-c-tree-view__list-item .pf-c-tree-view__list-item::before {
|
|
28330
28339
|
top: var(--pf-c-tree-view--m-guides__list-item--before--Top);
|
|
28340
|
+
z-index: var(--pf-c-tree-view--m-guides__list-item--ZIndex);
|
|
28331
28341
|
width: var(--pf-c-tree-view--m-guides__list-item--before--Width);
|
|
28332
28342
|
height: var(--pf-c-tree-view--m-guides__list-item--before--Height);
|
|
28333
28343
|
background-color: var(--pf-c-tree-view--m-guides__list-item--before--BackgroundColor);
|