소스 검색

Print CSS to fix printing problems

No more sidebar filling half of the printed pages, or unnecessary blank pages.
Mohammed El-Dahash 7 년 전
부모
커밋
561c22d401
1개의 변경된 파일19개의 추가작업 그리고 0개의 파일을 삭제
  1. 19
    0
      static/css/print.css

+ 19
- 0
static/css/print.css 파일 보기

@@ -0,0 +1,19 @@
1
+.sidebar {
2
+  display: none !important;
3
+}
4
+
5
+.content {
6
+  margin: 0 auto;
7
+  width: 100%;
8
+  float: none;
9
+  display: initial;
10
+}
11
+
12
+.container {
13
+  width: 100%;
14
+  float: none;
15
+  display: initial;
16
+  padding-left:  1rem;
17
+  padding-right: 1rem;
18
+  margin: 0 auto;
19
+}