aboutsummaryrefslogtreecommitdiff
path: root/client/html/user_delete.tpl
diff options
context:
space:
mode:
authorrr-2016-12-22 23:37:30 +0100
committerrr-2016-12-22 23:45:14 +0100
commitcf24d63fa498722010aff4b883ace873c28022bb (patch)
tree455daa0a57df09041f6aa6de40d3b74897496412 /client/html/user_delete.tpl
parent40fa118cca0be8592b0cdc59b2639a8a78338fae (diff)
client/css: fix lists in comments css inheritance
Markdown lists in comments inherited some unwanted CSS rules. The fix is to make the culprit rules apply to more specific elements.
Diffstat (limited to 'client/html/user_delete.tpl')
-rw-r--r--client/html/user_delete.tpl21
1 files changed, 10 insertions, 11 deletions
diff --git a/client/html/user_delete.tpl b/client/html/user_delete.tpl
index 9704492..6d57630 100644
--- a/client/html/user_delete.tpl
+++ b/client/html/user_delete.tpl
@@ -1,16 +1,15 @@
<div id='user-delete'>
<form>
- <div class='input'>
- <ul>
- <li>
- <%= ctx.makeCheckbox({
- name: 'confirm-deletion',
- text: 'I confirm that I want to delete this account.',
- required: true,
- }) %>
- </li>
- </ul>
- </div>
+ <ul class='input'>
+ <li>
+ <%= ctx.makeCheckbox({
+ name: 'confirm-deletion',
+ text: 'I confirm that I want to delete this account.',
+ required: true,
+ }) %>
+ </li>
+ </ul>
+
<div class='messages'></div>
<div class='buttons'>
<input type='submit' value='Delete account'/>

© 2015 - 2026 Jakob L. Kreuze