Merge git://git.denx.de/u-boot-spi
[oweals/u-boot.git] / test / py / multiplexed_log.css
1 /*
2  * Copyright (c) 2015 Stephen Warren
3  * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
4  *
5  * SPDX-License-Identifier: GPL-2.0
6  */
7
8 /*
9  * This provides pretty formatting of the HTML log file, e.g.
10  * - colored bars beside/above log sections for easily parsed delineation.
11  * - color highlighting of various messages.
12  */
13
14 body {
15     background-color: black;
16     color: #ffffff;
17 }
18
19 pre {
20     margin-top: 0px;
21     margin-bottom: 0px;
22 }
23
24 .implicit {
25     color: #808080;
26 }
27
28 .block {
29     border-style: solid;
30     border-color: #303030;
31     border-width: 0px 0px 0px 5px;
32     padding-left: 5px
33 }
34
35 .block-header {
36     background-color: #303030;
37     margin-left: -5px;
38     margin-top: 5px;
39 }
40
41 .block-header:hover {
42     text-decoration: underline;
43 }
44
45 .block-trailer {
46     display: none;
47 }
48
49 .error {
50     color: #ff0000
51 }
52
53 .warning {
54     color: #ffff00
55 }
56
57 .info {
58     color: #808080
59 }
60
61 .action {
62     color: #8080ff
63 }
64
65 .timestamp {
66     color: #8080ff
67 }
68
69 .status-pass {
70     color: #00ff00
71 }
72
73 .status-warning {
74     color: #ffff00
75 }
76
77 .status-skipped {
78     color: #ffff00
79 }
80
81 .status-xfail {
82     color: #ff7f00
83 }
84
85 .status-xpass {
86     color: #ff7f00
87 }
88
89 .status-fail {
90     color: #ff0000
91 }
92
93 .hidden {
94     display: none;
95 }
96
97 a:link {
98     text-decoration: inherit;
99     color: inherit;
100 }
101
102 a:visited {
103     text-decoration: inherit;
104     color: inherit;
105 }
106
107 a:hover {
108     text-decoration: underline;
109 }