SF.net SVN: postfixadmin:[775] trunk
Brought to you by:
christian_boltz,
gingerdog
From: <seb...@us...> - 2009-11-22 13:50:05
|
Revision: 775 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=775&view=rev Author: sebastian2009 Date: 2009-11-22 13:49:58 +0000 (Sun, 22 Nov 2009) Log Message: ----------- - fixed minor table error. - default text alignment is now "left" - fixed variable assignment in templates/menu.tpl Modified Paths: -------------- trunk/css/default.css trunk/templates/list-virtual_mailbox.tpl trunk/templates/menu.tpl Modified: trunk/css/default.css =================================================================== --- trunk/css/default.css 2009-11-19 23:33:57 UTC (rev 774) +++ trunk/css/default.css 2009-11-22 13:49:58 UTC (rev 775) @@ -4,7 +4,7 @@ font-family: "BitStream Vera Sans", Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-weight: normal; - text-align: center; + text-align: left; } a { @@ -25,6 +25,7 @@ /* border-spacing: 0; */ /* padding: 0; */ border-collapse: collapse; /* for IE */ + text-align: left; } .button { Modified: trunk/templates/list-virtual_mailbox.tpl =================================================================== --- trunk/templates/list-virtual_mailbox.tpl 2009-11-19 23:33:57 UTC (rev 774) +++ trunk/templates/list-virtual_mailbox.tpl 2009-11-22 13:49:58 UTC (rev 775) @@ -27,7 +27,7 @@ {/if} {$item2}<br/> {/foreach} - <td> + </td> {/if} <td>{$item.name}</td> {if $CONF.quota===YES} @@ -37,10 +37,10 @@ {elseif $item.quota<0} {$PALANG.pOverview_disabled} {else} - {if $boolconf_used_quotas} - {$divide_quota.current[$i]} / {$divide_quota.quota[$i]} + {if $boolconf_used_quotas} + {$divide_quota.current[$i]} / {$divide_quota.quota[$i]} + {/if} {/if} - {/if} </td> {/if} <td>{$item.modified}</td> Modified: trunk/templates/menu.tpl =================================================================== --- trunk/templates/menu.tpl 2009-11-19 23:33:57 UTC (rev 774) +++ trunk/templates/menu.tpl 2009-11-22 13:49:58 UTC (rev 775) @@ -3,7 +3,7 @@ {if $smarty.get.domain} {*** zuweisung muss eleganter gehen ***} {assign var="url_domain" value=$smarty.get.domain} - {assign var="url_domain" value=?domain=$url_domain} + {assign var="url_domain" value="?domain=$url_domain"} {/if} {/strip} <div id="menu"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |