diff options
author | Renato Botelho <renato.botelho@bluepex.com> | 2010-04-09 10:12:08 -0300 |
---|---|---|
committer | Renato Botelho <renato.botelho@bluepex.com> | 2010-04-09 10:12:08 -0300 |
commit | 664742f78d25b4efec55f8011d2c14310dd7d264 (patch) | |
tree | 918e7d191b05c3130b6388f4b70838d657e3fda0 | |
parent | ba5d82635284989ba02958586b1196317b001e39 (diff) | |
download | pfsense-664742f78d25b4efec55f8011d2c14310dd7d264.zip pfsense-664742f78d25b4efec55f8011d2c14310dd7d264.tar.gz |
The sum of % for table size should be 100%, fixing it
-rwxr-xr-x | usr/local/www/firewall_rules.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr/local/www/firewall_rules.php b/usr/local/www/firewall_rules.php index 2d67fd5..57869da 100755 --- a/usr/local/www/firewall_rules.php +++ b/usr/local/www/firewall_rules.php @@ -260,14 +260,14 @@ echo "<script type=\"text/javascript\" language=\"javascript\" src=\"/javascript <td width="5%" class="list"> </td> <td width="3%" class="listhdrr">ID</td> <td width="6%" class="listhdrr">Proto</td> - <td width="14%" class="listhdrr">Source</td> - <td width="7%" class="listhdrr">Port</td> - <td width="14%" class="listhdrr">Destination</td> - <td width="7%" class="listhdrr">Port</td> + <td width="12%" class="listhdrr">Source</td> + <td width="6%" class="listhdrr">Port</td> + <td width="12%" class="listhdrr">Destination</td> + <td width="6%" class="listhdrr">Port</td> <td width="5%" class="listhdrr">Gateway</td> - <td width="10%" class="listhdrr">Queue</td> + <td width="8%" class="listhdrr">Queue</td> <td width="5%" class="listhdrr">Schedule</td> - <td width="21%" class="listhdr">Description</td> + <td width="19%" class="listhdr">Description</td> <td width="10%" class="list"> <table border="0" cellspacing="0" cellpadding="1"> <tr> @@ -294,7 +294,7 @@ echo "<script type=\"text/javascript\" language=\"javascript\" src=\"/javascript </tr> <?php if (isset($config['interfaces'][$if]['blockpriv'])): ?> <tr valign="top" id="frrfc1918"> - <td width="3%" class="list"> </td> + <td class="list"> </td> <td class="listt" align="center"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_block.gif" width="11" height="11" border="0"></td> <td class="listlr" style="background-color: #e0e0e0"></td> <td class="listr" style="background-color: #e0e0e0">*</td> @@ -322,7 +322,7 @@ echo "<script type=\"text/javascript\" language=\"javascript\" src=\"/javascript <?php endif; ?> <?php if (isset($config['interfaces'][$if]['blockbogons'])): ?> <tr valign="top" id="frrfc1918"> - <td width="3%" class="list"> </td> + <td class="list"> </td> <td class="listt" align="center"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_block.gif" width="11" height="11" border="0"></td> <td class="listlr" style="background-color: #e0e0e0"></td> <td class="listr" style="background-color: #e0e0e0">*</td> |