mirror of
https://github.com/ansible/awx.git
synced 2026-03-26 13:25:02 -02:30
68 lines
1.5 KiB
Plaintext
68 lines
1.5 KiB
Plaintext
/***************************************************************************
|
|
* Copyright (c) 2015 Ansible, Inc.
|
|
*
|
|
* Styles for job stdout
|
|
*
|
|
*/
|
|
|
|
#jobs-stdout {
|
|
margin-bottom: 20px;
|
|
|
|
#job-status {
|
|
label {
|
|
margin-right: 15px;
|
|
}
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.scroll-spinner {
|
|
display: none;
|
|
background-color: transparent;
|
|
color:#000;
|
|
}
|
|
#stdoutMoreRowsTop {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 20px;
|
|
}
|
|
#stdoutMoreRowsBottom {
|
|
float: right;
|
|
padding-right: 15px;
|
|
}
|
|
#pre-container {
|
|
overflow-x: scroll;
|
|
overflow-y: auto;
|
|
padding: 10px;
|
|
}
|
|
|
|
}
|
|
|
|
.ansi_fore { color: #AAAAAA; }
|
|
.ansi_back { background-color: @black; }
|
|
.ansi1 { font-weight: bold; }
|
|
.ansi3 { font-weight: italic; }
|
|
.ansi4 { text-decoration: underline; }
|
|
.ansi9 { text-decoration: line-through; }
|
|
.ansi30 { color: #000316; }
|
|
.ansi31 { color: @red; }
|
|
.ansi32 { color: @green; }
|
|
.ansi33 { color: @changed; }
|
|
.ansi34 { color: #0000AA; }
|
|
.ansi35 { color: #E850A8; }
|
|
.ansi36 { color: @skipped; }
|
|
.ansi37 { color: #F5F1DE; }
|
|
.ansi40 { background-color: #000316; }
|
|
.ansi41 { background-color: @red; }
|
|
.ansi42 { background-color: @green; }
|
|
.ansi43 { background-color: @changed; }
|
|
.ansi44 { background-color: #0000AA; }
|
|
.ansi45 { background-color: #E850A8; }
|
|
.ansi46 { background-color: @skipped; }
|
|
.ansi47 { background-color: #F5F1DE; }
|
|
|
|
#pre-container-content > span {
|
|
display: inline-block;
|
|
white-space: pre-wrap;
|
|
word-wrap: normal;
|
|
}
|