mirror of
https://github.com/ansible/awx.git
synced 2026-03-17 00:47:29 -02:30
* Faster build times * Smaller bundle sizes * Adjust paths * Cleanup npm dependencies * Remove unneded Grunt tasks
71 lines
1.7 KiB
Plaintext
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;
|
|
}
|