From 853547be82067f773c32dd905e38db0f9c97f21c Mon Sep 17 00:00:00 2001 From: HeyItsChloe <54480367+HeyItsChloe@users.noreply.github.com> Date: Wed, 10 Dec 2025 08:26:02 -0800 Subject: [PATCH] fix(frontend): fix highlighted in terminal is missing background color (#11981) Co-authored-by: Chloe --- frontend/src/tailwind.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/tailwind.css b/frontend/src/tailwind.css index 8228f6b154..1673288564 100644 --- a/frontend/src/tailwind.css +++ b/frontend/src/tailwind.css @@ -318,8 +318,8 @@ background: transparent !important; } -/* Ensure all xterm elements have transparent backgrounds */ -.xterm * { +/* Ensure all xterm DOM elements have transparent backgrounds. Exclude canvas elements */ +.xterm { background: transparent !important; }