123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- body {
- font-family: Helvetica, Arial, sans-serif;
- font-size: 12px;
- min-width: 1200px;
- color: #999;
- }
- h2 {
- font-size: 16px;
- color: black;
- }
- p {
- color: black;
- }
- a {
- color: #999;
- }
- table {
- border-collapse: collapse;
- }
- /******************************
- * SUMMARY INFORMATION
- ******************************/
- #environment td {
- padding: 5px;
- border: 1px solid #E6E6E6;
- }
- #environment tr:nth-child(odd) {
- background-color: #f6f6f6;
- }
- /******************************
- * TEST RESULT COLORS
- ******************************/
- span.passed, .passed .col-result {
- color: green;
- }
- span.skipped, span.xfailed, span.rerun, .skipped .col-result, .xfailed .col-result, .rerun .col-result {
- color: orange;
- }
- span.error, span.failed, span.xpassed, .error .col-result, .failed .col-result, .xpassed .col-result {
- color: red;
- }
- /******************************
- * RESULTS TABLE
- *
- * 1. Table Layout
- * 2. Extra
- * 3. Sorting items
- *
- ******************************/
- /*------------------
- * 1. Table Layout
- *------------------*/
- #results-table {
- border: 1px solid #e6e6e6;
- color: #999;
- font-size: 12px;
- width: 100%
- }
- #results-table th, #results-table td {
- padding: 5px;
- border: 1px solid #E6E6E6;
- text-align: left
- }
- #results-table th {
- font-weight: bold
- }
- /*------------------
- * 2. Extra
- *------------------*/
- .log:only-child {
- height: inherit
- }
- .log {
- background-color: #e6e6e6;
- border: 1px solid #e6e6e6;
- color: black;
- display: block;
- font-family: "Courier New", Courier, monospace;
- height: 230px;
- overflow-y: scroll;
- padding: 5px;
- white-space: pre-wrap
- }
- div.image {
- border: 1px solid #e6e6e6;
- float: right;
- height: 240px;
- margin-left: 5px;
- overflow: hidden;
- width: 320px
- }
- div.image img {
- width: 320px
- }
- .collapsed {
- display: none;
- }
- .expander::after {
- content: " (show details)";
- color: #BBB;
- font-style: italic;
- cursor: pointer;
- }
- .collapser::after {
- content: " (hide details)";
- color: #BBB;
- font-style: italic;
- cursor: pointer;
- }
- /*------------------
- * 3. Sorting items
- *------------------*/
- .sortable {
- cursor: pointer;
- }
- .sort-icon {
- font-size: 0px;
- float: left;
- margin-right: 5px;
- margin-top: 5px;
- /*triangle*/
- width: 0;
- height: 0;
- border-left: 8px solid transparent;
- border-right: 8px solid transparent;
- }
- .inactive .sort-icon {
- /*finish triangle*/
- border-top: 8px solid #E6E6E6;
- }
- .asc.active .sort-icon {
- /*finish triangle*/
- border-bottom: 8px solid #999;
- }
- .desc.active .sort-icon {
- /*finish triangle*/
- border-top: 8px solid #999;
- }
|