Fixes for printing and page rendering improvements

This commit is contained in:
Deon George 2018-08-07 22:53:35 +10:00
parent 0bd32aab4a
commit f1787aaa32
No known key found for this signature in database
GPG Key ID: 7670E8DC27415254
2 changed files with 27 additions and 3 deletions

View File

@ -6,7 +6,7 @@
@show
<body class="fixed hold-transition skin-blue sidebar-mini">
<div id="app" v-cloak>
<div id="app">
<div class="wrapper">
@include('adminlte::layouts.partials.mainheader')

View File

@ -15,8 +15,32 @@
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
body { color: #333; }
<style type="text/css">
@media screen, print {
body {
color: #333;
font-weight: 400;
font-size: 16px;
}
label {
font-weight: bold;
}
}
@media print {
body {
font-size: 12px;
}
tr { page-break-inside:avoid; }
thead { display:table-header-group; }
tfoot { display:table-footer-group; }
.table-responsive {
overflow: visible !important;
}
}
</style>
<script>