| 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 #cros-log-analyzer-header { | 6 #cros-log-analyzer-header { |
| 7 margin-bottom: 20px; | 7 margin-bottom: 20px; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .cros-log-analyzer-container { | 10 .cros-log-analyzer-container { |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 .cros-log-analyzer-td-level p { | 69 .cros-log-analyzer-td-level p { |
| 70 border: 1px solid; | 70 border: 1px solid; |
| 71 border-radius: 5px; | 71 border-radius: 5px; |
| 72 margin: 0 3px; | 72 margin: 0 3px; |
| 73 text-align: center; | 73 text-align: center; |
| 74 width: 58px; | 74 width: 58px; |
| 75 } | 75 } |
| 76 | 76 |
| 77 .cros-log-analyzer-td-level-error { | 77 .cros-log-analyzer-td-level-error { |
| 78 background-color: rgb(255, 153, 163); | 78 background-color: rgb(255, 153, 163); |
| 79 color: red; | 79 color: rgb(238, 0, 0); |
| 80 } | 80 } |
| 81 | 81 |
| 82 .cros-log-analyzer-td-level-info { | 82 .cros-log-analyzer-td-level-info { |
| 83 background-color: rgb(195, 227, 250); | 83 background-color: rgb(195, 227, 250); |
| 84 color: rgb(10, 147, 245); | 84 color: rgb(10, 147, 245); |
| 85 width: 120px; | 85 width: 120px; |
| 86 } | 86 } |
| 87 | 87 |
| 88 .cros-log-analyzer-td-level-warning { | 88 .cros-log-analyzer-td-level-warning { |
| 89 background-color: rgb(250, 229, 195); | 89 background-color: rgb(250, 229, 195); |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 } | 225 } |
| 226 50% | 226 50% |
| 227 { | 227 { |
| 228 opacity: 0; | 228 opacity: 0; |
| 229 } | 229 } |
| 230 100% | 230 100% |
| 231 { | 231 { |
| 232 opacity: 1; | 232 opacity: 1; |
| 233 } | 233 } |
| 234 } | 234 } |
| OLD | NEW |