| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 } | 45 } |
| 46 | 46 |
| 47 .promises .data-grid th, | 47 .promises .data-grid th, |
| 48 .promises .data-grid td { | 48 .promises .data-grid td { |
| 49 border-bottom: 1px solid rgb(205, 205, 205); | 49 border-bottom: 1px solid rgb(205, 205, 205); |
| 50 border-left: 1px solid rgb(205, 205, 205); | 50 border-left: 1px solid rgb(205, 205, 205); |
| 51 } | 51 } |
| 52 | 52 |
| 53 .promises .status { | 53 .promises .status { |
| 54 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); | 54 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); |
| 55 -webkit-mask-size: 320px 144px; | 55 -webkit-mask-size: 352px 144px; |
| 56 -webkit-mask-position: -294px -26px; | 56 -webkit-mask-position: -294px -26px; |
| 57 background-color: #bbb; | 57 background-color: #bbb; |
| 58 height: 20px; | 58 height: 20px; |
| 59 width: 20px; | 59 width: 20px; |
| 60 } | 60 } |
| 61 | 61 |
| 62 .promises .status.rejected { | 62 .promises .status.rejected { |
| 63 background-color: rgb(216, 0, 0); | 63 background-color: rgb(216, 0, 0); |
| 64 } | 64 } |
| 65 | 65 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 77 padding-left: 18px; | 77 padding-left: 18px; |
| 78 color: rgb(128, 128, 128); | 78 color: rgb(128, 128, 128); |
| 79 font-style: italic; | 79 font-style: italic; |
| 80 } | 80 } |
| 81 .promises-filter-status .link:hover { | 81 .promises-filter-status .link:hover { |
| 82 color: rgb(15%, 15%, 15%); | 82 color: rgb(15%, 15%, 15%); |
| 83 } | 83 } |
| 84 .promises-filter-status .link { | 84 .promises-filter-status .link { |
| 85 color: rgb(33%, 33%, 33%); | 85 color: rgb(33%, 33%, 33%); |
| 86 } | 86 } |
| OLD | NEW |