From 8a1bf4c833c0a91c9c40f1b3c8771defeaae60b1 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 11 May 2023 20:36:03 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/8232 --- app/src/assets/scss/mobile.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/assets/scss/mobile.scss b/app/src/assets/scss/mobile.scss index 63cfc4ac1..3cf220fdd 100644 --- a/app/src/assets/scss/mobile.scss +++ b/app/src/assets/scss/mobile.scss @@ -453,12 +453,12 @@ } } -html .protyle-wysiwyg [spellcheck]:empty:before { +html .protyle-wysiwyg [spellcheck][contenteditable="true"]:empty:before { content: "Enter text"; color: var(--b3-theme-on-surface-light); } -html[lang="zh_CN"] .protyle-wysiwyg [spellcheck]:empty:before { +html[lang="zh_CN"] .protyle-wysiwyg [spellcheck][contenteditable="true"]:empty:before { content: "键入文字"; color: var(--b3-theme-on-surface-light); }