blob: 3db99272235659fdaeb31895d9f3d3151bd16316 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Stephen Warrend2015062016-01-15 11:15:24 -07002/*
3 * Copyright (c) 2015 Stephen Warren
4 * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
Stephen Warrend2015062016-01-15 11:15:24 -07005 */
6
7/*
8 * This provides pretty formatting of the HTML log file, e.g.
9 * - colored bars beside/above log sections for easily parsed delineation.
10 * - color highlighting of various messages.
11 */
12
13body {
14 background-color: black;
15 color: #ffffff;
16}
17
18pre {
19 margin-top: 0px;
20 margin-bottom: 0px;
21}
22
23.implicit {
24 color: #808080;
25}
26
Stephen Warren83357fd2016-02-03 16:46:34 -070027.block {
Stephen Warrend2015062016-01-15 11:15:24 -070028 border-style: solid;
29 border-color: #303030;
30 border-width: 0px 0px 0px 5px;
31 padding-left: 5px
32}
33
Stephen Warren83357fd2016-02-03 16:46:34 -070034.block-header {
Stephen Warrend2015062016-01-15 11:15:24 -070035 background-color: #303030;
36 margin-left: -5px;
37 margin-top: 5px;
38}
39
Stephen Warren83357fd2016-02-03 16:46:34 -070040.block-header:hover {
41 text-decoration: underline;
Stephen Warrend2015062016-01-15 11:15:24 -070042}
43
Stephen Warren83357fd2016-02-03 16:46:34 -070044.block-trailer {
Stephen Warrend2015062016-01-15 11:15:24 -070045 display: none;
46}
47
48.error {
49 color: #ff0000
50}
51
52.warning {
53 color: #ffff00
54}
55
56.info {
57 color: #808080
58}
59
60.action {
61 color: #8080ff
62}
63
Stephen Warren9679d332017-10-27 11:04:08 -060064.timestamp {
65 color: #8080ff
66}
67
Stephen Warrend2015062016-01-15 11:15:24 -070068.status-pass {
69 color: #00ff00
70}
71
Stephen Warren32090e52018-02-20 12:51:55 -070072.status-warning {
73 color: #ffff00
74}
75
Stephen Warrend2015062016-01-15 11:15:24 -070076.status-skipped {
77 color: #ffff00
78}
79
Stephen Warren78b39cc2016-01-27 23:57:51 -070080.status-xfail {
81 color: #ff7f00
82}
83
84.status-xpass {
85 color: #ff7f00
86}
87
Stephen Warrend2015062016-01-15 11:15:24 -070088.status-fail {
89 color: #ff0000
90}
Stephen Warren83357fd2016-02-03 16:46:34 -070091
92.hidden {
93 display: none;
94}
95
96a:link {
97 text-decoration: inherit;
98 color: inherit;
99}
100
101a:visited {
102 text-decoration: inherit;
103 color: inherit;
104}
105
106a:hover {
107 text-decoration: underline;
108}