@sensiblestats/widget-embed 0.38.6 → 0.38.7
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/CHANGELOG.md +6 -0
- package/dist/embed.global.js +7 -4
- package/dist/embed.global.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @sensiblestats/widget-embed
|
|
2
2
|
|
|
3
|
+
## 0.38.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- df7d101: Greeting discovery tiles now tint the live panel color instead of hardcoding light pastels, so an operator with a dark custom `surface` (or a dark theme) gets readable tinted-dark cards rather than near-white text on fixed light pastel backgrounds.
|
|
8
|
+
|
|
3
9
|
## 0.38.6
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/embed.global.js
CHANGED
|
@@ -459,10 +459,13 @@ Error generating stack: `+s.message+`
|
|
|
459
459
|
.ss-w-dash--discovery .ss-w-dash-tile--full .ss-w-dash-tile-icon { align-self: center; }
|
|
460
460
|
.ss-w-dash--discovery .ss-w-dash-tile-meta { flex-wrap: nowrap; }
|
|
461
461
|
.ss-w-dash--discovery .ss-w-dash-tile-crest { width: 22px; height: 22px; }
|
|
462
|
-
|
|
463
|
-
.
|
|
464
|
-
|
|
465
|
-
.ss-w-dash--discovery .ss-w-dash-tile:nth-child(
|
|
462
|
+
/* Tints mix a hue into the live panel rather than hardcoding a light pastel, so a dark
|
|
463
|
+
operator surface (e.g. --ss-w-panel set from a navy \`surface\` brand color) yields a
|
|
464
|
+
readable tinted-dark card instead of near-white ink on a fixed light pastel. */
|
|
465
|
+
.ss-w-dash--discovery .ss-w-dash-tile:nth-child(1) { background: color-mix(in srgb, #34c759 10%, var(--ss-w-panel)); }
|
|
466
|
+
.ss-w-dash--discovery .ss-w-dash-tile:nth-child(2) { background: color-mix(in srgb, #3a82f6 10%, var(--ss-w-panel)); }
|
|
467
|
+
.ss-w-dash--discovery .ss-w-dash-tile:nth-child(3) { background: color-mix(in srgb, #f5a623 10%, var(--ss-w-panel)); }
|
|
468
|
+
.ss-w-dash--discovery .ss-w-dash-tile:nth-child(4) { background: color-mix(in srgb, #a855f7 10%, var(--ss-w-panel)); }
|
|
466
469
|
|
|
467
470
|
/* club fan pre-match dashboard */
|
|
468
471
|
.ss-w-fandash { display: flex; flex-direction: column; gap: 10px; padding: 4px 0; }
|