mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 03:10:42 -03:30
stdout sytle updates
* Fixed column width to 50% for both job stdout view and inventory update script output view * Fixed scrolling behavior so we don't have two elements doing scrolling (inner was doing width, outter was doing height) * Reduced max height for stdout jt output view to 900px down from 1600px * Flexified inner output window on inventory script output view so the gray output area always fills the height of the panel #2127 @2028
This commit is contained in:
parent
d565faff98
commit
a9426aaeb9
@ -30,6 +30,12 @@
|
||||
|
||||
.JobDetail-rightSide{
|
||||
.OnePlusOne-panel--right(100%, @breakpoint-md);
|
||||
@media (min-width: @breakpoint-md) {
|
||||
max-width: 50%;
|
||||
}
|
||||
@media (max-width: @breakpoint-md - 1px) {
|
||||
padding-right: 15px;
|
||||
}
|
||||
}
|
||||
.JobDetail-panelHeader{
|
||||
display: flex;
|
||||
|
||||
@ -3,6 +3,11 @@
|
||||
|
||||
/** @define StandardOut */
|
||||
|
||||
standard-out-log {
|
||||
flex: 5;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.StandardOut-preContent{
|
||||
font-size: 12px;
|
||||
padding: 0 20px 0 20px;
|
||||
@ -18,6 +23,15 @@
|
||||
|
||||
.StandardOut-rightPanel {
|
||||
.OnePlusTwo-right--panel(590px);
|
||||
|
||||
@media (min-width: 900px) {
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
.Panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.StandardOut-panelHeader {
|
||||
@ -26,11 +40,16 @@
|
||||
|
||||
.StandardOut-consoleOutput {
|
||||
margin-top: 25px;
|
||||
min-height: 200px;
|
||||
background-color: @default-secondary-bg;
|
||||
border-radius: 5px;
|
||||
max-height: 1600px;
|
||||
min-height: 300px;
|
||||
max-height: 900px;
|
||||
width: 100%;
|
||||
|
||||
overflow: auto;
|
||||
#pre-container {
|
||||
overflow: visible !important;
|
||||
}
|
||||
}
|
||||
|
||||
.StandardOut-details {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user