diff options
| author | rr- | 2016-12-22 23:37:30 +0100 |
|---|---|---|
| committer | rr- | 2016-12-22 23:45:14 +0100 |
| commit | cf24d63fa498722010aff4b883ace873c28022bb (patch) | |
| tree | 455daa0a57df09041f6aa6de40d3b74897496412 /client/html/user_delete.tpl | |
| parent | 40fa118cca0be8592b0cdc59b2639a8a78338fae (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.tpl | 21 |
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'/> |