From 7c5031ab28dcdc8df9a025fe38c8fdd585d73162 Mon Sep 17 00:00:00 2001 From: hikaru-y Date: Mon, 5 Jul 2021 03:19:26 +0900 Subject: [PATCH] Prevent #dupe bgcolor from being carried over when copying text use 'background-image' instead of 'background-color' to prevent the background-color from being carried over when copying text to another field in day mode --- ts/editor/fields.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/editor/fields.scss b/ts/editor/fields.scss index 857a16ac1..4c67fd8ed 100644 --- a/ts/editor/fields.scss +++ b/ts/editor/fields.scss @@ -19,7 +19,7 @@ background: var(--frame-bg); &.dupe { - background: var(--flag1-bg); + background-image: linear-gradient(var(--flag1-bg), var(--flag1-bg)); } }