| 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 } |
| 11 | 11 |
| 12 .promises > .toolbar { |
| 13 border-bottom: 1px solid #dadada; |
| 14 } |
| 15 |
| 12 .promises .promise-gc { | 16 .promises .promise-gc { |
| 13 opacity: 0.6; | 17 opacity: 0.6; |
| 14 } | 18 } |
| 15 | 19 |
| 16 .promises .data-grid th:hover { | 20 .promises .data-grid th:hover { |
| 17 background-color: inherit !important; | 21 background-color: inherit !important; |
| 18 } | 22 } |
| 19 | 23 |
| 20 .promises .data-grid .odd { | 24 .promises .data-grid .odd { |
| 21 background-color: #eee; | 25 background-color: #eee; |
| 22 } | 26 } |
| 23 | 27 |
| 24 .promises .data-grid .header-container { | 28 .promises .data-grid .header-container { |
| 25 height: 30px; | 29 height: 30px; |
| 26 border-top: 1px solid rgb(205, 205, 205); | |
| 27 } | 30 } |
| 28 | 31 |
| 29 .promises .data-grid .data-container { | 32 .promises .data-grid .data-container { |
| 30 top: 29px; | 33 top: 29px; |
| 31 } | 34 } |
| 32 | 35 |
| 33 .promises .data-grid table.data { | 36 .promises .data-grid table.data { |
| 34 background: transparent; | 37 background: transparent; |
| 35 } | 38 } |
| 36 | 39 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 padding-left: 18px; | 80 padding-left: 18px; |
| 78 color: rgb(128, 128, 128); | 81 color: rgb(128, 128, 128); |
| 79 font-style: italic; | 82 font-style: italic; |
| 80 } | 83 } |
| 81 .promises-filter-status .link:hover { | 84 .promises-filter-status .link:hover { |
| 82 color: rgb(15%, 15%, 15%); | 85 color: rgb(15%, 15%, 15%); |
| 83 } | 86 } |
| 84 .promises-filter-status .link { | 87 .promises-filter-status .link { |
| 85 color: rgb(33%, 33%, 33%); | 88 color: rgb(33%, 33%, 33%); |
| 86 } | 89 } |
| OLD | NEW |