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 <noreply@anthropic.com>
This commit is contained in:
Ricardo
2026-02-07 18:04:52 +01:00
parent 87ebebfb7a
commit 9556849df0
3 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@rmdes/indiekit-endpoint-blogroll", "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.", "description": "Blogroll endpoint for Indiekit. Aggregates blog feeds from OPML, JSON feeds, or manual entry.",
"keywords": [ "keywords": [
"indiekit", "indiekit",
+2
View File
@@ -53,7 +53,9 @@
} }
.br-field-inline input[type="checkbox"] { .br-field-inline input[type="checkbox"] {
appearance: auto;
width: auto; width: auto;
cursor: pointer;
} }
.br-section { .br-section {
+2
View File
@@ -54,7 +54,9 @@
} }
.br-field-inline input[type="checkbox"] { .br-field-inline input[type="checkbox"] {
appearance: auto;
width: auto; width: auto;
cursor: pointer;
} }
</style> </style>