|
| 1 | +body { |
| 2 | + font-family: Helvetica, Arial, sans-serif; |
| 3 | + font-size: 12px; |
| 4 | + /* do not increase min-width as some may use split screens */ |
| 5 | + min-width: 800px; |
| 6 | + color: #999; |
| 7 | +} |
| 8 | + |
| 9 | +h1 { |
| 10 | + font-size: 24px; |
| 11 | + color: black; |
| 12 | +} |
| 13 | + |
| 14 | +h2 { |
| 15 | + font-size: 16px; |
| 16 | + color: black; |
| 17 | +} |
| 18 | + |
| 19 | +p { |
| 20 | + color: black; |
| 21 | +} |
| 22 | + |
| 23 | +a { |
| 24 | + color: #999; |
| 25 | +} |
| 26 | + |
| 27 | +table { |
| 28 | + border-collapse: collapse; |
| 29 | +} |
| 30 | + |
| 31 | +/****************************** |
| 32 | + * SUMMARY INFORMATION |
| 33 | + ******************************/ |
| 34 | + |
| 35 | +#environment td { |
| 36 | + padding: 5px; |
| 37 | + border: 1px solid #E6E6E6; |
| 38 | +} |
| 39 | + |
| 40 | +#environment tr:nth-child(odd) { |
| 41 | + background-color: #f6f6f6; |
| 42 | +} |
| 43 | + |
| 44 | +/****************************** |
| 45 | + * TEST RESULT COLORS |
| 46 | + ******************************/ |
| 47 | +span.passed, .passed .col-result { |
| 48 | + color: green; |
| 49 | +} |
| 50 | +span.skipped, span.xfailed, span.rerun, .skipped .col-result, .xfailed .col-result, .rerun .col-result { |
| 51 | + color: orange; |
| 52 | +} |
| 53 | +span.error, span.failed, span.xpassed, .error .col-result, .failed .col-result, .xpassed .col-result { |
| 54 | + color: red; |
| 55 | +} |
| 56 | + |
| 57 | + |
| 58 | +/****************************** |
| 59 | + * RESULTS TABLE |
| 60 | + * |
| 61 | + * 1. Table Layout |
| 62 | + * 2. Extra |
| 63 | + * 3. Sorting items |
| 64 | + * |
| 65 | + ******************************/ |
| 66 | + |
| 67 | +/*------------------ |
| 68 | + * 1. Table Layout |
| 69 | + *------------------*/ |
| 70 | + |
| 71 | +#results-table { |
| 72 | + border: 1px solid #e6e6e6; |
| 73 | + color: #999; |
| 74 | + font-size: 12px; |
| 75 | + width: 100% |
| 76 | +} |
| 77 | + |
| 78 | +#results-table th, #results-table td { |
| 79 | + padding: 5px; |
| 80 | + border: 1px solid #E6E6E6; |
| 81 | + text-align: left |
| 82 | +} |
| 83 | +#results-table th { |
| 84 | + font-weight: bold |
| 85 | +} |
| 86 | + |
| 87 | +/*------------------ |
| 88 | + * 2. Extra |
| 89 | + *------------------*/ |
| 90 | + |
| 91 | +.log:only-child { |
| 92 | + height: inherit |
| 93 | +} |
| 94 | +.log { |
| 95 | + background-color: #e6e6e6; |
| 96 | + border: 1px solid #e6e6e6; |
| 97 | + color: black; |
| 98 | + display: block; |
| 99 | + font-family: "Courier New", Courier, monospace; |
| 100 | + height: 230px; |
| 101 | + overflow-y: scroll; |
| 102 | + padding: 5px; |
| 103 | + white-space: pre-wrap |
| 104 | +} |
| 105 | +div.image { |
| 106 | + border: 1px solid #e6e6e6; |
| 107 | + float: right; |
| 108 | + height: 240px; |
| 109 | + margin-left: 5px; |
| 110 | + overflow: hidden; |
| 111 | + width: 320px |
| 112 | +} |
| 113 | +div.image img { |
| 114 | + width: 320px |
| 115 | +} |
| 116 | +div.video { |
| 117 | + border: 1px solid #e6e6e6; |
| 118 | + float: right; |
| 119 | + height: 240px; |
| 120 | + margin-left: 5px; |
| 121 | + overflow: hidden; |
| 122 | + width: 320px |
| 123 | +} |
| 124 | +div.video video { |
| 125 | + overflow: hidden; |
| 126 | + width: 320px; |
| 127 | + height: 240px; |
| 128 | +} |
| 129 | +.collapsed { |
| 130 | + display: none; |
| 131 | +} |
| 132 | +.expander::after { |
| 133 | + content: " (show details)"; |
| 134 | + color: #BBB; |
| 135 | + font-style: italic; |
| 136 | + cursor: pointer; |
| 137 | +} |
| 138 | +.collapser::after { |
| 139 | + content: " (hide details)"; |
| 140 | + color: #BBB; |
| 141 | + font-style: italic; |
| 142 | + cursor: pointer; |
| 143 | +} |
| 144 | + |
| 145 | +/*------------------ |
| 146 | + * 3. Sorting items |
| 147 | + *------------------*/ |
| 148 | +.sortable { |
| 149 | + cursor: pointer; |
| 150 | +} |
| 151 | + |
| 152 | +.sort-icon { |
| 153 | + font-size: 0px; |
| 154 | + float: left; |
| 155 | + margin-right: 5px; |
| 156 | + margin-top: 5px; |
| 157 | + /*triangle*/ |
| 158 | + width: 0; |
| 159 | + height: 0; |
| 160 | + border-left: 8px solid transparent; |
| 161 | + border-right: 8px solid transparent; |
| 162 | +} |
| 163 | + |
| 164 | +.inactive .sort-icon { |
| 165 | + /*finish triangle*/ |
| 166 | + border-top: 8px solid #E6E6E6; |
| 167 | +} |
| 168 | + |
| 169 | +.asc.active .sort-icon { |
| 170 | + /*finish triangle*/ |
| 171 | + border-bottom: 8px solid #999; |
| 172 | +} |
| 173 | + |
| 174 | +.desc.active .sort-icon { |
| 175 | + /*finish triangle*/ |
| 176 | + border-top: 8px solid #999; |
| 177 | +} |
0 commit comments