Fix invisible select chevron in all presets (#136) #151

Merged
fen merged 1 commits from fix-136-select-chevron into dev 2026-09-10 04:31:27 +00:00
1 Commits
Author SHA1 Message Date
fen 72dbfb1b3c Fix invisible select chevron in all presets (#136)
CI / docker (pull_request) Skipped
CI / test (pull_request) Successful in 28s
Two compounding causes:
- CSP img-src fell back to default-src (self), blocking the data: URI
  chevron image on all served pages, so no select ever painted it.
- .editor-head select used the background shorthand, wiping the
  background-image set by the later select rule.

Chevron stroke is now a per-preset --chevron token (light stroke for
dark presets, dark for light presets) instead of hardcoded #888.
CSP gains img-src 'self' data: so the data-URI icons can load.
2026-09-09 23:25:15 -05:00