From 0b304ace952376207d6e978a5c305605fa220732 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Thu, 8 Jan 2026 22:29:20 -0500 Subject: [PATCH] visual fixes --- assets/css/dashboard.css | 8 +++++--- assets/css/ticket.css | 6 ++++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/assets/css/dashboard.css b/assets/css/dashboard.css index f95f290..348631a 100644 --- a/assets/css/dashboard.css +++ b/assets/css/dashboard.css @@ -1592,22 +1592,24 @@ input[type="checkbox"]:checked { color: var(--terminal-amber); text-shadow: var(--glow-amber-intense); font-family: var(--font-mono); - font-size: 1.1rem; + font-size: 0.95rem; text-transform: uppercase; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--terminal-green); position: relative; + white-space: nowrap; + overflow: hidden; } .dashboard-sidebar .ascii-subsection-header::before { - content: '╔═══ '; + content: '╔══ '; color: var(--terminal-green); text-shadow: var(--glow-green); } .dashboard-sidebar .ascii-subsection-header::after { - content: ' ═══╗'; + content: ' ══╗'; color: var(--terminal-green); text-shadow: var(--glow-green); } diff --git a/assets/css/ticket.css b/assets/css/ticket.css index 4197be9..1db4764 100644 --- a/assets/css/ticket.css +++ b/assets/css/ticket.css @@ -136,9 +136,11 @@ } /* Remove old corner styles when using ascii-frame-outer (new frame system handles this) */ -.ticket-container.ascii-frame-outer::before, -.ticket-container.ascii-frame-outer::after { +.ticket-container.ascii-frame-outer::before { content: '╔' !important; +} + +.ticket-container.ascii-frame-outer::after { content: '╗' !important; }