|
From: Jon O. <jon...@us...> - 2008-01-30 09:11:35
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7690/modules/mx_navmenu/templates/_core Modified Files: mx_menu_overall_standard.tpl Log Message: BlockCP - updated what features should be adminCP options only Schemas - no point updating the module INSERTS with full spec Sitelog - updated sitemap and pagination mod_rewrite - exceptions when in need of technical full paths...eg for module editing actions Nav menu - intial fixes while simplifying this module with less parameters and more tpl freedom ...more to come ;) Tinymce updates wherever needed - admin has full interface, users less options. mx_users - bugfix for renaming users Index: mx_menu_overall_standard.tpl =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_navmenu/templates/_core/mx_menu_overall_standard.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mx_menu_overall_standard.tpl 9 Sep 2007 16:52:52 -0000 1.1 --- mx_menu_overall_standard.tpl 30 Jan 2008 09:10:59 -0000 1.2 *************** *** 1,64 **** ! <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" align="center"> ! <tr> ! <td class="cat" align="center" valign="top"> ! <table cellpadding="0" cellspacing="0" border="0" class="nav-cat"> <tr> <!-- BEGIN catrow --> ! <td align="left" valign="top"> ! <div class="nav-button{catrow.CURRENT}"> ! <table cellpadding="5" cellspacing="0" border="0"> ! <tr> ! <td align="left" width="100%" height="30" style="border:none;"> ! {catrow.U_MENU_ICON}{catrow.CATEGORY} ! </td> ! </tr> ! </table> ! </div> </td> <!-- END catrow --> </tr> </table> - </td> - </tr> - </table> ! <table width="100%" cellpadding="0" cellspacing="1" border="0" align="center"> ! <tr> ! <td class="row1" align="center" valign="top"> ! <table cellpadding="3" cellspacing="0" border="0" class="nav-menu"> <tr> <!-- BEGIN modulerow --> ! <td style="border:none;" class="" valign="center" onmouseout="this.className='';" onmouseover="this.className='nav-button-current';"> ! {modulerow.U_MENU_ICON}<span class="{modulerow.MENU_STYLE}"><a href="{modulerow.U_MENU_MODULE}" target="{modulerow.U_LINK_TARGET}" class="genmed" title="{modulerow.MENU_DESC}">{modulerow.MENU_NAME}</a></span> </td> <!-- END modulerow --> </tr> ! </table> ! </td> ! </tr> ! </table> --- 1,20 ---- ! <table cellpadding="0" cellspacing="0" border="0" align="center"> <tr> <!-- BEGIN catrow --> ! <td 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.CATEGORY_URL}">{catrow.CATEGORY_NAME}</a></div> </td> <!-- END catrow --> </tr> </table> ! ! <table cellpadding="0" cellspacing="0" border="0" align="center"> <tr> <!-- BEGIN modulerow --> ! <td align="center" valign="middle"> ! <div class="nav-button{modulerow.CURRENT}" onmouseout="this.className='nav-button{modulerow.CURRENT}';" onmouseover="this.className='nav-button-current';">{modulerow.U_MENU_ICON}<a href="{modulerow.U_MENU_MODULE}" target="{modulerow.U_LINK_TARGET}">{modulerow.MENU_NAME}</a></div> </td> <!-- END modulerow --> </tr> ! </table> \ No newline at end of file |