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-viewactivitylog-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-viewactivitylog-html.lsp')
-rw-r--r-- | weblog-viewactivitylog-html.lsp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/weblog-viewactivitylog-html.lsp b/weblog-viewactivitylog-html.lsp index 516b79e..a272544 100644 --- a/weblog-viewactivitylog-html.lsp +++ b/weblog-viewactivitylog-html.lsp @@ -4,9 +4,10 @@ <% local subdata, pagedata = paginate(data.value, page_info.clientdata, 100) %> <H1><%= html.html_escape(data.label) %></H1> +<DL> <% displaypagination(pagedata, page_info) %> <TABLE> - <TR style="background:#eee;font-weight:bold;"> + <TR class="header"> <TD style="padding-right:20px;white-space:nowrap;" class="header">Date</TD> <TD style="white-space:nowrap;" WIDTH="90%" class="header">Message</TD> </TR> @@ -25,3 +26,4 @@ <% if #data.value == 0 then %> <p>No history found</p> <% end %> +</DL> |