| 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 { | 6 body { |
| 7 margin: 15px 0px 5px 0px; | 7 font-family: sans-serif; |
| 8 } | 8 } |
| 9 | 9 |
| 10 ul, p { | 10 h2 { |
| 11 margin: 0px; | 11 margin: 15px 0 5px 0; |
| 12 } |
| 13 |
| 14 ul, p, canvas { |
| 15 margin: 0; |
| 16 } |
| 17 |
| 18 #media-players td, |
| 19 #media-players th { |
| 20 padding: 0 10px; |
| 12 } | 21 } |
| 13 | 22 |
| 14 .audio-stream[status='created'] { | 23 .audio-stream[status='created'] { |
| 15 color: blue; | 24 color: blue; |
| 16 } | 25 } |
| 17 | 26 |
| 18 .audio-stream[status='closed'] { | 27 .audio-stream[status='closed'] { |
| 19 text-decoration: line-through; | 28 text-decoration: line-through; |
| 20 } | 29 } |
| 21 | 30 |
| 22 .audio-stream[status='error'] { | 31 .audio-stream[status='error'] { |
| 23 color: red; | 32 color: red; |
| 24 } | 33 } |
| 25 | 34 |
| 26 #cache-entries ul { | 35 #cache-entries ul, |
| 36 #media-players ul { |
| 27 list-style-type: none; | 37 list-style-type: none; |
| 28 } | 38 } |
| 29 | 39 |
| 30 .cache-entry { | 40 .cache-entry { |
| 31 margin: 0px 0px 5px 0px; | 41 margin: 0 0 5px 0; |
| 32 } | 42 } |
| 33 | 43 |
| 34 .cache-entry-controls { | 44 .cache-entry-controls { |
| 35 font-size: smaller; | 45 font-size: smaller; |
| 36 } | 46 } |
| 37 | 47 |
| 38 .cache-entry summary { | |
| 39 text-indent: -1em; | |
| 40 } | |
| 41 | |
| 42 .cache-table { | 48 .cache-table { |
| 43 table-layout: fixed; | 49 table-layout: fixed; |
| 44 width: 500px; | 50 width: 500px; |
| 45 } | 51 } |
| 46 | 52 |
| 47 .cache-table thead { | 53 thead { |
| 48 text-align: left; | 54 text-align: left; |
| 49 } | 55 } |
| 50 | 56 |
| 51 .cache-table tfoot { | 57 tfoot { |
| 52 text-align: right; | 58 text-align: right; |
| 53 } | 59 } |
| 60 |
| 61 .buffer-canvas { |
| 62 margin-bottom: -3px; |
| 63 } |
| OLD | NEW |