From 83894f9954e14565349096859e334b6a5aa541d9 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 9 Jan 2020 13:42:13 +0100 Subject: [PATCH] :lipstick: Make the text edition textarea transparent. --- frontend/src/uxbox/main/ui/shapes/text.cljs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/uxbox/main/ui/shapes/text.cljs b/frontend/src/uxbox/main/ui/shapes/text.cljs index b4484da10..de363634a 100644 --- a/frontend/src/uxbox/main/ui/shapes/text.cljs +++ b/frontend/src/uxbox/main/ui/shapes/text.cljs @@ -100,7 +100,8 @@ :margin "0px" :padding "0px" :border "0px" - :resize "none"} + :resize "none" + :background "transparent"} (when user-select {:userSelect "auto"}) (when line-height {:lineHeight line-height}) (when letter-spacing {:letterSpacing letter-spacing})))))