|
From: Markus P. <mar...@us...> - 2005-04-28 22:42:09
|
Update of /cvsroot/mxbb/core/templates/subSilver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4775 Modified Files: overall_header.tpl Log Message: Added onfocus/onblur effects to the search box in overall header. Index: overall_header.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/overall_header.tpl,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** overall_header.tpl 26 Apr 2005 00:08:17 -0000 1.18 --- overall_header.tpl 28 Apr 2005 22:41:50 -0000 1.19 *************** *** 22,26 **** <!-- BEGIN switch_enable_pm_popup --> <script language="javascript" type="text/javascript"><!-- ! if ( {PRIVATE_MESSAGE_NEW_FLAG} ) { window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400'); --- 22,26 ---- <!-- BEGIN switch_enable_pm_popup --> <script language="javascript" type="text/javascript"><!-- ! if( {PRIVATE_MESSAGE_NEW_FLAG} ) { window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400'); *************** *** 169,174 **** <td valign="top" align="right" width="100%" height="5" > <form name="search_block" method="post" action="{U_SEARCH}" onsubmit="return checkSearch()"> ! <a href="{U_SEARCH}"><span class="gen">{L_SEARCH}:</span></a> ! <input class="post" type="text" name="search_keywords" size="15"> <select class="post" name="search_engine"> {L_SEARCH_SITE} --- 169,176 ---- <td valign="top" align="right" width="100%" height="5" > <form name="search_block" method="post" action="{U_SEARCH}" onsubmit="return checkSearch()"> ! <a href="{U_SEARCH}"><span class="gen">{L_SEARCH}</span></a>: ! <input class="post" type="text" name="search_keywords" size="15" value="...?" ! onfocus="if(this.value=='...?'){this.value='';}" ! onblur="if(this.value==''){this.value='...?';}"> <select class="post" name="search_engine"> {L_SEARCH_SITE} |