From d73622ed9cd458baf71146a5286e9c40969abe38 Mon Sep 17 00:00:00 2001 From: Prabhat Khera <91852476+prabhat-org@users.noreply.github.com> Date: Fri, 10 Feb 2023 09:19:43 +1300 Subject: [PATCH] fix cursor on autofill (#8378) --- app/assets/css/app.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/css/app.css b/app/assets/css/app.css index cb3544195..89de891aa 100644 --- a/app/assets/css/app.css +++ b/app/assets/css/app.css @@ -776,3 +776,7 @@ input[style*='background-image: url("data:image/png'] { .web-editor .trancluded-item:empty { display: none; } + +input:-webkit-autofill { + @apply caret-[--grey-25] th-dark:caret-white th-highcontrast:caret-white; +}