diff options
| author | Chad Kieffer <chad@2tbsp.com> | 2009-03-18 06:15:37 +0000 |
|---|---|---|
| committer | Chad Kieffer <chad@2tbsp.com> | 2009-03-18 06:15:37 +0000 |
| commit | 591403d79453204b537f51b4d213dfef0c9cc270 (patch) | |
| tree | 1fa07f1ed13b3df6aaa33aad63b2aebbc92530bf /core | |
| parent | a20241f9eab92930827339187d4de66c73e0bffb (diff) | |
Added rotate cc and ccw icons to themeroller theme and css to default theme, applied to quick pane rotate buttons. Hope that jQuery UI includes rotate icons eventrually so we don't have to maintain this.
Diffstat (limited to 'core')
| -rw-r--r-- | core/views/quick_pane.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/views/quick_pane.html.php b/core/views/quick_pane.html.php index b4a9dbf0..45d14251 100644 --- a/core/views/quick_pane.html.php +++ b/core/views/quick_pane.html.php @@ -16,14 +16,14 @@ <? if ($item->is_photo() && graphics::can("rotate")): ?> <a class="gButtonLink ui-corner-all ui-state-default" href="<?= url::site("quick/rotate/$item->id/ccw?csrf=" . access::csrf_token()) ?>" title="<?= t("Rotate 90 degrees counter clockwise") ?>"> - <span class="ui-icon ui-icon-arrowthick-1-w"> + <span class="ui-icon ui-icon-rotate-ccw"> <?= t("Rotate 90 degrees counter clockwise") ?> </span> </a> <a class="gButtonLink ui-corner-all ui-state-default" href="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>" title="<?= t("Rotate 90 degrees clockwise") ?>"> - <span class="ui-icon ui-icon-arrowthick-1-e"> + <span class="ui-icon ui-icon-rotate-cw"> <?= t("Rotate 90 degrees clockwise") ?> </span> </a> |
