forked from extern/egroupware
14 lines
147 B
CSS
14 lines
147 B
CSS
/*
|
|
Printing
|
|
*/
|
|
@media screen {
|
|
.onlyPrint {
|
|
display: none !important;
|
|
}
|
|
}
|
|
@media print {
|
|
.noPrint {
|
|
display: none !important;
|
|
}
|
|
}
|