nextcloud-notes/css/print.scss

24 lines
346 B
SCSS
Raw Normal View History

2019-06-16 16:40:20 +02:00
@media print {
#header,
2020-04-30 21:54:15 +02:00
.app-navigation,
2019-06-16 16:40:20 +02:00
#note-container .action-buttons {
display: none !important;
}
2020-04-30 21:54:15 +02:00
.content {
2019-06-16 16:40:20 +02:00
display: block;
padding: 0;
2019-10-29 21:37:50 +01:00
color: #000;
2019-06-16 16:40:20 +02:00
}
#note-container .note-editor,
#note-container .note-preview {
padding: 0 !important;
font-size: 10pt !important;
}
2020-04-30 21:54:15 +02:00
.app-content {
2019-06-16 16:40:20 +02:00
margin-left: 0 !important;
}
}