mirror of
https://github.com/ansible/awx.git
synced 2026-03-13 15:09:32 -02:30
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:
@@ -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 {
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
flex-direction: row;
|
||||
@media screen and(max-width: @breakpoint){
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user