From fb5ed0635f64ebf85e245219817b9fa5685ca5e2 Mon Sep 17 00:00:00 2001 From: pete Date: Mon, 2 Mar 2009 11:26:35 +0000 Subject: discussion list updated for long usernames, and clearing issues fixed for pc git-svn-id: https://code.elgg.org/elgg/trunk@3018 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/groups/views/default/groups/css.php | 15 ++++++++------- mod/groups/views/default/object/groupforumtopic.php | 8 ++++---- 2 files changed, 12 insertions(+), 11 deletions(-) (limited to 'mod/groups') diff --git a/mod/groups/views/default/groups/css.php b/mod/groups/views/default/groups/css.php index dd81bc8ec..08ffba5b5 100644 --- a/mod/groups/views/default/groups/css.php +++ b/mod/groups/views/default/groups/css.php @@ -262,21 +262,23 @@ a.add_topic_button:hover { /* latest discussion listing */ -p.latest_discussion_info { +.latest_discussion_info { float:right; - width:280px; + width:300px; text-align: right; + margin-left: 10px; } .groups .search_listing br { height:0; line-height:0; } - span.timestamp { color:#666666; font-size: 90%; } - +.latest_discussion_info .timestamp { + font-size: 0.85em; +} /* new groups page */ .groups .search_listing { border:2px solid #cccccc; @@ -369,16 +371,15 @@ span.timestamp { height:14px; margin:0; background: url("_graphics/icon_customise_remove.png") no-repeat 0 0; - text-indent: 9000em; } .delete_discussion a:hover { background-position: 0 -16px; text-decoration: none; } /* IE6 */ -* html .delete_discussion a { text-indent: none; font-size: 1px; } +* html .delete_discussion a { font-size: 1px; } /* IE7 */ -*:first-child+html .delete_discussion a { text-indent: none; font-size: 1px; } +*:first-child+html .delete_discussion a { font-size: 1px; } /* delete group button */ #delete_group_option input[type="submit"] { diff --git a/mod/groups/views/default/object/groupforumtopic.php b/mod/groups/views/default/object/groupforumtopic.php index 534602f2d..021d139ca 100644 --- a/mod/groups/views/default/object/groupforumtopic.php +++ b/mod/groups/views/default/object/groupforumtopic.php @@ -48,7 +48,7 @@ }else{ - $info = "

" . sprintf(elgg_echo('group:created'), $forum_created, $counter) . ""; + $info = "" . sprintf(elgg_echo('group:created'), $forum_created, $counter) . ""; if ($last_time) $info.= "
" . elgg_echo('groups:updated') . " " . friendly_time($last_time) . " by getURL() . "\">" . $u->name . ""; if (groups_can_edit_discussion($vars['entity'], page_owner_entity()->owner_guid)) { @@ -56,18 +56,18 @@ // display the delete link to those allowed to delete $info .= "
" . elgg_view("output/confirmlink", array( 'href' => $vars['url'] . "action/groups/deletetopic?topic=" . $vars['entity']->guid . "&group=" . $vars['entity']->container_guid, - 'text' => elgg_echo('delete'), + 'text' => " ", 'confirm' => elgg_echo('deleteconfirm'), )) . ""; } - $info .= "

"; + $info .= ""; //get the user avatar $icon = elgg_view("profile/icon",array('entity' => $topic_owner, 'size' => 'small')); $info .= "

" . elgg_echo('groups:started') . " " . $topic_owner->name . ": guid}&group_guid={$group->guid}\">{$title}

"; - + $info .= "
"; } -- cgit v1.2.3