diff options
author | Mika Havela <mika.havela@gmail.com> | 2008-05-21 09:03:12 +0000 |
---|---|---|
committer | Mika Havela <mika.havela@gmail.com> | 2008-05-21 09:03:12 +0000 |
commit | b4f4174a55e903bf9f903e2d089f9cf8ad097d42 (patch) | |
tree | 021aee3fc03f5b188b1a6e38cb12f380860ae54a /shorewall-expert-html.lsp | |
parent | a3965b138f8c37b32cc28889250d55e20124983f (diff) | |
download | acf-shorewall-b4f4174a55e903bf9f903e2d089f9cf8ad097d42.tar.bz2 acf-shorewall-b4f4174a55e903bf9f903e2d089f9cf8ad097d42.tar.xz |
Small graphical changes due to change in ice.css
git-svn-id: svn://svn.alpinelinux.org/acf/shorewall/trunk@1136 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'shorewall-expert-html.lsp')
-rw-r--r-- | shorewall-expert-html.lsp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/shorewall-expert-html.lsp b/shorewall-expert-html.lsp index 1eff27b..645d67c 100644 --- a/shorewall-expert-html.lsp +++ b/shorewall-expert-html.lsp @@ -16,7 +16,6 @@ end ?> <h1>EXPERT CONFIGURATION</h1> <? local myform = form.config ?> -<DL> <TABLE> <TR style="background:#eee;font-weight:bold;"> <TD style="padding-right:20px;white-space:nowrap;text-align:left;" class="header">File</TD> @@ -27,11 +26,10 @@ end ?> <? for i = 1, table.maxn(myform) do ?> <TR> - <TD style="padding-right:20px;white-space:nowrap;border-bottom:1px solid #ccc;"><?= html.link{value = "edit?name=" .. myform[i].value , label=myform[i].value } ?></TD> - <TD style="padding-right:20px;white-space:nowrap;border-bottom:1px solid #ccc;"><?= myform[i].size ?></TD> - <TD style="white-space:nowrap;border-bottom:1px solid #ccc;" width="90%"><?= myform[i].mtime ?></TD> + <TD style="padding-right:20px;white-space:nowrap;"><?= html.link{value = "edit?name=" .. myform[i].value , label=myform[i].value } ?></TD> + <TD style="padding-right:20px;white-space:nowrap;"><?= myform[i].size ?></TD> + <TD style="white-space:nowrap;" width="90%"><?= myform[i].mtime ?></TD> </TR> <? end ?> </TABLE> -</DL> |