ui: make 2nd pane scrollable
This commit is contained in:
parent
962421288b
commit
904913f099
|
@ -298,7 +298,7 @@
|
||||||
<hr>
|
<hr>
|
||||||
</div>
|
</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">
|
<div class="row padded-border">
|
||||||
{{outlet}}
|
{{outlet}}
|
||||||
</div>
|
</div>
|
||||||
|
@ -394,8 +394,7 @@
|
||||||
<hr>
|
<hr>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-6 col-lg-7 border-left scrollable">
|
||||||
<div class="col-md-6 col-lg-7 border-left">
|
|
||||||
<div class="row padded-border">
|
<div class="row padded-border">
|
||||||
{{outlet}}
|
{{outlet}}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -119,7 +119,13 @@ a {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ember-list-item-view {
|
.ember-list-item-view {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.scrollable {
|
||||||
|
overflow: auto;
|
||||||
|
height: 800px;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue