@khipu/design-system 0.2.0-alpha.80 → 0.2.0-alpha.81
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.
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*
|
|
12
12
|
* AUTO-GENERATED FILE - DO NOT EDIT MANUALLY
|
|
13
13
|
* Source: design-system/src/tokens/tokens.json
|
|
14
|
-
* Generated: 2026-06-30T16:
|
|
14
|
+
* Generated: 2026-06-30T16:44:56.587Z
|
|
15
15
|
*
|
|
16
16
|
* To regenerate:
|
|
17
17
|
* cd design-system && npm run tokens:generate
|
|
@@ -2418,6 +2418,16 @@ footer.primary a:hover {
|
|
|
2418
2418
|
margin-right: var(--kds-spacing-2);
|
|
2419
2419
|
}
|
|
2420
2420
|
|
|
2421
|
+
/* Ícono(s) en color primary. Para íconos MUI/SVG dentro del scope que, por el reset
|
|
2422
|
+
`.kds-theme-root svg { fill: currentColor }`, terminan heredando el color de texto
|
|
2423
|
+
(#333) en vez de su color propio — el `color="primary"` de MUI no le gana al contexto.
|
|
2424
|
+
Aplica al contenedor y a sus i/svg hijos. */
|
|
2425
|
+
.kds-icon-primary,
|
|
2426
|
+
.kds-icon-primary i,
|
|
2427
|
+
.kds-icon-primary svg {
|
|
2428
|
+
color: var(--kds-color-primary-main);
|
|
2429
|
+
}
|
|
2430
|
+
|
|
2421
2431
|
/* Section title icon */
|
|
2422
2432
|
.kds-stage-section-title i {
|
|
2423
2433
|
vertical-align: middle;
|
|
@@ -2460,6 +2470,14 @@ body.dark {
|
|
|
2460
2470
|
padding-block-start: 1.5rem;
|
|
2461
2471
|
}
|
|
2462
2472
|
|
|
2473
|
+
/* Field con .suffix (endIcon): el label en reposo no debe deslizarse bajo el ícono de la
|
|
2474
|
+
derecha. BeerCSS reserva el lado izquierdo para .prefix (--_start:3rem) pero NO el derecho
|
|
2475
|
+
para .suffix, así que un label largo se superponía con el ícono. Reservamos el ancho del
|
|
2476
|
+
ícono en el inset-inline-end (mismo valor que el padding que .prefix da al input). */
|
|
2477
|
+
.field.label.suffix > label {
|
|
2478
|
+
inset-inline-end: 2.9375rem;
|
|
2479
|
+
}
|
|
2480
|
+
|
|
2463
2481
|
/* ==========================================
|
|
2464
2482
|
NOTCH VISIBILITY (opacity)
|
|
2465
2483
|
========================================== */
|