| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 #about-info { | 6 #about-info { |
| 7 -webkit-column-width: 350px; | 7 -webkit-column-width: 350px; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #about-info > div { | 10 #about-info > div { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 } | 37 } |
| 38 | 38 |
| 39 #typeInfo .error { | 39 #typeInfo .error { |
| 40 background: rgb(255, 204, 204); | 40 background: rgb(255, 204, 204); |
| 41 } | 41 } |
| 42 | 42 |
| 43 #typeInfo .warning { | 43 #typeInfo .warning { |
| 44 background: rgb(255, 255, 204); | 44 background: rgb(255, 255, 204); |
| 45 } | 45 } |
| 46 | 46 |
| 47 #typeInfo .disabled { |
| 48 background: rgb(224, 224, 224); |
| 49 } |
| 50 |
| 47 #typeInfo .ok { | 51 #typeInfo .ok { |
| 48 background: rgb(204, 255, 204); | 52 background: rgb(204, 255, 204); |
| 49 } | 53 } |
| 50 | 54 |
| 51 @-webkit-keyframes highlight1 { | 55 @-webkit-keyframes highlight1 { |
| 52 0% { | 56 0% { |
| 53 background: rgb(255, 255, 0); | 57 background: rgb(255, 255, 0); |
| 54 } | 58 } |
| 55 100% { | 59 100% { |
| 56 background: #fff; | 60 background: #fff; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 } | 131 } |
| 128 | 132 |
| 129 .traffic-event-entry-expanded .proto { | 133 .traffic-event-entry-expanded .proto { |
| 130 background-color: #fff; | 134 background-color: #fff; |
| 131 border: 1px solid #222; | 135 border: 1px solid #222; |
| 132 display: block; | 136 display: block; |
| 133 max-height: 300px; | 137 max-height: 300px; |
| 134 overflow-x: auto; | 138 overflow-x: auto; |
| 135 overflow-y: auto; | 139 overflow-y: auto; |
| 136 } | 140 } |
| OLD | NEW |