mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 01:21:21 +03:00
Merge pull request #2146 from anoek/stdout-styling
Stdout styling updates
This commit is contained in:
commit
b999206ffd
@ -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;
|
||||
|
@ -10,7 +10,7 @@
|
||||
.OnePlusOne-container(@height: 100%; @breakpoint: 900px){
|
||||
height: @height;
|
||||
display: flex;
|
||||
flex-diration: row;
|
||||
flex-direction: row;
|
||||
@media screen and(max-width: @breakpoint){
|
||||
flex-direction: column;
|
||||
}
|
||||
|
@ -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,17 @@
|
||||
|
||||
.StandardOut-consoleOutput {
|
||||
margin-top: 25px;
|
||||
min-height: 200px;
|
||||
background-color: @default-secondary-bg;
|
||||
border-radius: 5px;
|
||||
max-height: 1600px;
|
||||
min-height: 300px;
|
||||
max-height: 100vh;
|
||||
height: ~"calc(100vh - 245px)";
|
||||
width: 100%;
|
||||
|
||||
overflow: auto;
|
||||
#pre-container {
|
||||
overflow: visible !important;
|
||||
}
|
||||
}
|
||||
|
||||
.StandardOut-details {
|
||||
|
Loading…
Reference in New Issue
Block a user