Fix codemirror selection and fonts

This commit is contained in:
IRBorisov 2024-01-29 15:27:06 +03:00
parent f37dbdcf31
commit 5b3862d46c
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ import { rsHoverTooltip } from './tooltip';
const editorSetup: BasicSetupOptions = { const editorSetup: BasicSetupOptions = {
highlightSpecialChars: false, highlightSpecialChars: false,
history: true, history: true,
drawSelection: false, drawSelection: true,
syntaxHighlighting: false, syntaxHighlighting: false,
defaultKeymap: true, defaultKeymap: true,
historyKeymap: true, historyKeymap: true,

View File

@ -24,7 +24,7 @@ import { refsHoverTooltip } from './tooltip';
const editorSetup: BasicSetupOptions = { const editorSetup: BasicSetupOptions = {
highlightSpecialChars: false, highlightSpecialChars: false,
history: true, history: true,
drawSelection: false, drawSelection: true,
syntaxHighlighting: false, syntaxHighlighting: false,
defaultKeymap: true, defaultKeymap: true,
historyKeymap: true, historyKeymap: true,

View File

@ -6,7 +6,7 @@
:root { :root {
--font-ui: 'Geologica', sans-serif; --font-ui: 'Geologica', sans-serif;
--font-main: 'Rubik', 'Noto Sans Math', 'Noto Sans Symbols 2', 'Segoe UI Symbol', sans-serif; --font-main: 'Rubik', 'Noto Sans Math', 'Noto Sans Symbols 2', 'Segoe UI Symbol', sans-serif;
--font-math: 'Noto Sans Math', 'Noto Sans Symbols 2', 'Segoe UI Symbol', sans-serif; --font-math: 'Noto Sans Math', 'Noto Sans Symbols 2', 'Rubik', 'Segoe UI Symbol', sans-serif;
/* Light Theme */ /* Light Theme */
--cl-bg-120: hsl(000, 000%, 100%); --cl-bg-120: hsl(000, 000%, 100%);