From af4e5fe365c187f492ed7a8d89caaf75c112bea9 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Thu, 12 Mar 2020 16:48:10 +0100 Subject: [PATCH] Remove bullets from UL list inside forms Wagtail Form Builder uses ul lists for some of its widgets (radio buttons, checkboxes). The bullets dont look good here, so remove them. --- mpicms/static/css/custom.css | 4 ++++ mpicms/templates/base/form_page.html | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/mpicms/static/css/custom.css b/mpicms/static/css/custom.css index 323b80b..7096f66 100644 --- a/mpicms/static/css/custom.css +++ b/mpicms/static/css/custom.css @@ -740,3 +740,7 @@ a.tag:hover { div.codehilite:not(:last-child) { margin-bottom: 1em; } + +.wt-form ul { + list-style: none +} diff --git a/mpicms/templates/base/form_page.html b/mpicms/templates/base/form_page.html index 57a5e42..76d61e6 100644 --- a/mpicms/templates/base/form_page.html +++ b/mpicms/templates/base/form_page.html @@ -11,7 +11,7 @@

{{ page.title }}

{{ page.intro|richtext }} -
+ {% csrf_token %} {{ form.as_table }}