aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/views/default/blog/css.php
blob: 23512c5880ba0e3b56b86d0fac5ade4623c5d403 (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
50
<?php
/**
 * Blog CSS
 *
 * @package Blog
 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
 * @author Curverider Ltd
 * @copyright Curverider Ltd 2008-2010
 * @link http://elgg.org/
*/
?>
.blogpost {
	border-bottom:1px dotted #CCCCCC;
}
.blogpost .entity_listing_icon {
	margin-top:6px;
}
.blogpost .entity_listing_info {
	margin-top:4px;
}
.blog_post {
	border-top:1px solid #CCCCCC;
	margin:10px 0 0;
	padding-bottom:40px;
	padding-top:10px;
}
.blog_post p {
	line-height: 1.4em;
	padding-bottom:12px;
}
.blog_archives {
	list-style: none;
	margin-bottom:0;
	padding-left:0;
}

/* blogs list view */
.entity_listing.blog .entity_metadata {
	min-width:400px;
	text-align: right;
}

/* blogs edit/create form */
form#blog_post_edit .submit_button {
	margin-right:15px;
}
/* force tinymce input height for a more useful editing / blog creation area */
form#blog_post_edit #description_parent #description_ifr {
	height:400px !important;
}