]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
d201506c SW |
2 | /* |
3 | * Copyright (c) 2015 Stephen Warren | |
4 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. | |
d201506c SW |
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 | ||
83357fd5 | 27 | .block { |
d201506c SW |
28 | border-style: solid; |
29 | border-color: #303030; | |
30 | border-width: 0px 0px 0px 5px; | |
31 | padding-left: 5px | |
32 | } | |
33 | ||
83357fd5 | 34 | .block-header { |
d201506c SW |
35 | background-color: #303030; |
36 | margin-left: -5px; | |
37 | margin-top: 5px; | |
38 | } | |
39 | ||
83357fd5 SW |
40 | .block-header:hover { |
41 | text-decoration: underline; | |
d201506c SW |
42 | } |
43 | ||
83357fd5 | 44 | .block-trailer { |
d201506c SW |
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 | ||
9679d339 SW |
64 | .timestamp { |
65 | color: #8080ff | |
66 | } | |
67 | ||
d201506c SW |
68 | .status-pass { |
69 | color: #00ff00 | |
70 | } | |
71 | ||
32090e50 SW |
72 | .status-warning { |
73 | color: #ffff00 | |
74 | } | |
75 | ||
d201506c SW |
76 | .status-skipped { |
77 | color: #ffff00 | |
78 | } | |
79 | ||
78b39cc3 SW |
80 | .status-xfail { |
81 | color: #ff7f00 | |
82 | } | |
83 | ||
84 | .status-xpass { | |
85 | color: #ff7f00 | |
86 | } | |
87 | ||
d201506c SW |
88 | .status-fail { |
89 | color: #ff0000 | |
90 | } | |
83357fd5 SW |
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 | } |