| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 */ | |
| 5 | 4 |
| 6 .capture-status-view { | 5 .capture-status-view { |
| 7 background: rgb(238, 0, 0); | 6 background: rgb(238, 0, 0); |
| 8 font-size: 133%; | 7 font-size: 133%; |
| 9 } | 8 } |
| 10 | 9 |
| 11 .halted-status-view { | 10 .halted-status-view { |
| 12 background: rgb(0, 138, 0); | 11 background: rgb(0, 138, 0); |
| 13 } | 12 } |
| 14 | 13 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 content: '\25bc'; | 52 content: '\25bc'; |
| 54 font-size: 9px; | 53 font-size: 9px; |
| 55 left: 0; | 54 left: 0; |
| 56 line-height: 25px; | 55 line-height: 25px; |
| 57 pointer-events: none; | 56 pointer-events: none; |
| 58 position: absolute; | 57 position: absolute; |
| 59 text-align: center; | 58 text-align: center; |
| 60 top: 0; | 59 top: 0; |
| 61 width: 100%; | 60 width: 100%; |
| 62 } | 61 } |
| OLD | NEW |