diff options
author | Mika Havela <mika.havela@gmail.com> | 2009-10-07 16:42:53 +0200 |
---|---|---|
committer | Mika Havela <mika.havela@gmail.com> | 2009-10-07 16:42:53 +0200 |
commit | 878989065d9e92ab74ad310eca886323178d44f0 (patch) | |
tree | db928a888c6fee3b4bc9d00073e59758cc0f2e0b /weblog-listsources-html.lsp | |
parent | f4ed3e242468632ee5f6884752601223536e4900 (diff) | |
download | acf-weblog-878989065d9e92ab74ad310eca886323178d44f0.tar.bz2 acf-weblog-878989065d9e92ab74ad310eca886323178d44f0.tar.xz |
Graphical fix. Modifying <DL> to fix skin issues.\n Removing hardcoded backgroundcolor from table and using class=header instead to have the skins do the choosing of colors.
Diffstat (limited to 'weblog-listsources-html.lsp')
-rw-r--r-- | weblog-listsources-html.lsp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/weblog-listsources-html.lsp b/weblog-listsources-html.lsp index 53a571f..270e24c 100644 --- a/weblog-listsources-html.lsp +++ b/weblog-listsources-html.lsp @@ -5,7 +5,7 @@ require("viewfunctions") <% displaycommandresults({"deletesource", "editsource", "testsource", "createsource", "importlogs"}, session) %> <h1><%= html.html_escape(data.label) %></h1> - +<DL> <TABLE> <TR style="background:#eee;font-weight:bold;"> <TD style="padding-right:20px;white-space:nowrap;text-align:left;" class="header">Action</TD> @@ -38,15 +38,13 @@ require("viewfunctions") <p>No sources found</p> <% end %> -<DL> + <form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/createsource") %>"> <DT>Create New Source</DT> <input class="hidden" type="hidden" name="redir" value="<%= html.html_escape(page_info.orig_action) %>" > <DD><input class="submit" type="submit" value="Create"></DD> </form> -</DL> -<DL> <form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/importlogs") %>"> <DT>Import Logs</DT> <DD><input class="submit" type="submit" value="Import"></DD> |