aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/views/default/blog/css.php
blob: 0cd539ca46502c5a9b72214ecb1e719fa5eccbd9 (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
<?php
/**
 * Blog CSS
 *
 * @package Blog
*/
?>
.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;
}