Add proper resizing of scrollable Notebook area

Resizing needed to be 100% of the height, but css would not work. Jquery
is now used.
This commit is contained in:
Joey Payne 2016-02-22 06:39:35 -07:00
commit 03238ad179
4 changed files with 85 additions and 18 deletions

View file

@ -1,6 +1,7 @@
body, html{
margin: 0px;
height: 100%;
overflow: hidden;
}
#main{
}
@ -25,3 +26,9 @@ body, html{
height: 100%;
min-height: 100%;
}
#nblist{
padding-bottom: 0px !important;
}
#notebook-list{
overflow-y: auto;
}