diff options
author | Chad Kieffer <chad@2tbsp.com> | 2009-01-13 06:20:35 +0000 |
---|---|---|
committer | Chad Kieffer <chad@2tbsp.com> | 2009-01-13 06:20:35 +0000 |
commit | 5f17ae4f02c22a42c4de53831c8c23d22c869820 (patch) | |
tree | ea438395e7a3ebcb778c7ce5f739aada8cd6aaf4 /core/views | |
parent | 2fb5a0efb16978fb57eb8cc57ce392c4ba191019 (diff) |
Update quick edit markup, styles, js. One step towards jquery ui theme.
Diffstat (limited to 'core/views')
-rw-r--r-- | core/views/quick_pane.html.php | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/core/views/quick_pane.html.php b/core/views/quick_pane.html.php index 9a0e56d5..75149e18 100644 --- a/core/views/quick_pane.html.php +++ b/core/views/quick_pane.html.php @@ -1,27 +1,24 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <? if ($item->type == "photo"): ?> <? if (graphics::can("rotate")): ?> -<div class="rotate-counter-clockwise" - href="<?= url::site("quick/rotate/$item->id/ccw?csrf=" . access::csrf_token()) ?>"> +<a class="counter-clockwise" href="<?= url::site("quick/rotate/$item->id/ccw?csrf=" . access::csrf_token()) ?>"> <span> <?= t("Rotate CCW") ?> </span> -</div> +</a> <? endif ?> -<div class="edit gDialogLink" - href="<?= url::site("quick/form_edit/$item->id") ?>"> +<a class="edit gDialogLink" href="<?= url::site("quick/form_edit/$item->id") ?>"> <span> <?= t("Edit") ?> </span> -</div> +</a> <? if (graphics::can("rotate")): ?> -<div class="rotate-clockwise" - href="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>"> +<a class="clockwise" href="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>"> <span> <?= t("Rotate CCW") ?> </span> -</div> +</a> <? endif ?> <? endif ?> |