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 */ | 4 */ |
5 | 5 |
6 .capture-status-view { | 6 .capture-status-view { |
7 background: rgb(255, 0, 0); | 7 background: rgb(238, 0, 0); |
8 } | 8 } |
9 | 9 |
10 .halted-status-view { | 10 .halted-status-view { |
11 background: rgb(0, 170, 0); | 11 background: rgb(0, 138, 0); |
12 } | 12 } |
13 | 13 |
14 .loaded-status-view { | 14 .loaded-status-view { |
15 background: rgb(136, 136, 204); | 15 background: rgb(113, 113, 171); |
16 } | 16 } |
17 | 17 |
18 #capture-status-view { | 18 #capture-status-view { |
19 -webkit-align-items: center; | 19 -webkit-align-items: center; |
20 display: -webkit-flex; | 20 display: -webkit-flex; |
21 } | 21 } |
22 | 22 |
23 .capture-status-view-link, | 23 .capture-status-view-link, |
24 .capture-status-view-link:visited, | 24 .capture-status-view-link:visited, |
25 .capture-status-view-link:active { | 25 .capture-status-view-link:active { |
(...skipping 26 matching lines...) Expand all Loading... |
52 content: '\25bc'; | 52 content: '\25bc'; |
53 font-size: 9px; | 53 font-size: 9px; |
54 left: 0; | 54 left: 0; |
55 line-height: 25px; | 55 line-height: 25px; |
56 pointer-events: none; | 56 pointer-events: none; |
57 position: absolute; | 57 position: absolute; |
58 text-align: center; | 58 text-align: center; |
59 top: 0; | 59 top: 0; |
60 width: 100%; | 60 width: 100%; |
61 } | 61 } |
OLD | NEW |