@telepath-computer/television 0.1.106 → 0.1.108
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/canonical/v1/styles.css +16 -6
- package/dist/cli.cjs +36 -919
- package/dist/views/markdown/index.html +3 -3
- package/dist/web/assets/{index-BbSTSxZQ.css → index-B-es86cH.css} +1 -1
- package/dist/web/assets/index-Br9lxH4i.js +587 -0
- package/dist/web/index.html +2 -2
- package/package.json +1 -1
- package/dist/web/assets/index-dt9xJolN.js +0 -559
|
@@ -86,6 +86,7 @@ select {
|
|
|
86
86
|
--control-height-xs: 18px;
|
|
87
87
|
--control-height-sm: 24px;
|
|
88
88
|
--control-height-md: 28px;
|
|
89
|
+
--control-height-lg: 32px;
|
|
89
90
|
|
|
90
91
|
/* Spacing */
|
|
91
92
|
--space-2: 2px;
|
|
@@ -115,7 +116,14 @@ select {
|
|
|
115
116
|
--radius-24: 24px;
|
|
116
117
|
--radius-full: 9999px;
|
|
117
118
|
|
|
118
|
-
/*
|
|
119
|
+
/* Z-index ladder — semantic tiers for stacking. Components set
|
|
120
|
+
`z-index: var(--layer-*)` directly when they need a specific tier
|
|
121
|
+
(the `level` attribute in materials.css only controls shadow). */
|
|
122
|
+
--layer-chrome: 100;
|
|
123
|
+
--layer-panel: 500;
|
|
124
|
+
--layer-overlay: 2000;
|
|
125
|
+
|
|
126
|
+
/* Shadows */
|
|
119
127
|
--shadow-hairline: 0 0 0 0.5px var(--color-border);
|
|
120
128
|
/* Soft 2-layer drop shadow shared by buttons, dropdown triggers, and
|
|
121
129
|
other controls that aren't surfaces. Surface elevation lives on
|
|
@@ -409,12 +417,14 @@ textarea {
|
|
|
409
417
|
box-shadow 120ms ease;
|
|
410
418
|
}
|
|
411
419
|
|
|
412
|
-
/* Single-line input snaps to the
|
|
413
|
-
|
|
414
|
-
|
|
420
|
+
/* Single-line input snaps to the `lg` control height — taller than
|
|
421
|
+
buttons/segmented controls (`md`) so text-entry fields have visual
|
|
422
|
+
presence as the primary affordance in forms. Padding goes
|
|
423
|
+
horizontal-only since the explicit height handles vertical centering
|
|
424
|
+
via the line-box. */
|
|
415
425
|
input {
|
|
416
|
-
height: var(--control-height-
|
|
417
|
-
padding: 0
|
|
426
|
+
height: var(--control-height-lg);
|
|
427
|
+
padding: 0 12px;
|
|
418
428
|
}
|
|
419
429
|
|
|
420
430
|
/* Multi-line textarea stays intrinsic — height grows with content (or
|