summaryrefslogtreecommitdiff
path: root/modules/tag/views
diff options
context:
space:
mode:
authorChad Kieffer <chad@2tbsp.com>2009-03-16 05:50:05 +0000
committerChad Kieffer <chad@2tbsp.com>2009-03-16 05:50:05 +0000
commitc377ffc2a5cc334981ab81e96ae0bc18a868edf7 (patch)
tree2f2c508bee2fb47d58d28e53df35c01fee4aa594 /modules/tag/views
parent542ab6db1f13541cbda4e3eaafc27f57623d32b3 (diff)
Ticket #97. Applied button css where missing. Minor form css improvements.
Diffstat (limited to 'modules/tag/views')
-rw-r--r--modules/tag/views/admin_tags.html.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/tag/views/admin_tags.html.php b/modules/tag/views/admin_tags.html.php
index 92b0f6b7..d6472706 100644
--- a/modules/tag/views/admin_tags.html.php
+++ b/modules/tag/views/admin_tags.html.php
@@ -2,7 +2,7 @@
<script>
$("document").ready(function() {
$("#gTagAdmin .tag-name").attr("title", "<?= t("Click to edit this tag") ?>");
- $("#gTagAdmin .delete-link").attr("title", "<?= t("Delete this tag") ?>");
+ $("#gTagAdmin .delete-link").attr("title", $(".delete-link:first span").html());
});
</script>
<div class="gBlock">
@@ -40,7 +40,8 @@
<li>
<span id="gTag-<?= $tag->id ?>" class="gEditable tag-name"><?= $tag->name ?></span>
<span class="understate">(<?= $tag->count ?>)</span>
- <a href="<?= url::site("admin/tags/form_delete/$tag->id") ?>" class="gDialogLink delete-link">X</a>
+ <a href="<?= url::site("admin/tags/form_delete/$tag->id") ?>" class="gDialogLink delete-link gButtonLink">
+ <span class="ui-icon ui-icon-trash"><?= t("Delete this tag") ?></span></a>
</li>
<? $column_tag_count++ ?>