]> git.sur5r.net Git - u-boot/blob - test/py/multiplexed_log.css
dm: mmc: sunxi: Add A10/A20 compatible strings
[u-boot] / test / py / multiplexed_log.css
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (c) 2015 Stephen Warren
4  * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
5  */
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
13 body {
14     background-color: black;
15     color: #ffffff;
16 }
17
18 pre {
19     margin-top: 0px;
20     margin-bottom: 0px;
21 }
22
23 .implicit {
24     color: #808080;
25 }
26
27 .block {
28     border-style: solid;
29     border-color: #303030;
30     border-width: 0px 0px 0px 5px;
31     padding-left: 5px
32 }
33
34 .block-header {
35     background-color: #303030;
36     margin-left: -5px;
37     margin-top: 5px;
38 }
39
40 .block-header:hover {
41     text-decoration: underline;
42 }
43
44 .block-trailer {
45     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
64 .timestamp {
65     color: #8080ff
66 }
67
68 .status-pass {
69     color: #00ff00
70 }
71
72 .status-warning {
73     color: #ffff00
74 }
75
76 .status-skipped {
77     color: #ffff00
78 }
79
80 .status-xfail {
81     color: #ff7f00
82 }
83
84 .status-xpass {
85     color: #ff7f00
86 }
87
88 .status-fail {
89     color: #ff0000
90 }
91
92 .hidden {
93     display: none;
94 }
95
96 a:link {
97     text-decoration: inherit;
98     color: inherit;
99 }
100
101 a:visited {
102     text-decoration: inherit;
103     color: inherit;
104 }
105
106 a:hover {
107     text-decoration: underline;
108 }