2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2016-01-15 18:15:24 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Stephen Warren
|
|
|
|
* Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This provides pretty formatting of the HTML log file, e.g.
|
|
|
|
* - colored bars beside/above log sections for easily parsed delineation.
|
|
|
|
* - color highlighting of various messages.
|
|
|
|
*/
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: black;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.implicit {
|
|
|
|
color: #808080;
|
|
|
|
}
|
|
|
|
|
2016-02-03 23:46:34 +00:00
|
|
|
.block {
|
2016-01-15 18:15:24 +00:00
|
|
|
border-style: solid;
|
|
|
|
border-color: #303030;
|
|
|
|
border-width: 0px 0px 0px 5px;
|
|
|
|
padding-left: 5px
|
|
|
|
}
|
|
|
|
|
2016-02-03 23:46:34 +00:00
|
|
|
.block-header {
|
2016-01-15 18:15:24 +00:00
|
|
|
background-color: #303030;
|
|
|
|
margin-left: -5px;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2016-02-03 23:46:34 +00:00
|
|
|
.block-header:hover {
|
|
|
|
text-decoration: underline;
|
2016-01-15 18:15:24 +00:00
|
|
|
}
|
|
|
|
|
2016-02-03 23:46:34 +00:00
|
|
|
.block-trailer {
|
2016-01-15 18:15:24 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error {
|
|
|
|
color: #ff0000
|
|
|
|
}
|
|
|
|
|
|
|
|
.warning {
|
|
|
|
color: #ffff00
|
|
|
|
}
|
|
|
|
|
|
|
|
.info {
|
|
|
|
color: #808080
|
|
|
|
}
|
|
|
|
|
|
|
|
.action {
|
|
|
|
color: #8080ff
|
|
|
|
}
|
|
|
|
|
2017-10-27 17:04:08 +00:00
|
|
|
.timestamp {
|
|
|
|
color: #8080ff
|
|
|
|
}
|
|
|
|
|
2016-01-15 18:15:24 +00:00
|
|
|
.status-pass {
|
|
|
|
color: #00ff00
|
|
|
|
}
|
|
|
|
|
2018-02-20 19:51:55 +00:00
|
|
|
.status-warning {
|
|
|
|
color: #ffff00
|
|
|
|
}
|
|
|
|
|
2016-01-15 18:15:24 +00:00
|
|
|
.status-skipped {
|
|
|
|
color: #ffff00
|
|
|
|
}
|
|
|
|
|
2016-01-28 06:57:51 +00:00
|
|
|
.status-xfail {
|
|
|
|
color: #ff7f00
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-xpass {
|
|
|
|
color: #ff7f00
|
|
|
|
}
|
|
|
|
|
2016-01-15 18:15:24 +00:00
|
|
|
.status-fail {
|
|
|
|
color: #ff0000
|
|
|
|
}
|
2016-02-03 23:46:34 +00:00
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:link {
|
|
|
|
text-decoration: inherit;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
text-decoration: inherit;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|