Changeset 150 for trunk/phpbms/common
- Timestamp:
- 10/22/06 13:38:49 (6 years ago)
- Location:
- trunk/phpbms/common
- Files:
-
- 1 added
- 2 modified
-
javascript/menu.js (modified) (2 diffs)
-
stylesheet/mozilla/pages/tablecolumns.css (modified) (1 diff)
-
stylesheet/mozilla/pages/users.css (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/common/javascript/menu.js
r145 r150 44 44 var i,tempDiv; 45 45 var showid=theitem.id.substring(4); 46 var doswitch=false 46 var doswitch=false; 47 47 for(i=0;i<subMenuArray.length;i++){ 48 48 tempdiv=getObjectFromID("submenu"+subMenuArray[i]); 49 if(tempdiv.style.display !="none" && subMenuArray[i]!=showid)49 if(tempdiv.style.display=="block" && subMenuArray[i]!=showid) 50 50 doswitch=true; 51 51 } … … 76 76 var theleft=getLeft(theitem); 77 77 specificdiv.style.top=(thetop+theitem.offsetHeight)+"px"; 78 specificdiv.style.left= theleft+"px";78 specificdiv.style.left=(theleft-6)+"px"; 79 79 specificdiv.style.display="block"; 80 80 hideSelectBoxes() -
trunk/phpbms/common/stylesheet/mozilla/pages/tablecolumns.css
r148 r150 2 2 /* $LastChangedDate$ */ 3 3 4 .noselects{cursor:auto} 4 5 6 #column,#sortorder,#footerquery{width:98%}