diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-11 15:22:18 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-11 15:22:18 +0000 |
commit | f157509b3cd60f227c9f5aca0b3d4c9cdd13dfe3 (patch) | |
tree | 2452f8a6ee772cb21d1fb3faf2c49a1afd7223c9 /views | |
parent | e1cf670acfd8d786aec086d1bd5bb2ff96cd5870 (diff) | |
download | elgg-f157509b3cd60f227c9f5aca0b3d4c9cdd13dfe3.tar.gz elgg-f157509b3cd60f227c9f5aca0b3d4c9cdd13dfe3.tar.bz2 |
Updated friends/members listings when there is a latest wire post to display.
git-svn-id: http://code.elgg.org/elgg/trunk@5364 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r-- | views/default/admin/statistics_opt/online.php | 2 | ||||
-rw-r--r-- | views/default/css.php | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/views/default/admin/statistics_opt/online.php b/views/default/admin/statistics_opt/online.php index b30e8a396..6485a3bac 100644 --- a/views/default/admin/statistics_opt/online.php +++ b/views/default/admin/statistics_opt/online.php @@ -15,7 +15,7 @@ if( (is_plugin_enabled('search')) && (is_plugin_enabled('profile')) ) { get_context('admin'); ?> - <div class="admin_settings users_online"> + <div class="admin_settings members_list users_online"> <h3><?php echo elgg_echo('admin:statistics:label:onlineusers'); ?></h3> <?php echo $users_online; ?> </div> diff --git a/views/default/css.php b/views/default/css.php index 91d93acf5..d81ea3c89 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -991,7 +991,10 @@ select.styled .select_option { padding-top:2px; width:26px; } - +/* override hover for lists of site users/members */ +.members_list .entity_listing:hover { + background-color:white; +} /* *************************************** USER SETTINGS & ADMIN AREA @@ -1002,10 +1005,12 @@ select.styled .select_option { .admin_settings { margin-bottom:20px; } +/* .user_settings p, .admin_settings p { margin-bottom:6px; } +*/ .user_settings h3, .admin_settings h3 { background:#e4e4e4; |