mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Add some special CSS to improve printing a nextmatch
- Try not to break rows across page
This commit is contained in:
parent
22dfe2a5db
commit
a06e408bbd
@ -987,6 +987,21 @@ div.message.floating {
|
|||||||
background-color: gray;
|
background-color: gray;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
/** Keeps rows from breaking */
|
||||||
|
.et2_nextmatch .egwGridView_grid > tbody > tr {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.egwGridView_grid > tbody > tr {
|
||||||
|
page-break-inside: avoid;
|
||||||
|
-webkit-region-break-inside: avoid;
|
||||||
|
}
|
||||||
|
.et2_nextmatch > div {
|
||||||
|
width: 100% !important;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Grid / nextmatch Hierarchy
|
* Grid / nextmatch Hierarchy
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user