aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/views/default/reportedcontent/css.php
blob: 3dcdbc36b85392ceb90207e45cd331f76ca974f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
 * Elgg reported content CSS
 * 
 * @package reportedcontent
 */

?>
/* link in footer */
#report_this {
	text-align: left;
	float:left;
}
#report_this a {
	font-size: 90%;
	padding:0 0 4px 20px;
	background: url(<?php echo elgg_get_site_url(); ?>mod/reportedcontent/graphics/icon_reportthis.gif) no-repeat left top;
}
/* admin area */
.admin_settings.reported_content {
	margin:5px 0 0 0;
	padding:5px 7px 3px 9px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.admin_settings.reported_content p {
	margin:0;
}
.active_report {
	border:1px solid #D3322A;
	background:#F7DAD8;
}
.archived_report {
	border:1px solid #666666;
	background:#dedede;
}
.admin_settings.reported_content .controls {
	float:right;
	margin:14px 5px 0 0;
}
.admin_settings.reported_content a.action_button {
	display:inline;
	float:right;
	margin-left:15px;
}
.admin_settings.reported_content .details_link {
	cursor: pointer;
}