From 1e06310b8b2b56f131754eaded615b6cf32c5848 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Fri, 23 Jun 2023 16:22:46 +0300 Subject: [PATCH] Fix input placeholder in safari and disabled color of the input. --- less/input.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/less/input.less b/less/input.less index 58f3c1a..1a21c7a 100644 --- a/less/input.less +++ b/less/input.less @@ -70,8 +70,8 @@ & > .placeholder { position: absolute; - left: 0; top: 0; + left: 0; bottom: 0; right: 0; overflow: hidden; @@ -118,6 +118,7 @@ &:disabled { background: transparent; color: var(--input-color-disabled); + -webkit-text-fill-color: var(--input-color-disabled); } }