[Weberp-svn] SF.net SVN: weberp:[9541] trunk
Brought to you by:
sotandeka,
tim_schofield
From: <tim...@us...> - 2012-08-21 13:28:21
|
Revision: 9541 http://weberp.svn.sourceforge.net/weberp/?rev=9541&view=rev Author: tim_schofield Date: 2012-08-21 13:28:11 +0000 (Tue, 21 Aug 2012) Log Message: ----------- Make image a class rather than an inline style and give it a new pointer Modified Paths: -------------- trunk/DailyBankTransactions.php trunk/css/silverwolf/sub.css Modified: trunk/DailyBankTransactions.php =================================================================== --- trunk/DailyBankTransactions.php 2012-08-21 13:09:34 UTC (rev 9540) +++ trunk/DailyBankTransactions.php 2012-08-21 13:28:11 UTC (rev 9541) @@ -97,7 +97,7 @@ <th colspan="9" class="header"> <img src="'.$rootpath.'/css/'.$theme.'/images/bank.png" title="' . _('Bank Transactions') . '" alt="" />' . _('Account Transactions For').' '.$BankDetailRow['bankaccountname'].' '._('Between').' '.$_POST['FromTransDate'] . ' ' . _('and') . ' ' . $_POST['ToTransDate'] . ' - <img onClick="PrintTable(this)" style="float: right;" src="'.$rootpath.'/css/'.$theme.'/images/printer.png" title="' . _('Print this table') . '" alt="" /> + <img onClick="PrintTable(this)" class="PrinterIcon" src="'.$rootpath.'/css/'.$theme.'/images/printer.png" title="' . _('Print this table') . '" alt="" /> </th> </tr>'; echo '<tr> Modified: trunk/css/silverwolf/sub.css =================================================================== --- trunk/css/silverwolf/sub.css 2012-08-21 13:09:34 UTC (rev 9540) +++ trunk/css/silverwolf/sub.css 2012-08-21 13:28:11 UTC (rev 9541) @@ -673,6 +673,11 @@ width: 14px; } +img.PrinterIcon { + float: right; + cursor: pointer; +} + * {padding:0; margin:0} #wrapper {width:750px; padding:25px; margin:0 auto} #leftcolumn {float:left; width:25px; padding:10px;} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |