mirror of
https://github.com/ansible/awx.git
synced 2026-09-03 10:28:29 -02:30
* initial build trial, clean up awx/ui * fix hardcoded refs to ng-toast, add jshint preloader * remove browserify test * update grunt-jshint -> jshint module loader, browser-sync, update dev targets to build-docker-machine & build-docker-cid, fix blocking tasks * less autoprefixer * sample build commands * fix release build * update README * karma config stub * webpack config for karma tests * karma preview for shane * fix build-docker-machine target * karma+webpack test pipeline configuration, stub tests * fix smart/job status icons classes * fix jquery + jsyaml shims, fix LESS cascade * fix angular-codemirror dependency, explicitly import style/mode dependencies * shim jsonlint * fix angular-scheduler AMD imports, remove jquuery-ui shim, fix release config * use closed $.fn.datepicker for system-tracking * remove packaging/node/ * remove old tests * shrinkwrap fragile dependency sandcastle, update README, lint * first pass at fixing rrule shim * update makefile targets * update gitignore w/ new flag file * add saucelabs karma config * add license controller test * add examples of service and directive tests * Makefile flubs * consolidate clean-ui target, compulsively update flag file location * dep on CJS/AMD/UMD compatible version of rrule lib, fix example tests/config for demo * boilerplate karma config for saucelabs (should be abstracted to common config after proven to work) * update docs * docs feedback * update Dockerfile with Node 6.x dep
74 lines
1.8 KiB
Plaintext
74 lines
1.8 KiB
Plaintext
/***************************************************************************
|
|
* Copyright (c) 2015 Ansible, Inc.
|
|
*
|
|
* Styles for job stdout
|
|
*
|
|
*/
|
|
|
|
@import "./client/src/shared/branding/colors.default.less";
|
|
@import "./client/src/shared/branding/colors.less";
|
|
|
|
#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: @default-stdout-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;
|
|
}
|