| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 padding: 0 2px; | 43 padding: 0 2px; |
| 44 } | 44 } |
| 45 .test-table { | 45 .test-table { |
| 46 white-space: nowrap; | 46 white-space: nowrap; |
| 47 border-spacing: 1px; | 47 border-spacing: 1px; |
| 48 } | 48 } |
| 49 /* Let the bugs column wrap. */ | 49 /* Let the bugs column wrap. */ |
| 50 .test-table tr > td:nth-child(2) { | 50 .test-table tr > td:nth-child(2) { |
| 51 white-space: normal; | 51 white-space: normal; |
| 52 } | 52 } |
| 53 .test-table .file-new-bug { |
| 54 white-space: nowrap; |
| 55 } |
| 53 .test-table { | 56 .test-table { |
| 54 width: 100%; | 57 width: 100%; |
| 55 } | 58 } |
| 56 .test-table tr { | 59 .test-table tr { |
| 57 border: 1px solid red; | 60 border: 1px solid red; |
| 58 background-color: #E8E8E8; | 61 background-color: #E8E8E8; |
| 59 } | 62 } |
| 60 .test-table tbody tr:hover { | 63 .test-table tbody tr:hover { |
| 61 opacity: .7; | 64 opacity: .7; |
| 62 } | 65 } |
| (...skipping 189 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 |