mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 13:33:15 +01:00
14 lines
125 B
CSS
14 lines
125 B
CSS
|
/*
|
||
|
Printing
|
||
|
*/
|
||
|
@media screen {
|
||
|
.onlyPrint {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
@media print {
|
||
|
.noPrint {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|