From 1e0a90d6488275b50dce0696c7761b0979a8bc69 Mon Sep 17 00:00:00 2001 From: pete Date: Sat, 16 Aug 2008 12:24:54 +0000 Subject: reported content updates git-svn-id: https://code.elgg.org/elgg/trunk@1967 36083f99-b078-4883-b0ff-0f9b5a30f544 --- .../views/default/reportedcontent/css.php | 67 +++++++++++++++++++--- .../views/default/reportedcontent/listing.php | 8 +-- views/default/css.php | 3 +- 3 files changed, 65 insertions(+), 13 deletions(-) diff --git a/mod/reportedcontent/views/default/reportedcontent/css.php b/mod/reportedcontent/views/default/reportedcontent/css.php index c3cdbe098..c4cdd68cf 100644 --- a/mod/reportedcontent/views/default/reportedcontent/css.php +++ b/mod/reportedcontent/views/default/reportedcontent/css.php @@ -1,10 +1,61 @@ -.reported_content { - background:#efefef; - border:1px solid #ccc; - padding:5px; +/* *************************************** + ADMIN AREA - REPORTED CONTENT +*************************************** */ +.reportedcontent_content { + padding:10px; + margin:0 0 10px 0; +} +.reportedcontent_content p.reportedcontent_detail, +.reportedcontent_content p { + margin:0; +} +.active_report { + border:1px solid #D3322A; + background:#F7DAD8; +} +.archived_report { + border:1px solid #666666; + background:#dedede; +} + +a.archive_report_button { + float:right; + font: 12px/100% Arial, Helvetica, sans-serif; + font-weight: bold; + color: #ffffff; + background:#4690d6; + border: 1px solid #4690d6; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + width: auto; + padding: 4px; + margin:15px 0 0 20px; + cursor: pointer; +} +a.archive_report_button:hover { + background: #0054a7; + text-decoration: none; } -span.reported_detail { - width:200px; - border-left:1px solid #ccc; -} \ No newline at end of file +a.delete_report_button { + float:right; + font: 12px/100% Arial, Helvetica, sans-serif; + font-weight: bold; + color: #ffffff; + background:#999999; + border: 1px solid #999999; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + width: auto; + padding: 4px; + margin:15px 0 0 20px; + cursor: pointer; +} +a.delete_report_button:hover { + background: #333333; + text-decoration:none; +} + +a.manifest_details { + cursor:pointer; +} diff --git a/mod/reportedcontent/views/default/reportedcontent/listing.php b/mod/reportedcontent/views/default/reportedcontent/listing.php index b56a12615..d8388e479 100644 --- a/mod/reportedcontent/views/default/reportedcontent/listing.php +++ b/mod/reportedcontent/views/default/reportedcontent/listing.php @@ -10,17 +10,17 @@ //find out if the report is current or archive if($report->state == 'archived'){ - $reportedcontent_background = "archive"; + $reportedcontent_background = "archived_report"; }else{ - $reportedcontent_background = "active"; + $reportedcontent_background = "active_report"; } echo "
"; + echo "

" . elgg_echo('reportedcontent:archive') . " " . elgg_echo('reportedcontent:delete') . "

"; echo "

" . elgg_echo('reportedcontent:by') . ": " . $user . ", " . friendly_time($report->time_created) . "

"; echo "

" . elgg_echo('reportedcontent:objecttitle') . ": " . $report->title . "

"; - echo "

[" . elgg_echo('reportedcontent:archive') . "] - [" . elgg_echo('reportedcontent:delete') . "]

"; - echo "

" . elgg_echo("more info") . "

"; + echo "

" . elgg_echo("more info") . "

"; echo "
"; echo "

" . elgg_echo('reportedcontent:objecturl') . ": address}\">" . elgg_echo('reportedcontent:visit') . "

"; echo "

" . elgg_echo('reportedcontent:reason') . ": " .$report->description . "

"; diff --git a/views/default/css.php b/views/default/css.php index 227af404d..7f171fa12 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -1194,7 +1194,7 @@ table.search_gallery { /* *************************************** - PLUGIN SETTINGS + ADMIN AREA - PLUGIN SETTINGS *************************************** */ .plugin_details { margin:0 0 10px 0; @@ -1261,6 +1261,7 @@ table.search_gallery { #updateclient_settings h3 { padding:0; margin:0; + border:none; } /* *************************************** -- cgit v1.2.3