@patternfly/patternfly 6.0.0-alpha.167 → 6.0.0-alpha.169
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/Switch/switch.css +0 -6
- package/components/Switch/switch.scss +0 -8
- package/components/Toolbar/toolbar.css +66 -792
- package/components/Toolbar/toolbar.scss +4 -14
- package/components/Truncate/truncate.css +1 -1
- package/components/Truncate/truncate.scss +1 -1
- package/components/_index.css +67 -799
- package/docs/components/Switch/examples/Switch.md +33 -148
- package/docs/demos/DataList/examples/DataList.md +2560 -2634
- package/docs/demos/Table/examples/Table.md +8321 -8680
- package/package.json +5 -5
- package/patternfly-no-globals.css +67 -799
- package/patternfly.css +67 -799
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -78,18 +78,12 @@
|
|
|
78
78
|
transform: translate(calc(var(--pf-v6-c-switch__input--checked__toggle--before--TranslateX) * var(--pf-v6-global--inverse--multiplier)), -50%);
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
.pf-v6-c-switch__input:checked ~ .pf-m-off {
|
|
82
|
-
display: none;
|
|
83
|
-
}
|
|
84
81
|
.pf-v6-c-switch__input:not(:checked) ~ .pf-v6-c-switch__label {
|
|
85
82
|
color: var(--pf-v6-c-switch__input--not-checked__label--Color);
|
|
86
83
|
}
|
|
87
84
|
.pf-v6-c-switch__input:not(:checked) ~ .pf-v6-c-switch__toggle .pf-v6-c-switch__toggle-icon {
|
|
88
85
|
display: none;
|
|
89
86
|
}
|
|
90
|
-
.pf-v6-c-switch__input:not(:checked) ~ .pf-m-on {
|
|
91
|
-
display: none;
|
|
92
|
-
}
|
|
93
87
|
.pf-v6-c-switch__input:disabled {
|
|
94
88
|
cursor: not-allowed;
|
|
95
89
|
}
|
|
@@ -99,10 +99,6 @@
|
|
|
99
99
|
background-color: var(--#{$switch}__input--checked__toggle--before--BackgroundColor);
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
|
-
|
|
103
|
-
~ .pf-m-off {
|
|
104
|
-
display: none;
|
|
105
|
-
}
|
|
106
102
|
}
|
|
107
103
|
|
|
108
104
|
&:not(:checked) {
|
|
@@ -115,10 +111,6 @@
|
|
|
115
111
|
display: none;
|
|
116
112
|
}
|
|
117
113
|
}
|
|
118
|
-
|
|
119
|
-
~ .pf-m-on {
|
|
120
|
-
display: none;
|
|
121
|
-
}
|
|
122
114
|
}
|
|
123
115
|
|
|
124
116
|
&:disabled {
|