| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 } | 75 } |
| 76 .table-header-content * { | 76 .table-header-content * { |
| 77 -webkit-box-flex: 1; | 77 -webkit-box-flex: 1; |
| 78 cursor: pointer; | 78 cursor: pointer; |
| 79 } | 79 } |
| 80 .results { | 80 .results { |
| 81 cursor: pointer; | 81 cursor: pointer; |
| 82 padding: 0 1px; | 82 padding: 0 1px; |
| 83 font-size: 10px; | 83 font-size: 10px; |
| 84 text-align: center; | 84 text-align: center; |
| 85 min-width: .75em; |
| 86 } |
| 87 .interpolatedResult { |
| 88 opacity: 0.2; |
| 85 } | 89 } |
| 86 #legend { | 90 #legend { |
| 87 position: fixed; | 91 position: fixed; |
| 88 top: 5px; | 92 top: 5px; |
| 89 right: 5px; | 93 right: 5px; |
| 90 width: 400px; | 94 width: 400px; |
| 91 padding: 2px; | 95 padding: 2px; |
| 92 border: 2px solid grey; | 96 border: 2px solid grey; |
| 93 background-color: white; | 97 background-color: white; |
| 94 z-index: 1; | 98 z-index: 1; |
| 95 } | 99 } |
| 96 #legend ul, #legend ol { | 100 #legend ul, #legend ol { |
| 97 margin-top: 0; | 101 margin-top: 0; |
| 98 margin-bottom: 5px; | 102 margin-bottom: 5px; |
| 99 } | 103 } |
| 100 #legend-contents * { | 104 #legend-contents * { |
| 101 margin: 3px 0; | 105 margin: 3px 0; |
| 102 padding: 0 2px; | 106 padding: 0 2px; |
| 103 float: left; | 107 float: left; |
| 104 border: 1px solid grey; | 108 border: 1px solid grey; |
| 105 } | 109 } |
| 106 .PASS { | 110 .PASS { |
| 107 background-color: #3f3; | 111 background-color: #3f3; |
| 108 } | 112 } |
| 109 .NODATA, .NOTRUN { | 113 .NODATA, .NOTRUN { |
| 110 background-color: #fff; | 114 background-color: #fff; |
| 115 color: #bbb; |
| 111 } | 116 } |
| 112 .SKIP { | 117 .SKIP { |
| 113 background-color: lightgray; | 118 background-color: lightgray; |
| 114 } | 119 } |
| 115 .CRASH { | 120 .CRASH { |
| 116 background-color: #c90; | 121 background-color: #c90; |
| 117 } | 122 } |
| 118 .TIMEOUT { | 123 .TIMEOUT { |
| 119 background-color: #fffc6c; | 124 background-color: #fffc6c; |
| 120 } | 125 } |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 display: inline-block; | 257 display: inline-block; |
| 253 white-space: nowrap; | 258 white-space: nowrap; |
| 254 } | 259 } |
| 255 .skipped-builder:after { | 260 .skipped-builder:after { |
| 256 content: '|'; | 261 content: '|'; |
| 257 margin: 5px; | 262 margin: 5px; |
| 258 } | 263 } |
| 259 .skipped-builder:last-child:after { | 264 .skipped-builder:last-child:after { |
| 260 content: ''; | 265 content: ''; |
| 261 } | 266 } |
| OLD | NEW |