Fix print stylesheet

Add padding to table cells
Fix padding at top of first page
This commit is contained in:
RunasSudo 2021-02-28 22:08:02 +11:00
parent 89507fb916
commit 68abe072d8
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
2 changed files with 7 additions and 3 deletions

View File

@ -217,7 +217,7 @@
<div id="resultLogs1"></div>
<table id="result"></table>
<table id="result" class="result"></table>
<div id="resultLogs2"></div>

View File

@ -58,7 +58,7 @@ body {
table {
border-collapse: collapse;
}
#result td {
.result td {
padding: 0px 8px;
min-height: 1em;
}
@ -69,7 +69,7 @@ td.count sup {
font-size: 0.6rem;
top: 0;
}
#result tr:first-child td {
.result tr:first-child td {
vertical-align: bottom;
}
td.excluded {
@ -123,6 +123,10 @@ tr.info td {
display: none;
}
#printContainer > div:first-child > p:first-child {
margin-top: 0;
}
@media print {
body.interactive > * {
display: none;