| 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 > .toolbar { | |
| 13 border-bottom: 1px solid #dadada; | |
| 14 } | |
| 15 | |
| 16 .promises .promise-gc { | |
| 17 opacity: 0.6; | |
| 18 } | |
| 19 | |
| 20 .promises .data-grid th:hover { | |
| 21 background-color: inherit !important; | |
| 22 } | |
| 23 | |
| 24 .promises .data-grid .odd { | |
| 25 background-color: #eee; | |
| 26 } | |
| 27 | |
| 28 .promises .data-grid .header-container { | |
| 29 height: 30px; | |
| 30 } | |
| 31 | |
| 32 .promises .data-grid .data-container { | |
| 33 top: 29px; | |
| 34 } | |
| 35 | |
| 36 .promises .data-grid table.data { | |
| 37 background: transparent; | |
| 38 } | |
| 39 | |
| 40 .promises .data-grid th { | |
| 41 background-color: white; | |
| 42 } | |
| 43 | |
| 44 .promises .data-grid td { | |
| 45 line-height: 17px; | |
| 46 height: 24px; | |
| 47 vertical-align: middle; | |
| 48 } | |
| 49 | |
| 50 .promises .data-grid th, | |
| 51 .promises .data-grid td { | |
| 52 border-bottom: 1px solid rgb(205, 205, 205); | |
| 53 border-left: 1px solid rgb(205, 205, 205); | |
| 54 } | |
| 55 | |
| 56 .promises .status { | |
| 57 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); | |
| 58 -webkit-mask-size: 352px 168px; | |
| 59 -webkit-mask-position: -294px -26px; | |
| 60 background-color: #bbb; | |
| 61 height: 20px; | |
| 62 width: 20px; | |
| 63 } | |
| 64 | |
| 65 @media (-webkit-min-device-pixel-ratio: 1.5) { | |
| 66 .promises .status { | |
| 67 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); | |
| 68 } | |
| 69 } /* media */ | |
| 70 | |
| 71 .promises .status.rejected { | |
| 72 background-color: rgb(216, 0, 0); | |
| 73 } | |
| 74 | |
| 75 .promises .status.resolved { | |
| 76 background-color: #696; | |
| 77 } | |
| 78 | |
| 79 .promises-filters-header { | |
| 80 flex: 0 0 23px; | |
| 81 overflow: hidden; | |
| 82 } | |
| 83 | |
| 84 .promises-filter-status { | |
| 85 flex: 0 0 23px; | |
| 86 padding-left: 18px; | |
| 87 color: rgb(128, 128, 128); | |
| 88 font-style: italic; | |
| 89 } | |
| 90 .promises-filter-status .link:hover { | |
| 91 color: rgb(15%, 15%, 15%); | |
| 92 } | |
| 93 .promises-filter-status .link { | |
| 94 color: rgb(33%, 33%, 33%); | |
| 95 } | |
| OLD | NEW |