Show More
@@ -14,7 +14,9 b' body {' | |||
|
14 | 14 | right: 0px; |
|
15 | 15 | top: 0px; |
|
16 | 16 | bottom: 0px; |
|
17 | @media not print { | |
|
17 | 18 | .vbox(); |
|
19 | } | |
|
18 | 20 | overflow: visible; |
|
19 | 21 | } |
|
20 | 22 | |
@@ -82,10 +84,12 b' body {' | |||
|
82 | 84 | width: 100%; |
|
83 | 85 | display: none; |
|
84 | 86 | .border-box-sizing(); |
|
85 | flex: 1; | |
|
86 | 87 | overflow: auto; |
|
88 | @media not print { | |
|
89 | flex: 1; | |
|
87 | 90 | height: 0px; // triggers overflow, but overridded by flex |
|
88 | 91 | } |
|
92 | } | |
|
89 | 93 | |
|
90 | 94 | /* Smaller buttons */ |
|
91 | 95 | .ui-button .ui-button-text { |
@@ -8265,6 +8265,10 b' body {' | |||
|
8265 | 8265 | right: 0px; |
|
8266 | 8266 | top: 0px; |
|
8267 | 8267 | bottom: 0px; |
|
8268 | overflow: visible; | |
|
8269 | } | |
|
8270 | @media not print { | |
|
8271 | body { | |
|
8268 | 8272 | /* Old browsers */ |
|
8269 | 8273 | display: -webkit-box; |
|
8270 | 8274 | -webkit-box-orient: vertical; |
@@ -8279,7 +8283,7 b' body {' | |||
|
8279 | 8283 | display: flex; |
|
8280 | 8284 | flex-direction: column; |
|
8281 | 8285 | align-items: stretch; |
|
8282 | overflow: visible; | |
|
8286 | } | |
|
8283 | 8287 | } |
|
8284 | 8288 | #header { |
|
8285 | 8289 | /* Initially hidden to prevent FLOUC */ |
@@ -8343,10 +8347,14 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; |
|
8351 | } | |
|
8352 | @media not print { | |
|
8353 | #site { | |
|
8354 | flex: 1; | |
|
8348 | 8355 | height: 0px; |
|
8349 | 8356 | } |
|
8357 | } | |
|
8350 | 8358 | /* Smaller buttons */ |
|
8351 | 8359 | .ui-button .ui-button-text { |
|
8352 | 8360 | padding: 0.2em 0.8em; |
General Comments 0
You need to be logged in to leave comments.
Login now