From 67d97bb096a8926085cd91a7df2409c200afe980 Mon Sep 17 00:00:00 2001 From: Mathias Kresin Date: Mon, 13 Apr 2015 14:15:35 +0200 Subject: [PATCH] wrap a span around the checkbox label and remove bogus nbsp --- assets/css/app.css | 1 + lib/helpers.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/css/app.css b/assets/css/app.css index bb5e251..93510fe 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -158,6 +158,7 @@ label { input[type="checkbox"] { border: 1px solid #ccc; + margin-right: 0.5em; } input[type="email"], diff --git a/lib/helpers.php b/lib/helpers.php index 5365a7d..756fee9 100644 --- a/lib/helpers.php +++ b/lib/helpers.php @@ -245,7 +245,7 @@ function form_radio($name, $label, $value, $checked = false, $class = '') function form_checkbox($name, $label, $value, $checked = false, $class = '') { - return ''; + return ''; } function form_label($label, $name, $class = '')