diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-06-23 19:56:52 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-06-27 13:04:03 +0200 |
commit | d1fe28ff7e206b02b42995dc92600af90b7195ae (patch) | |
tree | f2c1a1ef36542303afbc8a95eabac30442228967 /web/template | |
parent | 5a050552e89e25ad0e5b079ff6f03ba9250f13d8 (diff) |
Make confirmation label of width 'auto'
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/account_delete.php | 2 | ||||
-rw-r--r-- | web/template/pkg_search_results.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/web/template/account_delete.php b/web/template/account_delete.php index faa0137..74f386d 100644 --- a/web/template/account_delete.php +++ b/web/template/account_delete.php @@ -12,7 +12,7 @@ <input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" /> </fieldset> <fieldset> - <p><label><input type="checkbox" name="confirm" value="1" /> + <p><label class="confirmation"><input type="checkbox" name="confirm" value="1" /> <?= __("Confirm deletion") ?></label></p> <p> diff --git a/web/template/pkg_search_results.php b/web/template/pkg_search_results.php index e866282..cce533c 100644 --- a/web/template/pkg_search_results.php +++ b/web/template/pkg_search_results.php @@ -123,7 +123,7 @@ if (!$result): ?> <label for="merge_Into"><?= __("Merge into") ?></label> <input type="text" id="merge_Into" name="merge_Into" /> <?php endif; ?> - <label><input type="checkbox" name="confirm" value="1" /> <?= __("Confirm") ?></label> + <label class="confirmation"><input type="checkbox" name="confirm" value="1" /> <?= __("Confirm") ?></label> <input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" /> <input type="submit" class="button" style="width: 80px" value="<?= __("Go") ?>" /> </p> |