From a3c7f853029f4a9717fe12c3e2f16e30128cac58 Mon Sep 17 00:00:00 2001 From: "Tanner Collin (aider)" Date: Thu, 14 Aug 2025 23:10:49 +0000 Subject: [PATCH] fix: Set transparent background for checked checkbox on Firefox Mobile --- mapper/src/App.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mapper/src/App.css b/mapper/src/App.css index 44dcf4e..c64c6c8 100644 --- a/mapper/src/App.css +++ b/mapper/src/App.css @@ -140,6 +140,11 @@ h2 { place-content: center; } +/* Fix for Firefox Mobile rendering a black background on checked state */ +.submenu-checkbox-label input[type="checkbox"]:checked { + background-color: transparent; +} + .submenu-checkbox-label input[type="checkbox"]::before { content: ""; width: 0.75em;