Welcome to mirror list, hosted at ThFree Co, Russian Federation.

print.scss « css - github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a473ec654c76fe29fa99b816a10f79e3a162a2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@media print {
	#header,
	.app-navigation,
	#note-container .action-buttons {
		display: none !important;
	}

	.content {
		display: block;
		padding: 0;
		color: #000;
	}

	#note-container .note-editor,
	#note-container .note-preview {
		padding: 0 !important;
		font-size: 10pt !important;
	}

	.app-content {
		margin-left: 0 !important;
	}
}