mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-26 09:51:48 -05:00
144 lines
2.6 KiB
Plaintext
144 lines
2.6 KiB
Plaintext
@breakpoint-md: 1200px;
|
|
@breakpoint-sm: 623px;
|
|
|
|
.WorkflowResults {
|
|
.OnePlusTwo-container(100%, @breakpoint-md);
|
|
|
|
&.fullscreen {
|
|
.WorkflowResults-rightSide {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.WorkflowResults-leftSide {
|
|
.OnePlusTwo-left--panel(100%, @breakpoint-md);
|
|
height: ~"calc(100vh - 177px)";
|
|
min-height: 350px;
|
|
|
|
.Panel {
|
|
overflow: scroll;
|
|
}
|
|
}
|
|
|
|
.WorkflowResults-rightSide {
|
|
.OnePlusTwo-right--panel(100%, @breakpoint-md);
|
|
height: ~"calc(100vh - 177px)";
|
|
min-height: 350px;
|
|
|
|
@media (max-width: @breakpoint-md - 1px) {
|
|
padding-right: 15px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: @breakpoint-md) {
|
|
.WorkflowResults-rightSide {
|
|
height: inherit;
|
|
}
|
|
}
|
|
|
|
.WorkflowResults-stdoutActionButton--active {
|
|
display: none;
|
|
visibility: hidden;
|
|
flex:none;
|
|
width:0px;
|
|
padding-right: 0px;
|
|
}
|
|
|
|
.WorkflowResults-panelHeader {
|
|
display: flex;
|
|
height: 30px;
|
|
}
|
|
|
|
.WorkflowResults-panelHeaderText {
|
|
color: @default-interface-txt;
|
|
flex: 1 0 auto;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
margin-right: 10px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.WorkflowResults-resultRow {
|
|
width: 100%;
|
|
display: flex;
|
|
padding-bottom: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.WorkflowResults-resultRow--variables {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.WorkflowResults-resultRowLabel {
|
|
text-transform: uppercase;
|
|
color: @default-interface-txt;
|
|
font-size: 14px;
|
|
font-weight: normal!important;
|
|
width: 30%;
|
|
margin-right: 20px;
|
|
|
|
@media screen and (max-width: @breakpoint-md) {
|
|
flex: 2.5 0 auto;
|
|
}
|
|
}
|
|
|
|
.WorkflowResults-resultRowLabel--fullWidth {
|
|
width: 100%;
|
|
margin-right: 0px;
|
|
}
|
|
|
|
.WorkflowResults-resultRowText {
|
|
width: ~"calc(70% - 20px)";
|
|
flex: 1 0 auto;
|
|
text-transform: none;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.WorkflowResults-resultRowText--fullWidth {
|
|
width: 100%;
|
|
}
|
|
|
|
.WorkflowResults-statusResultIcon {
|
|
padding-left: 0px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.WorkflowResults-panelRightTitle{
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.WorkflowResults-panelRightTitleText{
|
|
word-wrap: break-word;
|
|
word-break: break-all;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.WorkflowResults-badgeAndActionRow{
|
|
display:flex;
|
|
flex: 1 0 auto;
|
|
justify-content: flex-end;
|
|
flex-wrap: wrap;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.WorkflowResults-badgeRow {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.WorkflowResults-badgeTitle{
|
|
color: @default-interface-txt;
|
|
font-size: 14px;
|
|
margin-right: 10px;
|
|
font-weight: normal;
|
|
text-transform: uppercase;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.WorkflowResults-extraVarsHelp {
|
|
margin-left: 10px;
|
|
color: @default-icon;
|
|
}
|