aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-23 11:25:02 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-23 11:25:02 +0000
commit24a0a62b2f0778ce6c1706834c1c88aaabc6c93c (patch)
tree1b641acda644b64d5a120d32cb67be0bd97c745f
parentc001c7fe854f5a4f76576313935eb56ee7f36cac (diff)
downloadelgg-24a0a62b2f0778ce6c1706834c1c88aaabc6c93c.tar.gz
elgg-24a0a62b2f0778ce6c1706834c1c88aaabc6c93c.tar.bz2
Refs #3165 floating admin widgets in same direction as profile widgets
git-svn-id: http://code.elgg.org/elgg/trunk@8825 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r--engine/lib/admin.php4
-rw-r--r--views/default/css/admin.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/engine/lib/admin.php b/engine/lib/admin.php
index 876af307b..337439315 100644
--- a/engine/lib/admin.php
+++ b/engine/lib/admin.php
@@ -475,8 +475,8 @@ function elgg_add_admin_widgets($event, $type, $user) {
// In the form column => array of handlers in order, top to bottom
$adminWidgets = array(
- 1 => array('online_users', 'new_users', 'content_stats'),
- 2 => array('admin_welcome'),
+ 1 => array('admin_welcome'),
+ 2 => array('online_users', 'new_users', 'content_stats'),
);
foreach ($adminWidgets as $column => $handlers) {
diff --git a/views/default/css/admin.php b/views/default/css/admin.php
index 2a7db756f..07403e893 100644
--- a/views/default/css/admin.php
+++ b/views/default/css/admin.php
@@ -543,7 +543,7 @@ input[type="submit"]:hover, .elgg-button-submit:hover, .elgg-button-action:hover
WIDGETS
*************************************** */
.elgg-widgets {
- float: left;
+ float: right;
min-height: 30px;
}
.elgg-widget-add-control {