]> git.ipfire.org Git - people/ms/u-boot.git/blame - test/py/multiplexed_log.css
Merge git://git.denx.de/u-boot-uniphier
[people/ms/u-boot.git] / test / py / multiplexed_log.css
CommitLineData
d201506c
SW
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
14body {
15 background-color: black;
16 color: #ffffff;
17}
18
19pre {
20 margin-top: 0px;
21 margin-bottom: 0px;
22}
23
24.implicit {
25 color: #808080;
26}
27
83357fd5 28.block {
d201506c
SW
29 border-style: solid;
30 border-color: #303030;
31 border-width: 0px 0px 0px 5px;
32 padding-left: 5px
33}
34
83357fd5 35.block-header {
d201506c
SW
36 background-color: #303030;
37 margin-left: -5px;
38 margin-top: 5px;
39}
40
83357fd5
SW
41.block-header:hover {
42 text-decoration: underline;
d201506c
SW
43}
44
83357fd5 45.block-trailer {
d201506c
SW
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.status-pass {
66 color: #00ff00
67}
68
69.status-skipped {
70 color: #ffff00
71}
72
78b39cc3
SW
73.status-xfail {
74 color: #ff7f00
75}
76
77.status-xpass {
78 color: #ff7f00
79}
80
d201506c
SW
81.status-fail {
82 color: #ff0000
83}
83357fd5
SW
84
85.hidden {
86 display: none;
87}
88
89a:link {
90 text-decoration: inherit;
91 color: inherit;
92}
93
94a:visited {
95 text-decoration: inherit;
96 color: inherit;
97}
98
99a:hover {
100 text-decoration: underline;
101}