Files
awx/awx/ui/client/legacy/styles/stdout.less
gconsidine c57c17546e Update UI build system
* Faster build times
* Smaller bundle sizes
* Adjust paths
* Cleanup npm dependencies
* Remove unneded Grunt tasks
2017-09-07 18:09:14 -04:00

71 lines
1.7 KiB
Plaintext

/***************************************************************************
* Copyright (c) 2015 Ansible, Inc.
*
* Styles for job stdout
*
*/
#jobs-stdout {
margin-bottom: 0px;
#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: @default-data-txt; }
.ansi31 { color: @default-err; }
.ansi1.ansi31 {
color: @default-unreachable;
}
.ansi32 { color: @default-succ; }
.ansi33 { color: @default-warning; }
.ansi34 { color: @default-link; }
.ansi35 { color: @default-magenta; }
.ansi36 { color: @default-cyan; }
.ansi37 { color: @default-bg; }
.ansi40 { background-color: @default-stdout-txt; }
.ansi41 { background-color: @default-err; }
.ansi42 { background-color: @default-succ; }
.ansi43 { background-color: @default-warning; }
.ansi44 { background-color: @default-link; }
.ansi45 { background-color: @default-magenta; }
.ansi46 { background-color: @default-cyan; }
.ansi47 { background-color: @default-bg; }
#pre-container-content > span {
display: inline-block;
white-space: pre-wrap;
word-wrap: normal;
}