mirror of
https://github.com/zadam/trilium.git
synced 2025-12-14 19:34:24 +01:00
30 lines
549 B
CSS
30 lines
549 B
CSS
@media print
|
|
{
|
|
html body {
|
|
/* https://github.com/zadam/trilium/issues/3202 */
|
|
color: black;
|
|
}
|
|
|
|
.no-print, .no-print *
|
|
{
|
|
display: none !important;
|
|
}
|
|
|
|
.relation-map-wrapper {
|
|
height: 100vh !important;
|
|
}
|
|
|
|
.table thead th,
|
|
.table td, .table th {
|
|
/* Fix center vertical alignment of table cells */
|
|
vertical-align: middle;
|
|
}
|
|
|
|
pre {
|
|
box-shadow: unset !important;
|
|
border: .75pt solid gray !important;
|
|
border-radius: 2pt !important;
|
|
}
|
|
|
|
}
|