From 62e5c41d747bbda16ec34862859e011836cb06f4 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Tue, 6 Jan 2026 07:50:47 +0200 Subject: [PATCH] Fix overlapping calendar icons on Firefox --- app/styles/common.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/styles/common.css b/app/styles/common.css index a2659e63f..59ce369b1 100644 --- a/app/styles/common.css +++ b/app/styles/common.css @@ -342,6 +342,16 @@ select { opacity: 0; } +@-moz-document url-prefix() { + input[type="date"], + input[type="datetime-local"], + input[type="month"], + input[type="time"], + input[type="week"] { + background-image: none; + } +} + input[type="color"]::-webkit-color-swatch-wrapper { padding: calc(var(--input-height) / 8) 0; }