From a6a40128e3c1b73a07bd9dc54dc30c079ebb2cdc Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Fri, 21 Aug 2026 21:51:38 +0100 Subject: [PATCH] Add Background Color to Code Block Editor - Introduced a new CSS rule to set the background color for the code block editor, enhancing visual distinction and user experience. - This change improves the overall aesthetics of the editor interface, aligning it with the application's design standards. --- assets/stylesheets/App.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/stylesheets/App.css b/assets/stylesheets/App.css index 975602d2..e82e83b6 100644 --- a/assets/stylesheets/App.css +++ b/assets/stylesheets/App.css @@ -1680,3 +1680,7 @@ span.ant-skeleton-input.ant-skeleton-input-sm.text-skeleton { margin: 0; font-size: 95%; } + +.code-block-editor .simplebar-content-wrapper { + background-color: var(--layout-modal-bg); +}