Show More
@@ -14,6 +14,7 b' body {' | |||
|
14 | 14 | right: 0px; |
|
15 | 15 | top: 0px; |
|
16 | 16 | bottom: 0px; |
|
17 | .vbox(); | |
|
17 | 18 | overflow: visible; |
|
18 | 19 | } |
|
19 | 20 | |
@@ -81,6 +82,9 b' body {' | |||
|
81 | 82 | width: 100%; |
|
82 | 83 | display: none; |
|
83 | 84 | .border-box-sizing(); |
|
85 | flex: 1; | |
|
86 | overflow: auto; | |
|
87 | height: 0px; // triggers overflow, but overridded by flex | |
|
84 | 88 | } |
|
85 | 89 | |
|
86 | 90 | /* Smaller buttons */ |
@@ -8265,6 +8265,20 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; | |
|
8268 | 8282 | overflow: visible; |
|
8269 | 8283 | } |
|
8270 | 8284 | #header { |
@@ -8329,6 +8343,9 b' body {' | |||
|
8329 | 8343 | box-sizing: border-box; |
|
8330 | 8344 | -moz-box-sizing: border-box; |
|
8331 | 8345 | -webkit-box-sizing: border-box; |
|
8346 | flex: 1; | |
|
8347 | overflow: auto; | |
|
8348 | height: 0px; | |
|
8332 | 8349 | } |
|
8333 | 8350 | /* Smaller buttons */ |
|
8334 | 8351 | .ui-button .ui-button-text { |
@@ -81,7 +81,7 b'' | |||
|
81 | 81 | </div> |
|
82 | 82 | </noscript> |
|
83 | 83 | |
|
84 | <div id="header" class="navbar navbar-fixed-top"> | |
|
84 | <div id="header"> | |
|
85 | 85 | <div id="header-container" class="container"> |
|
86 | 86 | <div id="ipython_notebook" class="nav navbar-brand pull-left"><a href="{{base_url}}tree" title='dashboard'>{% block logo %}<img src='{{static_url("base/images/logo.png") }}' alt='Jupyter Notebook'/>{% endblock %}</a></div> |
|
87 | 87 | |
@@ -106,8 +106,6 b'' | |||
|
106 | 106 | {% endblock %} |
|
107 | 107 | </div> |
|
108 | 108 | |
|
109 | <div id="header-spacer"></div> | |
|
110 | ||
|
111 | 109 | <div id="site"> |
|
112 | 110 | {% block site %} |
|
113 | 111 | {% endblock %} |
General Comments 0
You need to be logged in to leave comments.
Login now