From 9758844da348a5974b55b59655f1e3f07d6b7991 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Tue, 8 Oct 2024 19:56:58 -0400 Subject: [PATCH] editor: Fix visible whitespace toggle. --- core/client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/client.js b/core/client.js index 39348308..ee3cfbd9 100644 --- a/core/client.js +++ b/core/client.js @@ -1820,8 +1820,8 @@ function toggleVisibleWhitespace() { .cm-highlightTab { background-image: unset !important; } - .cm-highlightSpace:before { - content: unset !important; + .cm-highlightSpace { + background-image: unset !important; } `; window.localStorage.setItem('visible_whitespace', '1');