From 2ef37109d866708def220d082c0430f77efd6410 Mon Sep 17 00:00:00 2001 From: cash Date: Wed, 26 Jan 2011 02:03:29 +0000 Subject: adding margin to admin buttons git-svn-id: http://code.elgg.org/elgg/trunk@7931 36083f99-b078-4883-b0ff-0f9b5a30f544 --- .../views/default/object/reported_content.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'mod/reportedcontent/views/default/object/reported_content.php') diff --git a/mod/reportedcontent/views/default/object/reported_content.php b/mod/reportedcontent/views/default/object/reported_content.php index 0ac4457da..0ab157d62 100644 --- a/mod/reportedcontent/views/default/object/reported_content.php +++ b/mod/reportedcontent/views/default/object/reported_content.php @@ -13,14 +13,14 @@ $delete_url = elgg_get_site_url() . "action/reportedcontent/delete?guid=$report- //find out if the report is current or archive if ($report->state == 'archived') { - $reportedcontent_background = "archived_report"; + $reportedcontent_background = "reported-content-archived"; } else { - $reportedcontent_background = "active_report"; + $reportedcontent_background = "reported-content-active"; } ?> -
+
state != 'archived') { @@ -36,7 +36,7 @@ if ($report->state == 'archived') { 'href' => $delete_url, 'text' => elgg_echo('reportedcontent:delete'), 'is_action' => true, - 'class' => 'elgg-action-button disabled', + 'class' => 'elgg-action-button', ); echo elgg_view('output/url', $params); ?> @@ -57,12 +57,12 @@ if ($report->state == 'archived') { '#', 'text' => elgg_echo('reportedcontent:moreinfo'), - 'class' => 'details_link', - 'onclick' => "elgg_slide_toggle(this, '.reported_content', '.reported_content_more{$report->getGUID()}'); return false;" + 'class' => "elgg-toggle", + 'internalid' => "elgg-toggler-report-$report->guid", )); ?>

-