| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 h2 { |
| 7 margin: 15px 0px 5px 0px; |
| 8 } |
| 9 |
| 10 ul, p { |
| 11 margin: 0px; |
| 12 } |
| 13 |
| 6 .audio-stream[status='created'] { | 14 .audio-stream[status='created'] { |
| 7 color: blue; | 15 color: blue; |
| 8 } | 16 } |
| 9 | 17 |
| 10 .audio-stream[status='closed'] { | 18 .audio-stream[status='closed'] { |
| 11 text-decoration: line-through; | 19 text-decoration: line-through; |
| 12 } | 20 } |
| 13 | 21 |
| 14 .audio-stream[status='error'] { | 22 .audio-stream[status='error'] { |
| 15 color: red; | 23 color: red; |
| 16 } | 24 } |
| 25 |
| 26 #cache-entries ul { |
| 27 list-style-type: none; |
| 28 } |
| 29 |
| 30 .cache-entry { |
| 31 margin: 0px 0px 5px 0px; |
| 32 } |
| 33 |
| 34 .cache-entry-controls { |
| 35 font-size: smaller; |
| 36 } |
| 37 |
| 38 .cache-entry summary { |
| 39 text-indent: -1em; |
| 40 } |
| 41 |
| 42 .cache-table { |
| 43 table-layout: fixed; |
| 44 width: 500px; |
| 45 } |
| 46 |
| 47 .cache-table thead { |
| 48 text-align: left; |
| 49 } |
| 50 |
| 51 .cache-table tfoot { |
| 52 text-align: right; |
| 53 } |
| OLD | NEW |