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:
parent
54d64cc124
commit
03238ad179
4 changed files with 85 additions and 18 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue