##// END OF EJS Templates
fix printing
Min RK -
Show More
@@ -14,7 +14,9 b' body {'
14 14 right: 0px;
15 15 top: 0px;
16 16 bottom: 0px;
17 .vbox();
17 @media not print {
18 .vbox();
19 }
18 20 overflow: visible;
19 21 }
20 22
@@ -82,9 +84,11 b' body {'
82 84 width: 100%;
83 85 display: none;
84 86 .border-box-sizing();
85 flex: 1;
86 87 overflow: auto;
87 height: 0px; // triggers overflow, but overridded by flex
88 @media not print {
89 flex: 1;
90 height: 0px; // triggers overflow, but overridded by flex
91 }
88 92 }
89 93
90 94 /* Smaller buttons */
@@ -8265,22 +8265,26 b' body {'
8265 8265 right: 0px;
8266 8266 top: 0px;
8267 8267 bottom: 0px;
8268 /* Old browsers */
8269 display: -webkit-box;
8270 -webkit-box-orient: vertical;
8271 -webkit-box-align: stretch;
8272 display: -moz-box;
8273 -moz-box-orient: vertical;
8274 -moz-box-align: stretch;
8275 display: box;
8276 box-orient: vertical;
8277 box-align: stretch;
8278 /* Modern browsers */
8279 display: flex;
8280 flex-direction: column;
8281 align-items: stretch;
8282 8268 overflow: visible;
8283 8269 }
8270 @media not print {
8271 body {
8272 /* Old browsers */
8273 display: -webkit-box;
8274 -webkit-box-orient: vertical;
8275 -webkit-box-align: stretch;
8276 display: -moz-box;
8277 -moz-box-orient: vertical;
8278 -moz-box-align: stretch;
8279 display: box;
8280 box-orient: vertical;
8281 box-align: stretch;
8282 /* Modern browsers */
8283 display: flex;
8284 flex-direction: column;
8285 align-items: stretch;
8286 }
8287 }
8284 8288 #header {
8285 8289 /* Initially hidden to prevent FLOUC */
8286 8290 display: none;
@@ -8343,9 +8347,13 b' body {'
8343 8347 box-sizing: border-box;
8344 8348 -moz-box-sizing: border-box;
8345 8349 -webkit-box-sizing: border-box;
8346 flex: 1;
8347 8350 overflow: auto;
8348 height: 0px;
8351 }
8352 @media not print {
8353 #site {
8354 flex: 1;
8355 height: 0px;
8356 }
8349 8357 }
8350 8358 /* Smaller buttons */
8351 8359 .ui-button .ui-button-text {
General Comments 0
You need to be logged in to leave comments. Login now