diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-06 12:40:18 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-06 12:40:18 +0000 |
commit | 562900f1b36820843a28d7b68f2f0f3e55e04dbf (patch) | |
tree | a46df3b548f900328ce357c536dd30ed02662be4 /views/default/core | |
parent | 0b7ddb28c68a94403847ddaab460e395f09b9677 (diff) | |
download | elgg-562900f1b36820843a28d7b68f2f0f3e55e04dbf.tar.gz elgg-562900f1b36820843a28d7b68f2f0f3e55e04dbf.tar.bz2 |
more css/html improvements - added .elgg-table and a featured module
git-svn-id: http://code.elgg.org/elgg/trunk@8043 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/core')
-rw-r--r-- | views/default/core/settings/statistics/numentities.php | 2 | ||||
-rw-r--r-- | views/default/core/settings/statistics/online.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/views/default/core/settings/statistics/numentities.php b/views/default/core/settings/statistics/numentities.php index fa393f14a..388af0af6 100644 --- a/views/default/core/settings/statistics/numentities.php +++ b/views/default/core/settings/statistics/numentities.php @@ -16,7 +16,7 @@ if ($entity_stats) { <h3><?php echo elgg_echo('usersettings:statistics:label:numentities'); ?></h3> </div> <div class="elgg-body"> - <table class="styled"> + <table class="elgg-table-alt"> <?php foreach ($entity_stats as $k => $entry) { foreach ($entry as $a => $b) { diff --git a/views/default/core/settings/statistics/online.php b/views/default/core/settings/statistics/online.php index 76acec183..df477d871 100644 --- a/views/default/core/settings/statistics/online.php +++ b/views/default/core/settings/statistics/online.php @@ -21,7 +21,7 @@ if ($log) { <h3><?php echo elgg_echo('usersettings:statistics:yourdetails'); ?></h3> </div> <div class="elgg-body"> - <table class="styled"> + <table class="elgg-table-alt"> <tr class="odd"><td class="column-one"><?php echo elgg_echo('usersettings:statistics:label:name'); ?></td><td><?php echo $user->name; ?></td></tr> <tr class="even"><td class="column-one"><?php echo elgg_echo('usersettings:statistics:label:email'); ?></td><td><?php echo $user->email; ?></td></tr> <tr class="odd"><td class="column-one"><?php echo elgg_echo('usersettings:statistics:label:membersince'); ?></td><td><?php echo date("r",$user->time_created); ?></td></tr> |