From 7276429fc84413b7de1a793c4401d1ab8bc91a90 Mon Sep 17 00:00:00 2001 From: Eduardo Rosado Date: Wed, 4 Mar 2026 01:12:53 -0600 Subject: [PATCH] fix: remove text-shadow causing blurry code blocks inside blockquotes (#1411) The Prism.js dark theme applies `text-shadow: 0 -.1em .2em black` to all code elements. This shadow is designed for dark backgrounds but becomes visible and causes text to appear blurry when code blocks are rendered inside light-colored blockquotes (info, warning, success, danger). Adding `text-shadow: none` to `.prismjs > code` neutralizes the shadow at the application theme level, where other Prism overrides already exist. --- client/themes/default/scss/app.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/client/themes/default/scss/app.scss b/client/themes/default/scss/app.scss index 88380963f..15ce6636e 100644 --- a/client/themes/default/scss/app.scss +++ b/client/themes/default/scss/app.scss @@ -753,6 +753,7 @@ display: block; font-size: .85rem; font-family: 'Roboto Mono', monospace; + text-shadow: none; &:after, &:before { content: initial;