From fe20faf49db1cb735cfeb368dcd18ed8df9aaad9 Mon Sep 17 00:00:00 2001 From: t1enne <65537403+t1enne@users.noreply.github.com> Date: Sat, 16 Apr 2022 20:00:21 +0200 Subject: [PATCH] Fixed Firefox positioning caret on the right in chat input (#1834) --- webroot/styles/chat.css | 1 + 1 file changed, 1 insertion(+) diff --git a/webroot/styles/chat.css b/webroot/styles/chat.css index c4332939e..3bf2ef932 100644 --- a/webroot/styles/chat.css +++ b/webroot/styles/chat.css @@ -64,6 +64,7 @@ #message-input:empty:before { content: attr(placeholderText); pointer-events: none; + position: absolute; /* Fixes firefox positioning caret on the right */ display: block; /* For Firefox */ color: rgba(0, 0, 0, 0.5); }