SF.net SVN: postfixadmin:[1743] trunk
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2015-02-28 22:26:21
|
Revision: 1743 http://sourceforge.net/p/postfixadmin/code/1743 Author: christian_boltz Date: 2015-02-28 22:26:14 +0000 (Sat, 28 Feb 2015) Log Message: ----------- list.tpl, default.css: - format unlimited/disabled quota similar to x/y, but no border Modified Paths: -------------- trunk/css/default.css trunk/templates/list.tpl Modified: trunk/css/default.css =================================================================== --- trunk/css/default.css 2015-02-28 21:58:43 UTC (rev 1742) +++ trunk/css/default.css 2015-02-28 22:26:14 UTC (rev 1743) @@ -376,6 +376,7 @@ margin-top:-14px; } .quota_bg { background-color: white; z-index:98; width:120px; height:14px;margin-top:-1px;margin-left:-1px; border: 1px solid #999;} +.quota_no_border { border:none; margin:0; } .quota_high { background: url(../images/quota-colors.png) repeat-x 0 -28px #f90509; } .quota_mid { background: url(../images/quota-colors.png) repeat-x 0 -14px #e3e909; } .quota_low { background: url(../images/quota-colors.png) repeat-x 0 0px #05f905; } Modified: trunk/templates/list.tpl =================================================================== --- trunk/templates/list.tpl 2015-02-28 21:58:43 UTC (rev 1742) +++ trunk/templates/list.tpl 2015-02-28 22:26:14 UTC (rev 1743) @@ -84,7 +84,8 @@ <div class="quota_bg"></div></div> <div class="quota_text quota_text_{$quota_level}">{$linktext}</div> {else} - {$item[$key]} + <div class="quota_bg quota_no_border"></div></div> + <div class="quota_text">{$linktext}</div> {/if} {elseif $field.type == 'txtl'} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |