You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
154 lines
2.9 KiB
154 lines
2.9 KiB
4 months ago
|
/* Copyright (C) 2015 The Android Open Source Project
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
body {
|
||
|
color: #333;
|
||
|
font-family: arial,sans-serif;
|
||
|
font-size: 13px;
|
||
|
margin: 10;
|
||
|
padding: 10;
|
||
|
}
|
||
|
|
||
|
/* Report logo and device name */
|
||
|
table.title {
|
||
|
border-width: 0;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
padding: 5px;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
table.summary {
|
||
|
background-color: #d4e9a9;
|
||
|
border: 0 solid #a5c639;
|
||
|
border-collapse: collapse;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
|
||
|
table.summary th {
|
||
|
background-color: #a5c639;
|
||
|
font-size: 1.2em;
|
||
|
padding: .5em;
|
||
|
}
|
||
|
|
||
|
table.summary td {
|
||
|
border: 0 inset #808080;
|
||
|
font-size: 1em;
|
||
|
padding: .5em;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
table.testsummary {
|
||
|
background-color: #d4e9a9;
|
||
|
border-collapse: collapse;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
|
||
|
table.testsummary th {
|
||
|
background-color: #a5c639;
|
||
|
border: 1px outset #808080;
|
||
|
padding: .5em;
|
||
|
}
|
||
|
|
||
|
table.testsummary td {
|
||
|
border: 1px outset #a5c639;
|
||
|
padding: .5em;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
table.testdetails {
|
||
|
background-color: #d4e9a9;
|
||
|
border-collapse: collapse;
|
||
|
border-color: #a5c639;
|
||
|
border-width: 1;
|
||
|
margin-bottom: 2em;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
vertical-align: top;
|
||
|
width: 95%;
|
||
|
}
|
||
|
|
||
|
table.testdetails th {
|
||
|
background-color: #a5c639;
|
||
|
border: 1px outset #808080;
|
||
|
height: 2em;
|
||
|
padding: .2em;
|
||
|
}
|
||
|
|
||
|
table.testdetails td {
|
||
|
border: 1px outset #a5c639;
|
||
|
padding: .2em;
|
||
|
text-align: left;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
table.testdetails td.module {
|
||
|
background-color: #fff;
|
||
|
border: 0;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
/* Test cell details */
|
||
|
td.failed {
|
||
|
background-color: #fa5858;
|
||
|
font-weight: bold;
|
||
|
text-align: center;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
td.failuredetails {
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
td.pass {
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
td.not_executed {
|
||
|
background-color: #a5c639;
|
||
|
text-align: center;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
td.testname {
|
||
|
border: 1px outset #a5c639;
|
||
|
overflow: hidden;
|
||
|
padding: 1;
|
||
|
text-align: left;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
td.testcase {
|
||
|
border: 1px outset #a5c639;
|
||
|
font-weight: bold;
|
||
|
overflow: hidden;
|
||
|
padding: 1;
|
||
|
text-align: left;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
div.details {
|
||
|
overflow: auto;
|
||
|
white-space: pre-wrap; /* css-3 */
|
||
|
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
||
|
white-space: -pre-wrap; /* Opera 4-6 */
|
||
|
white-space: -o-pre-wrap; /* Opera 7 */
|
||
|
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
||
|
}
|