diff options
| author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-24 14:13:59 +0000 | 
|---|---|---|
| committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-24 14:13:59 +0000 | 
| commit | 926a3c73389fcd8a44fa73f6f86f01621c2a29ca (patch) | |
| tree | 32baec4c17ce67a3a4b2782b5aa0df47d73cdc4d | |
| parent | bbfc6e86deb15812de249f3b1c3b63b984b58e13 (diff) | |
| download | elgg-926a3c73389fcd8a44fa73f6f86f01621c2a29ca.tar.gz elgg-926a3c73389fcd8a44fa73f6f86f01621c2a29ca.tar.bz2 | |
Added missing formatting to user-generated content
git-svn-id: http://code.elgg.org/elgg/trunk@6167 36083f99-b078-4883-b0ff-0f9b5a30f544
| -rw-r--r-- | mod/profile/views/default/profile/css.php | 4 | ||||
| -rw-r--r-- | views/default/css.php | 10 | 
2 files changed, 13 insertions, 1 deletions
| diff --git a/mod/profile/views/default/profile/css.php b/mod/profile/views/default/profile/css.php index 13bae4fed..f864e8002 100644 --- a/mod/profile/views/default/profile/css.php +++ b/mod/profile/views/default/profile/css.php @@ -149,6 +149,10 @@ img.medium {  	margin-top:4px;  	padding-top:2px;  } +#owner_block .owners_content_links ul { +	margin:0; +	padding:0; +}  #owner_block .owners_content_links ul li {  	display:block;  	float:left; diff --git a/views/default/css.php b/views/default/css.php index 060bc7d39..bb7998d59 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -69,7 +69,9 @@ img {  	-moz-outline-style: none;  }  ol, ul { -	list-style:none outside none; +	/* list-style:none outside none; */ +	margin: 0 0 10px 0; +	padding-left: 20px;  }  em, i {  	font-style:italic; @@ -80,6 +82,9 @@ ins {  del {  	text-decoration:line-through;  } +strong { +	font-weight:bold; +}  table {  	border-collapse: collapse;  	border-spacing: 0; @@ -942,6 +947,9 @@ li.navigation_more ul li {  .generic_comment_body {  	margin:3px 0 5px 0;  } +.generic_comment_body p { +	margin-bottom: 10px; +}  /* latest comments in sidebar */  #elgg_sidebar .generic_comment.latest {  	padding:2px 0; | 
