We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f311404 + 3b8faa3 commit 7963102Copy full SHA for 7963102
src/plugins/editor/components/editor.less
@@ -9,3 +9,5 @@
9
}
10
11
@import './read-only-watermark.less';
12
+
13
+@import './print.less';
src/plugins/editor/components/print.less
@@ -0,0 +1,21 @@
1
+/**
2
+ * Styling for printing out of the editor
3
+ */
4
5
+@media print {
6
+ //List of elements that should not be rendered for printing
7
+ .Pane1, .topbar {
8
+ display: none;
+ }
+ .SplitPane {
+ position: relative !important;
+ display: block !important;
14
15
16
+ //The right-hand preview pane should be the full width of the page
17
+ .Pane2 {
18
+ overflow-y: auto;
19
+ width: 100% !important;
20
21
+}
0 commit comments