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:
Akita Noek 2016-06-02 16:42:06 -04:00
parent d565faff98
commit a9426aaeb9
2 changed files with 27 additions and 2 deletions

View File

@ -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;

View File

@ -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 {