ui: make 2nd pane scrollable

This commit is contained in:
Jack Pearkes 2014-06-04 17:14:50 -04:00
parent 962421288b
commit 904913f099
2 changed files with 8 additions and 3 deletions

View File

@ -298,7 +298,7 @@
<hr>
</div>
<div class="col-md-6 col-lg-7 border-left">
<div class="col-md-6 col-lg-7 border-left scrollable">
<div class="row padded-border">
{{outlet}}
</div>
@ -394,8 +394,7 @@
<hr>
</div>
<div class="col-md-6 col-lg-7 border-left">
<div class="col-md-6 col-lg-7 border-left scrollable">
<div class="row padded-border">
{{outlet}}
</div>

View File

@ -119,7 +119,13 @@ a {
overflow: auto;
position: relative;
}
.ember-list-item-view {
position: absolute;
width: 100%;
}
.scrollable {
overflow: auto;
height: 800px;
}