Fixes for printing and page rendering improvements
This commit is contained in:
parent
0bd32aab4a
commit
f1787aaa32
@ -6,7 +6,7 @@
|
|||||||
@show
|
@show
|
||||||
|
|
||||||
<body class="fixed hold-transition skin-blue sidebar-mini">
|
<body class="fixed hold-transition skin-blue sidebar-mini">
|
||||||
<div id="app" v-cloak>
|
<div id="app">
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
@include('adminlte::layouts.partials.mainheader')
|
@include('adminlte::layouts.partials.mainheader')
|
||||||
|
|
||||||
|
@ -15,8 +15,32 @@
|
|||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
|
|
||||||
<style>
|
<style type="text/css">
|
||||||
body { color: #333; }
|
@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>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
Loading…
Reference in New Issue
Block a user