Skip to content
Snippets Groups Projects
Commit 2bfed8b7 authored by felmer's avatar felmer
Browse files

LMS-1309 bug fixed

SVN: 14250
parent 22010688
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ final class HTMLDirectoryRenderer implements IDirectoryRenderer ...@@ -54,7 +54,7 @@ final class HTMLDirectoryRenderer implements IDirectoryRenderer
+ "table { border-collapse: collapse; padding: 1em; }" + "table { border-collapse: collapse; padding: 1em; }"
+ "tr, td { font-family: verdana, tahoma, helvetica; font-size: 11px; }" + "tr, td { font-family: verdana, tahoma, helvetica; font-size: 11px; }"
+ ".td_file { font-family: verdana, tahoma, helvetica; font-size: 11px; height: 1.5em }" + ".td_file { font-family: verdana, tahoma, helvetica; font-size: 11px; height: 1.5em }"
+ ".wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0em auto -4em; }" + ".wrapper { min-height: 100%; height: auto; margin: 0em auto -4em; }"
+ ".footer { height: 4em; text-align: center; }" + "</style>"; + ".footer { height: 4em; text-align: center; }" + "</style>";
private static final Template ROW_TEMPLATE = private static final Template ROW_TEMPLATE =
...@@ -77,7 +77,7 @@ final class HTMLDirectoryRenderer implements IDirectoryRenderer ...@@ -77,7 +77,7 @@ final class HTMLDirectoryRenderer implements IDirectoryRenderer
new Template("<tr><td class='td_hd'>Sample:</td><td>${sample}</td></tr>"); new Template("<tr><td class='td_hd'>Sample:</td><td>${sample}</td></tr>");
private static final Template FOOTER_TEMPLATE = private static final Template FOOTER_TEMPLATE =
new Template("</table> </div> <div class='footer'>${footer} </div> </body></html>"); new Template("</table> <div class='footer'>${footer} </div> </div> </body></html>");
private PrintWriter writer; private PrintWriter writer;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment