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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 } | 85 } |
86 .interpolatedResults { | |
ojan
2014/07/14 23:40:39
Nit: interpolatedResult ?
pdr.
2014/07/17 14:50:28
Done.
| |
87 opacity: 0.2; | |
88 } | |
86 #legend { | 89 #legend { |
87 position: fixed; | 90 position: fixed; |
88 top: 5px; | 91 top: 5px; |
89 right: 5px; | 92 right: 5px; |
90 width: 400px; | 93 width: 400px; |
91 padding: 2px; | 94 padding: 2px; |
92 border: 2px solid grey; | 95 border: 2px solid grey; |
93 background-color: white; | 96 background-color: white; |
94 z-index: 1; | 97 z-index: 1; |
95 } | 98 } |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
252 display: inline-block; | 255 display: inline-block; |
253 white-space: nowrap; | 256 white-space: nowrap; |
254 } | 257 } |
255 .skipped-builder:after { | 258 .skipped-builder:after { |
256 content: '|'; | 259 content: '|'; |
257 margin: 5px; | 260 margin: 5px; |
258 } | 261 } |
259 .skipped-builder:last-child:after { | 262 .skipped-builder:last-child:after { |
260 content: ''; | 263 content: ''; |
261 } | 264 } |
OLD | NEW |