12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- @media print {
-
- .no-print {
- display: none !important;
- }
-
- .main-sidebar,
- .main-header,
- .content-header {
- @extend .no-print;
- }
-
- .content-wrapper,
- .main-footer {
- @include translate(0, 0);
- margin-left: 0 !important;
- min-height: 0 !important;
- }
- .layout-fixed .content-wrapper {
- padding-top: 0 !important;
- }
-
- .invoice {
- border: 0;
- margin: 0;
- padding: 0;
- width: 100%;
- }
- .invoice-col {
- float: left;
- width: 33.3333333%;
- }
-
- .table-responsive {
- overflow: auto;
- > .table tr th,
- > .table tr td {
- white-space: normal !important;
- }
- }
- }
|