try to improve scrollbar behavior

This commit is contained in:
Klaus Leithoff 2013-02-25 10:42:04 +00:00
parent a50f785224
commit d64843a21a

View File

@ -210,12 +210,7 @@ pre {
white-space: -o-pre-wrap; /* Opera 7 */
width: 99%;
}
/*
.dhtmlxTree {
max-height: 300px;
overflow: scroll;
}
*/
.dtree {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
@ -247,3 +242,24 @@ pre {
.dtree table, .dtree tr, .dtree td {
border: none;
}
/*
influence the tree display and scrolling behavior
*/
#tree_target {
width: 100%;
max-height: 450px;
display: inline-block;
overflow: none;
overflow-y: auto;
}
/*
avoid the vertical scrollbar within the sidebox section (triggered by the vertical dimension of the tree)
*/.divSidebox {
overflow: hidden;
}
/*
avoid the vertical scrollbar within the actual tablecontainer (of the tree)
*/
.containerTableStyle {
overflow: hidden;
}