Skip to content

Commit

Permalink
Remove bullets from UL list inside forms
Browse files Browse the repository at this point in the history
Wagtail Form Builder uses ul lists for some of its widgets (radio
buttons, checkboxes). The bullets dont look good here, so remove
them.
  • Loading branch information
donald committed Mar 12, 2020
1 parent e4ee670 commit af4e5fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions mpicms/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -740,3 +740,7 @@ a.tag:hover {
div.codehilite:not(:last-child) {
margin-bottom: 1em;
}

.wt-form ul {
list-style: none
}
2 changes: 1 addition & 1 deletion mpicms/templates/base/form_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2 class="title is-2">{{ page.title }}</h2>

<div id="content" class="content">
{{ page.intro|richtext }}
<form action="{% pageurl page %}" method="POST">
<form action="{% pageurl page %}" method="POST" class="wt-form">
{% csrf_token %}
<table>
{{ form.as_table }}
Expand Down

0 comments on commit af4e5fe

Please sign in to comment.