| OLD | NEW |
| (Empty) |
| 1 /* | |
| 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 | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 .promises .data-grid { | |
| 8 border: none; | |
| 9 flex: 1 1; | |
| 10 } | |
| 11 | |
| 12 .promises .data-grid .odd { | |
| 13 background-color: #eee; | |
| 14 } | |
| 15 | |
| 16 .promises .data-grid .header-container { | |
| 17 height: 30px; | |
| 18 } | |
| 19 | |
| 20 .promises .data-grid .data-container { | |
| 21 top: 30px; | |
| 22 } | |
| 23 | |
| 24 .promises .data-grid table.data { | |
| 25 background: transparent; | |
| 26 } | |
| 27 | |
| 28 .promises .data-grid th { | |
| 29 border-bottom: none; | |
| 30 border-left: 1px solid rgb(205, 205, 205); | |
| 31 background-color: white; | |
| 32 } | |
| 33 | |
| 34 .promises .data-grid td { | |
| 35 line-height: 17px; | |
| 36 height: 24px; | |
| 37 vertical-align: middle; | |
| 38 border-bottom: 1px solid rgb(205, 205, 205); | |
| 39 border-left: 1px solid rgb(205, 205, 205); | |
| 40 } | |
| 41 | |
| 42 .promises .status { | |
| 43 border-radius: 25px; | |
| 44 width: 54px; | |
| 45 text-align: center; | |
| 46 color: white; | |
| 47 } | |
| 48 | |
| 49 .promises .status.rejected { | |
| 50 background-color: #f66; | |
| 51 } | |
| 52 | |
| 53 .promises .status.resolved { | |
| 54 background-color: #696; | |
| 55 } | |
| OLD | NEW |