From c2e51cba3a86cad4ac92d0fe3d9018ccef13b930 Mon Sep 17 00:00:00 2001 From: Faizaan Gagan Date: Sat, 3 Jul 2021 13:23:33 +0530 Subject: [PATCH] FIX: hide placeholder on field focus --- assets/stylesheets/wizard/custom/field.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/assets/stylesheets/wizard/custom/field.scss b/assets/stylesheets/wizard/custom/field.scss index e5a7f5e2..f2bb3aa0 100644 --- a/assets/stylesheets/wizard/custom/field.scss +++ b/assets/stylesheets/wizard/custom/field.scss @@ -162,4 +162,15 @@ .text-field input { margin-bottom: 0; } + + .text-field, + .textarea-field, + .composer-field { + input[type="text"], + textarea { + &:focus::placeholder { + color: transparent; + } + } + } }