Skip to content

Commit 2bf8d90

Browse files
committed
#78 Added fixed vertical height for tree view
1 parent a17a1e2 commit 2bf8d90

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/scancode/templates/html-app/template.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@
6666
border: 1px solid #CCC;
6767
border-radius: 4px;
6868
}
69+
.tree_scrolling{
70+
overflow-x:scroll;
71+
overflow-y:scroll;
72+
height: 500px;
73+
}
6974
</style>
7075
</head>
7176
<body>
@@ -91,7 +96,7 @@
9196
-->
9297
<div class="row">
9398
<div class="col-md-4" id="leftCol">
94-
<div id="tree" style="overflow-x:scroll; overflow-y:auto;"></div>
99+
<div id="tree" class="tree_scrolling"></div>
95100
</div>
96101

97102
<div class="col-md-8">

0 commit comments

Comments
 (0)