Merge pull request #7683 from minrk/fill-height

fill #site height with notebook containers
This commit is contained in:
Jonathan Frederic 2015-02-04 15:03:25 -08:00
commit 2aac3e913a
2 changed files with 6 additions and 0 deletions

View File

@ -8,12 +8,14 @@
#ipython-main-app { #ipython-main-app {
.border-box-sizing(); .border-box-sizing();
height: 100%;
} }
div#notebook_panel { div#notebook_panel {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
.border-box-sizing(); .border-box-sizing();
height: 100%;
} }
#notebook { #notebook {
@ -27,6 +29,7 @@ div#notebook_panel {
margin: 0px; margin: 0px;
outline: none; outline: none;
.border-box-sizing(); .border-box-sizing();
min-height: 100%;
} }
#notebook-container{ #notebook-container{

View File

@ -10358,6 +10358,7 @@ h6:hover .anchor-link {
box-sizing: border-box; box-sizing: border-box;
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
height: 100%;
} }
div#notebook_panel { div#notebook_panel {
margin: 0px; margin: 0px;
@ -10365,6 +10366,7 @@ div#notebook_panel {
box-sizing: border-box; box-sizing: border-box;
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
height: 100%;
} }
#notebook { #notebook {
font-size: 14px; font-size: 14px;
@ -10379,6 +10381,7 @@ div#notebook_panel {
box-sizing: border-box; box-sizing: border-box;
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
min-height: 100%;
} }
@media not print { @media not print {
#notebook-container { #notebook-container {