aboutsummaryrefslogtreecommitdiff
path: root/modules/Internals
diff options
context:
space:
mode:
authorAndrey Ponomarenko <aponomarenko@rosalab.ru>2015-09-04 12:30:41 +0300
committerAndrey Ponomarenko <aponomarenko@rosalab.ru>2015-09-04 12:30:41 +0300
commit41834e391a0873942fefa59729c95520a171a0e9 (patch)
tree07c27b9feaf43fc9b6ac6fe0c92c910a5b09560f /modules/Internals
parent5e80d97d6b01ae2e8a62624f27178aa7f6e8d2f5 (diff)
downloadabi-compliance-checker-41834e391a0873942fefa59729c95520a171a0e9.tar.gz
Improved style of the report.
Diffstat (limited to 'modules/Internals')
-rw-r--r--modules/Internals/Styles/Tabs.css12
-rw-r--r--modules/Internals/SysCheck.pm4
2 files changed, 7 insertions, 9 deletions
diff --git a/modules/Internals/Styles/Tabs.css b/modules/Internals/Styles/Tabs.css
index 7875919..1a90231 100644
--- a/modules/Internals/Styles/Tabs.css
+++ b/modules/Internals/Styles/Tabs.css
@@ -2,7 +2,7 @@
float:left;
}
a.tab {
- border:1px solid #AAA;
+ border:1px solid Black;
float:left;
margin:0px 5px -1px 0px;
padding:3px 5px 3px 5px;
@@ -27,12 +27,8 @@ a.active {
background-color:White;
}
div.tab {
- border:1px solid #AAA;
- padding:0 7px 0 12px;
- width:97%;
+ border-top:1px solid Black;
+ padding:0px;
+ width:100%;
clear:both;
}
-div.double_report {
- width:97%;
- padding:7px 0 0 12px;
-}
diff --git a/modules/Internals/SysCheck.pm b/modules/Internals/SysCheck.pm
index 9b5c131..930510b 100644
--- a/modules/Internals/SysCheck.pm
+++ b/modules/Internals/SysCheck.pm
@@ -987,7 +987,9 @@ sub cmpSystems($$$)
my $Styles = readModule("Styles", "CmpSystems.css");
$SYS_REPORT = composeHTML_Head($Title, $Keywords, $Description, $Styles, "")."\n<body>\n<div>".$SYS_REPORT."</div>\n";
- $SYS_REPORT .= "<br/><br/><br/><hr/>\n".getReportFooter("Single")."<div style='height:999px;'></div>\n</body></html>";
+ $SYS_REPORT .= "<br/><br/><br/>\n";
+ $SYS_REPORT .= getReportFooter();
+ $SYS_REPORT .= "</body></html>\n";
if($SourceOnly) {
$SYS_REPORT = "<!-\- kind:source;".join(";", @{$META_DATA{"Source"}})." -\->\n".$SYS_REPORT;