From 7859b82b1612924e4f10fc070ffcd678daaf5fd4 Mon Sep 17 00:00:00 2001 From: Stan Grams Date: Wed, 1 Apr 2026 19:01:10 +0200 Subject: [PATCH] [fix](trx-frontend-http): restore DSEG14 font on RDS PS field in debug panel The .rds-ps class was missing font-family after JS refactoring, causing it to inherit the generic monospace stack from .rds-value instead of using the seven-segment DSEG14 Classic font. Fixes #141 Co-Authored-By: Claude Opus 4.6 (1M context) Signed-off-by: Stan Grams --- .../trx-frontend/trx-frontend-http/assets/web/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css index ff52cb3..3a6e727 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css +++ b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css @@ -2646,7 +2646,7 @@ body.map-fake-fullscreen-active { .rds-field { display: contents; } .rds-label { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; } .rds-value { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 0.95rem; color: var(--text); } -.rds-ps { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.08em; color: var(--accent-green); } +.rds-ps { font-family: 'DSEG14 Classic', monospace; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.08em; color: var(--accent-green); } .rds-text { white-space: normal; overflow-wrap: anywhere; line-height: 1.35; } .rds-af-list { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; } .rds-af-btn {