From 29d2a24d378f1b15f2d69f6bcd83350934a33a5b Mon Sep 17 00:00:00 2001 From: shrianshChari <30420527+shrianshChari@users.noreply.github.com> Date: Wed, 21 May 2025 20:04:57 -0700 Subject: [PATCH] Preact Teambuilder: Fix the team textbox placeholder on Firefox (#2438) --- play.pokemonshowdown.com/style/teambuilder.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/play.pokemonshowdown.com/style/teambuilder.css b/play.pokemonshowdown.com/style/teambuilder.css index c05eea655..4e108be32 100644 --- a/play.pokemonshowdown.com/style/teambuilder.css +++ b/play.pokemonshowdown.com/style/teambuilder.css @@ -261,7 +261,8 @@ resize: none; } .teamtextbox::placeholder { - transform: translateY(20px); + /* Firefox doesn't support transform, padding-top, margin-top, _or_ top... */ + line-height: 60px; } .teaminnertextbox { width: 320px;