diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/base/admin/category-checkboxes.html | 4 | ||||
-rw-r--r-- | templates/web/bromley/admin/category-checkboxes.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/web/base/admin/category-checkboxes.html b/templates/web/base/admin/category-checkboxes.html index f2167e955..fb5e39695 100644 --- a/templates/web/base/admin/category-checkboxes.html +++ b/templates/web/base/admin/category-checkboxes.html @@ -1,7 +1,7 @@ <p> <strong>[% loc('Categories:') %]</strong> </p> - <ul> + <ul class="no-bullets no-margin"> <li> [% loc('Select:') %] <a href="#" data-select-all>[% loc('all') %]</a> / @@ -9,7 +9,7 @@ </li> [% FOR contact IN contacts %] <li> - <label title="[% contact.email | html %]"> + <label class="inline" title="[% contact.email | html %]"> <input type="checkbox" name="contacts[[% contact.id %]]" [% 'checked' IF contact.active %]/> [% contact.category %] </label> diff --git a/templates/web/bromley/admin/category-checkboxes.html b/templates/web/bromley/admin/category-checkboxes.html index ce4b489e8..295a1db26 100644 --- a/templates/web/bromley/admin/category-checkboxes.html +++ b/templates/web/bromley/admin/category-checkboxes.html @@ -1,7 +1,7 @@ <p> <strong>[% loc('Categories:') %]</strong> </p> - <ul> + <ul class="no-bullets no-margin"> <li> [% loc('Select:') %] <a href="#" data-select-all>[% loc('all') %]</a> / @@ -9,7 +9,7 @@ </li> [% FOR contact IN c.cobrand.add_admin_subcategories # Bromley-specific function %] <li> - <label title="[% contact.email | html %]"> + <label class="inline" title="[% contact.email | html %]"> <input type="checkbox" name="contacts[[% contact.id %]]" [% 'checked' IF contact.active %]/> [% contact.category %] </label> |