@telepath-computer/television 0.1.103 → 0.1.105

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.
@@ -132,6 +132,10 @@ select {
132
132
  grid. */
133
133
  --alpha-50: 4%;
134
134
  --alpha-100: 8%;
135
+ /* Half-step between 100 and 200 — for surfaces that need a touch
136
+ more presence than tint-100 without the heft of tint-200 (e.g.
137
+ a footer button attached to a tint-100 panel). */
138
+ --alpha-150: 11%;
135
139
  --alpha-200: 15%;
136
140
  --alpha-300: 22%;
137
141
  --alpha-400: 30%;
@@ -148,6 +152,7 @@ select {
148
152
  button/input bgs on a known surface). */
149
153
  --tint-50: color-mix(in srgb, currentColor var(--alpha-50), transparent);
150
154
  --tint-100: color-mix(in srgb, currentColor var(--alpha-100), transparent);
155
+ --tint-150: color-mix(in srgb, currentColor var(--alpha-150), transparent);
151
156
  --tint-200: color-mix(in srgb, currentColor var(--alpha-200), transparent);
152
157
  --tint-300: color-mix(in srgb, currentColor var(--alpha-300), transparent);
153
158
  --tint-400: color-mix(in srgb, currentColor var(--alpha-400), transparent);
@@ -800,13 +805,22 @@ button[icon-only] {
800
805
  /* Attribute conventions — see docs/ui.md § Attribute conventions.
801
806
  `[selectable]` opts a subtree back into text selection inside an
802
807
  ancestor that disabled it (the app's main area sets
803
- `user-select: none` to suppress accidental chrome selection). */
808
+ `user-select: none` to suppress accidental chrome selection).
809
+ `[unselectable]` is the inverse — opts a subtree back OUT of
810
+ selection inside a `[selectable]` ancestor, for chrome labels
811
+ (e.g. "Used 5 tools") that sit alongside copyable content. */
804
812
  [selectable],
805
813
  [selectable] * {
806
814
  user-select: text;
807
815
  -webkit-user-select: text;
808
816
  }
809
817
 
818
+ [unselectable],
819
+ [unselectable] * {
820
+ user-select: none;
821
+ -webkit-user-select: none;
822
+ }
823
+
810
824
  /* Prose — opt-in typography for document content */
811
825
 
812
826
  .prose {