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