Index: application/layouts/account.php =================================================================== --- application/layouts/account.php (revision 1) +++ application/layouts/account.php (working copy) @@ -9,8 +9,7 @@ - - + Index: application/layouts/administration.php =================================================================== --- application/layouts/administration.php (revision 1) +++ application/layouts/administration.php (working copy) @@ -10,8 +10,7 @@ - - + Index: application/layouts/dashboard.php =================================================================== --- application/layouts/dashboard.php (revision 1) +++ application/layouts/dashboard.php (working copy) @@ -9,8 +9,7 @@ - - + Index: application/layouts/project_website.php =================================================================== --- application/layouts/project_website.php (revision 1) +++ application/layouts/project_website.php (working copy) @@ -14,8 +14,7 @@ - - + Index: application/views/application/user_box.php =================================================================== --- application/views/application/user_box.php (revision 1) +++ application/views/application/user_box.php (working copy) @@ -1,64 +1,42 @@ -
- getDisplayName()) ?> (), - - -
-

:

- -

:

- -
- - - -
-

:

- -
- - - -isAdministrator()) { ?> -
-

:

- -
- - -
\ No newline at end of file +
+

getDisplayName()) ?> ()

+ +
Index: public/assets/javascript/dropdown.js =================================================================== --- public/assets/javascript/dropdown.js (revision 0) +++ public/assets/javascript/dropdown.js (revision 0) @@ -0,0 +1,24 @@ +function menuFix() { + var sfEls = document.getElementById("account_more_menu").getElementsByTagName("LI"); + for (var i=0; i0? " ": "") + "sfhover"; + } + // event added to keep menu items from disappearing + sfEls[i].onMouseDown=function() { + this.className+=(this.className.length>0? " ": "") + "sfhover"; + } + // event added to keep menu items from disappearing + sfEls[i].onMouseUp=function() { + this.className+=(this.className.length>0? " ": "") + "sfhover"; + } + sfEls[i].onmouseout=function() { + this.className=this.className.replace(new RegExp("( ?|^)sfhover\\b"), ""); + } + } +} +//onload call +if (document.all) { // Load sfHover only in IE; other browsers don't need it +if (window.attachEvent) window.attachEvent("onload", menuFix); +else window.onload = menuFix; // Mac IE5 needs this +} \ No newline at end of file