@ceebee/ui 1.5.0 → 1.5.1
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/dist/styles.css +9 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -2099,6 +2099,15 @@ html, body { background: var(--cb-bg); color: var(--cb-fg); }
|
|
|
2099
2099
|
display: flex;
|
|
2100
2100
|
}
|
|
2101
2101
|
|
|
2102
|
+
/* The native radio remains in the server markup. Without Ant's runtime rule it paints as a normal
|
|
2103
|
+
form control beside every option, even though the visible label already owns the interaction. */
|
|
2104
|
+
:where(.ant-segmented-item-input) {
|
|
2105
|
+
position: absolute;
|
|
2106
|
+
inset: var(--cb-space-0);
|
|
2107
|
+
opacity: 0;
|
|
2108
|
+
pointer-events: none;
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2102
2111
|
:where(.ant-segmented-item) {
|
|
2103
2112
|
color: var(--cb-fg-muted);
|
|
2104
2113
|
}
|