|
From: Jon O. <jon...@us...> - 2008-11-01 21:12:06
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/templates/_core In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv32365 Modified Files: mx_menu_overall_navigation.tpl Log Message: A bunch of minor template updates, solving minor bugs and other typhos... Index: mx_menu_overall_navigation.tpl =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_navmenu/templates/_core/mx_menu_overall_navigation.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mx_menu_overall_navigation.tpl 29 Aug 2008 04:27:59 -0000 1.2 --- mx_menu_overall_navigation.tpl 1 Nov 2008 21:12:01 -0000 1.3 *************** *** 1,17 **** ! <table cellpadding="0" cellspacing="0" border="0" align="center"> <tr> ! <!-- BEGIN catrow --> ! <td class="nav" align="center" valign="middle"> ! <div class="cat-button{catrow.CURRENT}" onmouseout="this.className='cat-button{catrow.CURRENT}';" onmouseover="this.className='cat-button-current';">{catrow.U_MENU_ICON}<a href="{catrow.U_CATEGORY_URL}">{catrow.CATEGORY_NAME}</a></div> </td> - <!-- END catrow --> </tr> </table> ! ! <table cellpadding="0" cellspacing="0" border="0" align="center"> <tr> <!-- BEGIN menurow --> ! <td class="nav"align="center" valign="middle"> <div class="nav-button{menurow.CURRENT}" onmouseout="this.className='nav-button{menurow.CURRENT}';" onmouseover="this.className='nav-button-current';">{menurow.U_MENU_ICON}<a href="{menurow.U_MENU_URL}" target="{menurow.U_MENU_URL_TARGET}">{menurow.MENU_NAME}</a></div> </td> --- 1,55 ---- ! <style type="text/css"> ! <!-- ! .nav-cat .nav-button { ! border-width: 1px; ! border-color: {T_TH_COLOR1}; ! border-style: none none solid none; ! position: relative; ! } ! .nav-cat .nav-button-current { ! background-color: {T_TR_COLOR1}; ! border-width: 1px; ! border-color: {T_TH_COLOR1}; ! border-style: solid solid none solid; ! position: relative; ! } ! td.nav-button { ! background-color: {T_TR_COLOR1}; ! } ! td.nav-button-current { ! background-color: {T_TR_COLOR2}; ! } ! * html .nav-cat td { position: relative; } /* ie 5.0 fix */ ! --> ! </style> ! ! <table width="100%" cellpadding="0" cellspacing="1" border="0"> <tr> ! <td class="cat"> ! <table cellpadding="0" cellspacing="0" border="0" class="nav-cat" align="center" valign="top"> ! <tr> ! <!-- BEGIN catrow --> ! <td align="left" valign="top"> ! <div class="nav-button{catrow.CURRENT}"> ! <table cellpadding="5" cellspacing="0" border="0"> ! <tr> ! <td width="100%" height="30" style="border:none; text-align:center;"> ! {catrow.U_MENU_ICON}{catrow.CATEGORY} ! </td> ! </tr> ! </table> ! </div> ! </td> ! <!-- END catrow --> ! </tr> ! </table> </td> </tr> </table> ! <table cellpadding="5" cellspacing="0" border="0" align="center"> <tr> <!-- BEGIN menurow --> ! <td align="center" valign="middle"> <div class="nav-button{menurow.CURRENT}" onmouseout="this.className='nav-button{menurow.CURRENT}';" onmouseover="this.className='nav-button-current';">{menurow.U_MENU_ICON}<a href="{menurow.U_MENU_URL}" target="{menurow.U_MENU_URL_TARGET}">{menurow.MENU_NAME}</a></div> </td> |