mirror of
https://github.com/Hutchy68/pivot.git
synced 2024-11-10 20:57:17 +01:00
29 lines
659 B
CSS
29 lines
659 B
CSS
@media print {
|
|
/* stop double border at bottom with print */
|
|
footer.row {
|
|
border: none;
|
|
}
|
|
/*make namespace labels stand out */
|
|
h4.namespace.label {
|
|
padding: 0.25em;
|
|
font-size: 1.4em !important;
|
|
font-weight: normal;
|
|
background-color: #2284a1 !important;
|
|
color: #fff !important;
|
|
}
|
|
/* do not print borders of page */
|
|
#p-cactions {
|
|
border-right: none !important;
|
|
border-left: none !important;
|
|
}
|
|
/* if addThis share is used, make sure to hide mobile content from js */
|
|
#at4m-dock, .at4-show,
|
|
#atstbx {
|
|
display: none !important;
|
|
}
|
|
/* hide Echo if being used */
|
|
#echo-notifications {
|
|
display: none !important;
|
|
}
|
|
|
|
} |