diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2017-07-12 14:26:53 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2017-07-12 14:26:53 +0200 |
commit | 7f2c617f37d7742d2e40d31aeccdc58145827626 (patch) | |
tree | 2c663abeafe1c69027b33e4366d1125d0fefae16 | |
parent | 85d56a9b1669f2fd4371412876b4cf0df45f45a2 (diff) | |
download | comatose-7f2c617f37d7742d2e40d31aeccdc58145827626.tar.gz comatose-7f2c617f37d7742d2e40d31aeccdc58145827626.tar.bz2 comatose-7f2c617f37d7742d2e40d31aeccdc58145827626.zip |
Add space between checkbox and label
-rw-r--r-- | Main.hs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -271,6 +271,7 @@ features db = dl_ $ forM_ (M.toList $ getFeaturesByBase db baseident) $ \(ident, feature) -> do dt_ [class_ "form-inline"] $ let i = T.pack ("filter-feature-" ++ ident) in do input_ [type_ "checkbox", id_ i, class_ "filter-feature", value_ (T.pack ident)] + " " label_ [for_ i] $ toHtml $ fname feature maybe mempty (dd_ . toHtml) $ fdescription feature |