From 9f9a48bf24e6f5c16a16499fc8b1779a05ef3347 Mon Sep 17 00:00:00 2001 From: dekzter Date: Wed, 12 Mar 2025 18:08:08 -0400 Subject: [PATCH] fixed firefox mantine select box issue --- frontend/src/index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/index.css b/frontend/src/index.css index 9b8ef772..f37ed233 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -30,6 +30,12 @@ code { background: #777; } +@supports (-moz-appearance: none) { + input[readonly][aria-haspopup] { + pointer-events: auto !important; + } +} + table.mrt-table tr.mantine-Table-tr.mantine-Table-tr-detail-panel td.mantine-Table-td-detail-panel { width: 100% !important; }