@patternfly/patternfly 6.3.0-prerelease.74 → 6.3.0-prerelease.76
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/Divider/divider.css +2 -0
- package/components/Divider/divider.scss +2 -0
- package/components/DualListSelector/dual-list-selector.css +2 -2
- package/components/DualListSelector/dual-list-selector.scss +2 -2
- package/components/Progress/progress.css +9 -0
- package/components/Progress/progress.scss +11 -0
- package/components/Switch/switch.css +7 -1
- package/components/Switch/switch.scss +7 -1
- package/components/_index.css +20 -3
- package/docs/demos/CardView/examples/CardView.md +81 -85
- package/package.json +1 -1
- package/patternfly-no-globals.css +20 -3
- package/patternfly.css +20 -3
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/patternfly.css
CHANGED
|
@@ -13986,7 +13986,7 @@ ul) {
|
|
|
13986
13986
|
|
|
13987
13987
|
.pf-v6-c-dual-list-selector__item,
|
|
13988
13988
|
.pf-v6-c-dual-list-selector__item-main {
|
|
13989
|
-
flex-
|
|
13989
|
+
flex-grow: 1;
|
|
13990
13990
|
}
|
|
13991
13991
|
|
|
13992
13992
|
.pf-v6-c-dual-list-selector__draggable {
|
|
@@ -14005,7 +14005,7 @@ ul) {
|
|
|
14005
14005
|
|
|
14006
14006
|
.pf-v6-c-dual-list-selector__item {
|
|
14007
14007
|
position: relative;
|
|
14008
|
-
width:
|
|
14008
|
+
min-width: 0;
|
|
14009
14009
|
padding-block-start: var(--pf-v6-c-dual-list-selector__item--PaddingBlockStart);
|
|
14010
14010
|
padding-block-end: var(--pf-v6-c-dual-list-selector__item--PaddingBlockEnd);
|
|
14011
14011
|
padding-inline-start: var(--pf-v6-c-dual-list-selector__item--PaddingInlineStart);
|
|
@@ -14247,6 +14247,8 @@ ul) {
|
|
|
14247
14247
|
flex-basis: var(--pf-v6-c-divider--before--FlexBasis);
|
|
14248
14248
|
content: "";
|
|
14249
14249
|
background-color: var(--pf-v6-c-divider--Color);
|
|
14250
|
+
border-block-start: var(--pf-v6-c-divider--Size) solid transparent;
|
|
14251
|
+
border-inline-start: var(--pf-v6-c-divider--Size) solid transparent;
|
|
14250
14252
|
}
|
|
14251
14253
|
.pf-v6-c-divider.pf-m-horizontal {
|
|
14252
14254
|
flex-direction: row;
|
|
@@ -22732,6 +22734,8 @@ ul.pf-v6-c-list {
|
|
|
22732
22734
|
--pf-v6-c-progress__status-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
22733
22735
|
--pf-v6-c-progress__indicator--Height: var(--pf-v6-c-progress__bar--Height);
|
|
22734
22736
|
--pf-v6-c-progress__indicator--BackgroundColor: var(--pf-t--global--color--brand--default);
|
|
22737
|
+
--pf-v6-c-progress__indicator--BorderWidth: var(--pf-t--global--border--width--high-contrast--extra-strong);
|
|
22738
|
+
--pf-v6-c-progress__indicator--BorderColor: transparent;
|
|
22735
22739
|
--pf-v6-c-progress__helper-text--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) - var(--pf-v6-c-progress--GridGap));
|
|
22736
22740
|
--pf-v6-c-progress--m-success__indicator--BackgroundColor: var(--pf-t--global--color--status--success--default);
|
|
22737
22741
|
--pf-v6-c-progress--m-warning__indicator--BackgroundColor: var(--pf-t--global--color--status--warning--default);
|
|
@@ -22902,6 +22906,13 @@ ul.pf-v6-c-list {
|
|
|
22902
22906
|
height: var(--pf-v6-c-progress__indicator--Height);
|
|
22903
22907
|
background-color: var(--pf-v6-c-progress__indicator--BackgroundColor);
|
|
22904
22908
|
}
|
|
22909
|
+
.pf-v6-c-progress__indicator::before {
|
|
22910
|
+
position: absolute;
|
|
22911
|
+
inset: 0;
|
|
22912
|
+
content: "";
|
|
22913
|
+
border: var(--pf-v6-c-progress__indicator--BorderWidth) solid var(--pf-v6-c-progress__indicator--BorderColor);
|
|
22914
|
+
border-radius: var(--pf-v6-c-progress__bar--BorderRadius);
|
|
22915
|
+
}
|
|
22905
22916
|
|
|
22906
22917
|
.pf-v6-c-progress__helper-text {
|
|
22907
22918
|
grid-row: 3/4;
|
|
@@ -24565,11 +24576,13 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
24565
24576
|
--pf-v6-c-switch--Height: auto;
|
|
24566
24577
|
--pf-v6-c-switch__input--checked__toggle--BackgroundColor: var(--pf-t--global--color--brand--default);
|
|
24567
24578
|
--pf-v6-c-switch__input--checked__toggle--before--TranslateX: calc(100% + var(--pf-v6-c-switch__toggle-icon--Offset));
|
|
24568
|
-
--pf-v6-c-switch__input--checked__toggle--
|
|
24579
|
+
--pf-v6-c-switch__input--checked__toggle--BorderColor: transparent;
|
|
24580
|
+
--pf-v6-c-switch__input--checked__toggle--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
24569
24581
|
--pf-v6-c-switch__input--checked__label--Color: var(--pf-t--global--text--color--regular);
|
|
24570
24582
|
--pf-v6-c-switch__input--not-checked__label--Color: var(--pf-t--global--text--color--subtle);
|
|
24571
24583
|
--pf-v6-c-switch__input--disabled__label--Color: var(--pf-t--global--text--color--disabled);
|
|
24572
24584
|
--pf-v6-c-switch__input--disabled__toggle--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
|
|
24585
|
+
--pf-v6-c-switch__input--disabled__toggle--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
24573
24586
|
--pf-v6-c-switch__input--checked__toggle--before--BackgroundColor: var(--pf-t--global--icon--color--inverse);
|
|
24574
24587
|
--pf-v6-c-switch__input--not-checked__toggle--before--BackgroundColor: var(--pf-t--global--icon--color--subtle);
|
|
24575
24588
|
--pf-v6-c-switch__input--disabled__toggle--before--BackgroundColor: var(--pf-t--global--icon--color--on-disabled);
|
|
@@ -24584,6 +24597,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
24584
24597
|
--pf-v6-c-switch__toggle--before--Width: calc(var(--pf-v6-c-switch--FontSize) - var(--pf-v6-c-switch__toggle-icon--Offset));
|
|
24585
24598
|
--pf-v6-c-switch__toggle--before--Height: var(--pf-v6-c-switch__toggle--before--Width);
|
|
24586
24599
|
--pf-v6-c-switch__toggle--before--InsetInlineStart: calc((var(--pf-v6-c-switch__toggle--Height) - var(--pf-v6-c-switch__toggle--before--Height)) / 2);
|
|
24600
|
+
--pf-v6-c-switch__toggle--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
24587
24601
|
--pf-v6-c-switch__toggle--before--BorderRadius: var(--pf-t--global--border--radius--large);
|
|
24588
24602
|
--pf-v6-c-switch__toggle--before--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
24589
24603
|
--pf-v6-c-switch__toggle--before--TransitionDuration: var(--pf-t--global--motion--duration--md);
|
|
@@ -24625,6 +24639,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
24625
24639
|
}
|
|
24626
24640
|
.pf-v6-c-switch__input:checked ~ .pf-v6-c-switch__toggle {
|
|
24627
24641
|
--pf-v6-c-switch__toggle--BorderWidth: var(--pf-v6-c-switch__input--checked__toggle--BorderWidth);
|
|
24642
|
+
--pf-v6-c-switch__toggle--BorderColor: var(--pf-v6-c-switch__input--checked__toggle--BorderColor);
|
|
24628
24643
|
background-color: var(--pf-v6-c-switch__input--checked__toggle--BackgroundColor);
|
|
24629
24644
|
}
|
|
24630
24645
|
.pf-v6-c-switch__input:checked ~ .pf-v6-c-switch__toggle::before {
|
|
@@ -24650,6 +24665,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
24650
24665
|
}
|
|
24651
24666
|
.pf-v6-c-switch__input:disabled ~ .pf-v6-c-switch__toggle {
|
|
24652
24667
|
--pf-v6-c-switch__toggle-icon--Color: var(--pf-v6-c-switch__input--disabled__toggle-icon--Color);
|
|
24668
|
+
--pf-v6-c-switch__toggle--BorderColor: var(--pf-v6-c-switch__input--disabled__toggle--BorderColor);
|
|
24653
24669
|
cursor: not-allowed;
|
|
24654
24670
|
background-color: var(--pf-v6-c-switch__input--disabled__toggle--BackgroundColor);
|
|
24655
24671
|
}
|
|
@@ -24674,6 +24690,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
24674
24690
|
height: var(--pf-v6-c-switch__toggle--before--Height);
|
|
24675
24691
|
content: "";
|
|
24676
24692
|
background-color: var(--pf-v6-c-switch__input--not-checked__toggle--before--BackgroundColor);
|
|
24693
|
+
border: var(--pf-v6-c-switch__toggle--before--BorderWidth) solid transparent;
|
|
24677
24694
|
border-radius: var(--pf-v6-c-switch__toggle--before--BorderRadius);
|
|
24678
24695
|
transition: var(--pf-v6-c-switch__toggle--before--Transition);
|
|
24679
24696
|
transform: translateY(-50%);
|