From 9556849df0197f3e2d1f23256d3a73c208de6147 Mon Sep 17 00:00:00 2001 From: Ricardo Date: Sat, 7 Feb 2026 18:04:52 +0100 Subject: [PATCH] fix: restore checkbox appearance in forms The 'appearance: none' CSS rule was hiding checkboxes. Added 'appearance: auto' to restore native checkbox styling. Co-Authored-By: Claude Opus 4.5 --- package.json | 2 +- views/blogroll-blog-edit.njk | 2 ++ views/blogroll-source-edit.njk | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6ed160e..94c4eba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rmdes/indiekit-endpoint-blogroll", - "version": "1.0.5", + "version": "1.0.6", "description": "Blogroll endpoint for Indiekit. Aggregates blog feeds from OPML, JSON feeds, or manual entry.", "keywords": [ "indiekit", diff --git a/views/blogroll-blog-edit.njk b/views/blogroll-blog-edit.njk index 0777804..21f24fa 100644 --- a/views/blogroll-blog-edit.njk +++ b/views/blogroll-blog-edit.njk @@ -53,7 +53,9 @@ } .br-field-inline input[type="checkbox"] { + appearance: auto; width: auto; + cursor: pointer; } .br-section { diff --git a/views/blogroll-source-edit.njk b/views/blogroll-source-edit.njk index 4395191..1b940d5 100644 --- a/views/blogroll-source-edit.njk +++ b/views/blogroll-source-edit.njk @@ -54,7 +54,9 @@ } .br-field-inline input[type="checkbox"] { + appearance: auto; width: auto; + cursor: pointer; }