aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/default/admin/footer.php6
-rw-r--r--views/default/css/admin.php24
2 files changed, 28 insertions, 2 deletions
diff --git a/views/default/admin/footer.php b/views/default/admin/footer.php
index 72f00fc55..ce420e99a 100644
--- a/views/default/admin/footer.php
+++ b/views/default/admin/footer.php
@@ -3,5 +3,7 @@
* Elgg admin footer. Extend this view to add content to the admin footer
*/
-echo elgg_view_menu('admin_footer');
-echo 'test'; \ No newline at end of file
+$options = array(
+ 'class' => 'elgg-menu-hz'
+);
+echo elgg_view_menu('admin_footer', $options); \ No newline at end of file
diff --git a/views/default/css/admin.php b/views/default/css/admin.php
index 8639af5ea..0da86967b 100644
--- a/views/default/css/admin.php
+++ b/views/default/css/admin.php
@@ -1352,3 +1352,27 @@ p.elgg-state-error {
<?php //What to do with states that don't have default styles? ?>
.elgg-state-selected {}
.elgg-state-disabled {}
+
+/* ***************************************
+ Footer and horizontal menus
+*************************************** */
+
+/* Horizontal menus w/ separator support */
+.elgg-menu-hz > li,
+.elgg-menu-hz > li:after,
+.elgg-menu-hz > li > a {
+ display:inline-block;
+ vertical-align:middle;
+}
+
+/* Allow inline image blocks in horizontal menus */
+.elgg-menu-hz .elgg-body:after {
+ content: '.';
+}
+.elgg-menu-admin-footer a {
+ color: #eeeeee;
+}
+
+.elgg-menu-admin-footer > li {
+ padding-right: 25px;
+} \ No newline at end of file