From edba8188fef402b5e1cf3f38c9fd5231d266b923 Mon Sep 17 00:00:00 2001 From: meinzzzz Date: Sun, 23 Nov 2025 13:44:28 +0100 Subject: [PATCH] Fix dark selection colors in MathLive math-field --- packages/ckeditor5-math/theme/mathform.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/ckeditor5-math/theme/mathform.css b/packages/ckeditor5-math/theme/mathform.css index 9537cdbb0..300e759d3 100644 --- a/packages/ckeditor5-math/theme/mathform.css +++ b/packages/ckeditor5-math/theme/mathform.css @@ -192,6 +192,13 @@ outline-offset: 6px; } +/* Override MathLive selection colors to prevent dark blocks in light mode */ +.ck.ck-math-form math-field { + --selection-background-color: rgba(33, 150, 243, 0.2); + --selection-color: inherit; + --contains-highlight-background-color: rgba(0, 0, 0, 0.05); +} + /* Make the raw LaTeX textarea flat (no rounded corners or hover animation) */ .ck-math-view .ck-labeled-field-view textarea { border-radius: 0 !important;