diff --git a/py-scripts/artifacts/report.css b/py-scripts/artifacts/report.css index 420a5265..5c3c9280 100644 --- a/py-scripts/artifacts/report.css +++ b/py-scripts/artifacts/report.css @@ -84,6 +84,12 @@ th { li { line-height: 1.5; } +.contentDiv2 { + min-width: 800px; + max-width: 8in; + margin: 1em; + padding: 0; +} .contentDiv { min-width: 800px; max-width: 8in; diff --git a/py-scripts/lf_report.py b/py-scripts/lf_report.py index 2215f033..962ac176 100755 --- a/py-scripts/lf_report.py +++ b/py-scripts/lf_report.py @@ -336,6 +336,9 @@ class lf_report(): """.format(title=self.table_title) self.html += self.table_title_html + def start_content_div2(self): + self.html += "\n
\n" + def start_content_div(self): self.html += "\n
\n" diff --git a/py-scripts/tools/lf_check.py b/py-scripts/tools/lf_check.py index 442c132f..40ea090c 100755 --- a/py-scripts/tools/lf_check.py +++ b/py-scripts/tools/lf_check.py @@ -1141,7 +1141,7 @@ Example : # generate output reports report.set_title("LF Check: lf_check.py") report.build_banner() - report.start_content_div() + report.start_content_div2() report.set_table_title("LF Check Test Results") report.build_table_title() report.set_text("lanforge-scripts git sha: {}".format(git_sha))