From ade8654cc4633a7732081cefe7ce4f035dc0fa42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Kaan=20K=C3=B6se?= Date: Sun, 7 Jul 2024 19:57:15 +0200 Subject: [PATCH] Change default font to Arial for composer. --- Wino.Mail/JS/editor.html | 2 ++ Wino.Mail/JS/editor.js | 1 + 2 files changed, 3 insertions(+) diff --git a/Wino.Mail/JS/editor.html b/Wino.Mail/JS/editor.html index 06d61265..8ab08aca 100644 --- a/Wino.Mail/JS/editor.html +++ b/Wino.Mail/JS/editor.html @@ -18,6 +18,8 @@ height: 100%; } + + .jodit-container:not(.jodit_inline) { background-color: transparent; border: none; diff --git a/Wino.Mail/JS/editor.js b/Wino.Mail/JS/editor.js index 32d2765d..280cb5cc 100644 --- a/Wino.Mail/JS/editor.js +++ b/Wino.Mail/JS/editor.js @@ -6,6 +6,7 @@ const editor = Jodit.make("#editor", { "toolbarAdaptive": false, "toolbarInlineForSelection": false, "showCharsCounter": false, + style: { font: "14px Arial" }, "showWordsCounter": false, "showXPathInStatusbar": false, "disablePlugins": "add-new-line",