ui: make 2nd pane scrollable
This commit is contained in:
parent
962421288b
commit
904913f099
|
@ -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>
|
||||
|
|
|
@ -119,7 +119,13 @@ a {
|
|||
overflow: auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ember-list-item-view {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.scrollable {
|
||||
overflow: auto;
|
||||
height: 800px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue