From ab56362630938962af2c950446903d2f216a22e6 Mon Sep 17 00:00:00 2001 From: Talisson Costa Date: Thu, 13 Aug 2026 10:54:35 -0300 Subject: [PATCH] fix(value-editor): restore the border on JSON values A bare `.json { border: none }` rule overrode the `.hljs` border for the value editor's ``, so JSON values rendered without the box shown for txt/xml/toml/yaml. Remove the stale, unscoped rule so JSON matches the other languages. Co-Authored-By: Claude Opus 4.8 (1M context) --- frontend/web/styles/3rdParty/_hljs.scss | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/web/styles/3rdParty/_hljs.scss b/frontend/web/styles/3rdParty/_hljs.scss index 7f17ec20ba5d..d7027cdcd371 100644 --- a/frontend/web/styles/3rdParty/_hljs.scss +++ b/frontend/web/styles/3rdParty/_hljs.scss @@ -282,9 +282,6 @@ } } -.json { - border: none; -} .value-editor pre { overflow: hidden; }