diff options
author | shadlaws <shad@shadlaws.com> | 2013-03-02 23:00:02 +0100 |
---|---|---|
committer | shadlaws <shad@shadlaws.com> | 2013-03-02 23:00:02 +0100 |
commit | 73139982c7be10789c27360913b4bc4cbd5cd38e (patch) | |
tree | 806a1f95936c0952cfa1740eae2eccc534c5d46e /modules | |
parent | 0d05e91cd3c5050c25133c864f8b789f499d8e17 (diff) |
#2032 - Fix short form submit/cancel button formatting.
- fixed the height of the submit buttons to match the input box
- changed the cancel links into cancel buttons
- added the hover effect to the buttons when used in in_place_edit (e.g. admin/tags)
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gallery/views/in_place_edit.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/views/in_place_edit.html.php b/modules/gallery/views/in_place_edit.html.php index 2d6cbe90..c2515a03 100644 --- a/modules/gallery/views/in_place_edit.html.php +++ b/modules/gallery/views/in_place_edit.html.php @@ -8,7 +8,7 @@ <li> <?= form::submit(array("class" => "submit ui-state-default"), t("Save")) ?> </li> - <li><a href="#" class="g-cancel"><?= t("Cancel") ?></a></li> + <li><button class="g-cancel ui-state-default ui-corner-all"><?= t("Cancel") ?></button></li> <? if (!empty($errors["input"])): ?> <li> <p id="g-in-place-edit-message" class="g-error"><?= $errors["input"] ?></p> |