From 0b863b97a4382fb86c6dac40fdd07e1acfa218bd Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Mon, 22 Sep 2025 16:39:44 +0200 Subject: [PATCH] Checkbox styling: remove bg-white to fix invisible checkmark After upgrading to Tailwind 4, the styled checkbox showed no checkmark when checked. DevTools inspection showed a white-on-white rendering: the checkmark SVG was filled white while the background was also white. Removing the bg-white class restores the intended text-* color, making the checkmark visible again. The class bg-white was added in 4c8fb20daa9c i.e. in our first attempt to get a non-ugly checkbox styling; whether it was "ever needed for realz" is of historic interest mostly. Fix #225 --- issues/templates/issues/issue_list.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/issues/templates/issues/issue_list.html b/issues/templates/issues/issue_list.html index 70c68ec..1dee96b 100644 --- a/issues/templates/issues/issue_list.html +++ b/issues/templates/issues/issue_list.html @@ -64,7 +64,7 @@
{# the below sounds expensive, but this list is cached #} - {% if page_obj.object_list|length > 0 %}{% endif %} + {% if page_obj.object_list|length > 0 %}{% endif %}
@@ -165,7 +165,7 @@
- +