1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
|
/* $Id: details.css $ */
/** @file
* Test Manager - Test Details CSS.
*/
/*
* Copyright (C) 2012-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*
* The test details page has no side menu, so adjust the top-menu and main
* sections so they start at the left border.
*/
#top-menu, #main {
left: 0;
}
#main {
margin-left: 0px;
}
.tmtbl-events {
}
.tmstatusrow-failure, .tmstatusrow-timed-out, .tmstatusrow-rebooted {
color: #e80000;
}
.tmstatusrow-skipped, .tmstatusrow-aborted, .tmstatusrow-bad-testbox {
color: #0000f0;
}
/*
* Test results.
*/
/*
* Details table on the individual test result page.
*/
table.tmtbl-testresult-details {
border-style: dashed;
border-spacing: 1px;
border-width: 1px;
border-color: gray;
border-collapse: separate;
}
table.tmtbl-testresult-details caption {
text-align: left;
font-weight: bold;
font-size: 1.2em;
}
table.tmtbl-testresult-details td, table.tmtbl-testresult-details th {
font-size: 1em;
border-style: none;
padding-bottom: 3px;
padding-top: 3px;
padding-left: 2px;
padding-right: 2px;
border-width: 1px;
}
table.tmtbl-testresult-details th {
text-align: left;
}
.tmtbl-result-details-caption {
font-size: 1.2em;
font-weight: bold;
text-align: center;
background-color: #c0d0e0;
}
.tmtbl-result-details-subcaption {
text-align: center;
}
/*
* Event log on the individual test result page.
*/
.tmtbl-events td {
padding-bottom: 1px;
padding-top: 1px;
padding-left: 1px;
padding-right: 1px;
vertical-align: top;
}
.tmtbl-events th {
font-size: 1.3em;
text-align: center;
}
table.tmtbl-events, table.tmtbl-events tr, table.tmtbl-events td, table.tmtbl-events th {
border-collapse: collapse;
}
tr.tmtbl-events-leaf {
}
tr.tmtbl-events-first {
border-top: 1px dotted;
}
tr.tmtbl-events-value {
}
tr.tmtbl-events-final {
border-bottom: 1px dotted;
}
tr.tmtbl-events-lvl0 td {
padding-top: 8px;
padding-bottom: 8px;
}
tr.tmtbl-events-lvl1 td {
padding-top: 6px;
padding-bottom: 6px;
}
tr.tmtbl-events-lvl2 td {
padding-top: 4px;
padding-bottom: 4px;
}
tr.tmtbl-events-lvl3 td {
padding-top: 2px;
padding-bottom: 2px;
}
tr.tmtbl-events-lvl4 td {
padding-top: 1px;
padding-bottom: 1px;
}
tr.tmtbl-events-lvl5 td,
tr.tmtbl-events-lvl6 td,
tr.tmtbl-events-lvl7 td,
tr.tmtbl-events-lvl8 td,
tr.tmtbl-events-lvl9 td,
tr.tmtbl-events-lvl10 td {
padding-top: 0px;
padding-bottom: 0px;
}
td.tmtbl-events-number {
text-align: right;
}
td.tmtbl-events-number, td.tmtbl-events-unit {
}
tr.tmtbl-events-value td:nth-child(3),
tr.tmtbl-events-file td:nth-child(3),
tr.tmtbl-events-message td:nth-child(3) {
padding-left: 2em;
}
tr.tmtbl-events-value td:nth-child(3),
tr.tmtbl-events-message td:nth-child(3) {
font-style: italic;
}
/*
* Status coloring. (move to common.css?)
*/
.tmspan-status-success {
color: green;
}
.tmspan-status-skipped {
color: blue;
}
.tmspan-status-failure {
color: red;
}
.tmspan-status-success, .tmspan-status-skipped, .tmspan-status-failure {
font-weight: bold;
text-transform: uppercase;
}
|