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.
This commit is contained in:
Tom Butcher 2026-08-21 21:51:38 +01:00
parent ef79c881e4
commit a6a40128e3

View File

@ -1680,3 +1680,7 @@ span.ant-skeleton-input.ant-skeleton-input-sm.text-skeleton {
margin: 0; margin: 0;
font-size: 95%; font-size: 95%;
} }
.code-block-editor .simplebar-content-wrapper {
background-color: var(--layout-modal-bg);
}