| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .promises .data-grid { | 7 .promises .data-grid { |
| 8 border: none; | 8 border: none; |
| 9 flex: 1 1; | 9 flex: 1 1; |
| 10 } | 10 } |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 color: white; | 46 color: white; |
| 47 } | 47 } |
| 48 | 48 |
| 49 .promises .status.rejected { | 49 .promises .status.rejected { |
| 50 background-color: #f66; | 50 background-color: #f66; |
| 51 } | 51 } |
| 52 | 52 |
| 53 .promises .status.resolved { | 53 .promises .status.resolved { |
| 54 background-color: #696; | 54 background-color: #696; |
| 55 } | 55 } |
| OLD | NEW |