From e56ce81f903966bdc87d3b7d9b26f57c2d37f628 Mon Sep 17 00:00:00 2001 From: Michelle Date: Wed, 7 Aug 2024 00:15:55 +0700 Subject: [PATCH] Show placeholder text when it's empty Not just when it's not in focus --- src/trix/elements/trix_editor_element.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trix/elements/trix_editor_element.js b/src/trix/elements/trix_editor_element.js index 33877cc1a..44626100b 100644 --- a/src/trix/elements/trix_editor_element.js +++ b/src/trix/elements/trix_editor_element.js @@ -110,7 +110,7 @@ installDefaultCSSForTagName("trix-editor", `\ display: block; } -%t:empty:not(:focus)::before { +%t:empty::before { content: attr(placeholder); color: graytext; cursor: text;