mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 19:10:07 -03:30
Merge pull request #6156 from marshmalien/fix/stdOutPanesFillHeight
Stretch standard out panes to page height
This commit is contained in:
commit
17a65bd67b
@ -9,7 +9,7 @@
|
||||
@import "./client/src/shared/branding/colors.less";
|
||||
|
||||
#jobs-stdout {
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 0px;
|
||||
|
||||
#job-status {
|
||||
label {
|
||||
|
||||
@ -8,11 +8,12 @@
|
||||
|
||||
|
||||
.OnePlusOne-container(@height: 100%; @breakpoint: 900px){
|
||||
height: @height;
|
||||
height: ~"calc(100vh - 150px)";
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
@media screen and(max-width: @breakpoint){
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -29,9 +29,15 @@ standard-out-log {
|
||||
.StandardOut-leftPanel {
|
||||
.OnePlusOne-panel--left(100%, @breakpoint-md);
|
||||
max-width: 600px;
|
||||
display: flex;
|
||||
@media (max-width: @breakpoint-md - 1px) {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.Panel {
|
||||
height: ~"calc(100% - 20px)";
|
||||
overflow-y: scroll;
|
||||
}
|
||||
}
|
||||
|
||||
.StandardOut-rightPanel {
|
||||
@ -44,10 +50,7 @@ standard-out-log {
|
||||
.Panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.StandardOut-consoleOutput {
|
||||
height: 493px;
|
||||
height: ~"calc(100% - 20px)";
|
||||
}
|
||||
}
|
||||
|
||||
@ -57,17 +60,9 @@ standard-out-log {
|
||||
|
||||
.StandardOut-consoleOutput {
|
||||
margin-top: 25px;
|
||||
background-color: @default-secondary-bg;
|
||||
border-radius: 5px;
|
||||
min-height: 300px;
|
||||
max-height: 100vh;
|
||||
height: ~"calc(100vh - 245px)";
|
||||
width: 100%;
|
||||
|
||||
overflow: auto;
|
||||
#pre-container {
|
||||
overflow: visible !important;
|
||||
}
|
||||
}
|
||||
|
||||
.StandardOut-details {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user