| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 body { | 6 body { |
| 7 background-color: rgba(0, 0, 0, 0.05); | 7 background-color: rgba(0, 0, 0, 0.05); |
| 8 font-family: sans-serif; | |
| 9 font-size: 14px; | |
| 10 margin: 20px; | 8 margin: 20px; |
| 11 } | 9 } |
| 12 | 10 |
| 13 #fileSystems, | 11 #fileSystems, |
| 14 #requestEvents, | 12 #requestEvents, |
| 15 #requestTimeline { | 13 #requestTimeline { |
| 16 background-color: white; | 14 background-color: white; |
| 17 box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); | 15 box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); |
| 18 margin-bottom: 20px; | 16 margin-bottom: 20px; |
| 19 } | 17 } |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 #requestEvents [data-request-type='READ_FILE'] span { | 178 #requestEvents [data-request-type='READ_FILE'] span { |
| 181 background-color: royalblue; | 179 background-color: royalblue; |
| 182 color: white; | 180 color: white; |
| 183 } | 181 } |
| 184 | 182 |
| 185 #requestTimeline [data-state='rejected'], | 183 #requestTimeline [data-state='rejected'], |
| 186 #requestEvents [data-error]:not([data-error='']) span { | 184 #requestEvents [data-error]:not([data-error='']) span { |
| 187 background-color: tomato; | 185 background-color: tomato; |
| 188 color: white; | 186 color: white; |
| 189 } | 187 } |
| OLD | NEW |