Stretch standard out panes to page height

* Fix #5962
* Give StandardOut-container a fixed height so flex children will stretch
to fill 100%.
* Edit overflow and height properties to make panel content scrollable
and visible
This commit is contained in:
Marliana Lara
2017-05-02 10:54:45 -04:00
parent 3648757efd
commit 57ce713891
3 changed files with 5 additions and 7 deletions

View File

@@ -60,7 +60,7 @@ table, tbody {
height: 40px;
font-size: 14px;
color: @list-item;
border-bottom: 1px solid #d7d7d7;
border-bottom: 1px solid @default-white-button-bord;
}
.List-tableRow:last-of-type {

View File

@@ -13,6 +13,7 @@
flex-direction: row;
@media screen and(max-width: @breakpoint){
flex-direction: column;
height: 100%;
}
}

View File

@@ -8,6 +8,7 @@
standard-out-log {
flex: 5;
display: flex;
overflow: hidden;
}
.StandardOut-preContent{
@@ -17,7 +18,7 @@ standard-out-log {
}
.StandardOut-container {
.OnePlusOne-container(100%, @breakpoint-md);
.OnePlusOne-container(80vh, @breakpoint-md);
&.fullscreen {
.StandardOut-rightPanel {
@@ -47,7 +48,7 @@ standard-out-log {
}
.StandardOut-consoleOutput {
height: 493px;
height: 94%;
}
}
@@ -57,7 +58,6 @@ standard-out-log {
.StandardOut-consoleOutput {
margin-top: 25px;
background-color: @default-secondary-bg;
border-radius: 5px;
min-height: 300px;
max-height: 100vh;
@@ -65,9 +65,6 @@ standard-out-log {
width: 100%;
overflow: auto;
#pre-container {
overflow: visible !important;
}
}
.StandardOut-details {