| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 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 .list { | 7 .list { |
| 8 flex: auto 0 1; | 8 flex: auto 0 1; |
| 9 overflow-y: auto; | 9 overflow-y: auto; |
| 10 border: 1px solid rgb(231, 231, 231); | 10 border: 1px solid rgb(231, 231, 231); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 align-items: center; | 51 align-items: center; |
| 52 pointer-events: auto; | 52 pointer-events: auto; |
| 53 } | 53 } |
| 54 | 54 |
| 55 .list-item:hover .controls-buttons { | 55 .list-item:hover .controls-buttons { |
| 56 background-color: hsl(0, 0%, 96%); | 56 background-color: hsl(0, 0%, 96%); |
| 57 } | 57 } |
| 58 | 58 |
| 59 .remove-button, | 59 .remove-button, |
| 60 .edit-button { | 60 .edit-button { |
| 61 background-image: url(Images/toolbarButtonGlyphs.png); | |
| 62 background-size: 352px 168px; | |
| 63 width: 32px; | |
| 64 height: 24px; | |
| 65 opacity: 0.5; | 61 opacity: 0.5; |
| 66 cursor: pointer; | 62 cursor: pointer; |
| 67 flex: none; | 63 flex: none; |
| 68 visibility: hidden; | 64 visibility: hidden; |
| 69 } | 65 } |
| 70 | 66 |
| 71 @media (-webkit-min-device-pixel-ratio: 1.1) { | |
| 72 .remove-button, | |
| 73 .edit-button { | |
| 74 background-image: url(Images/toolbarButtonGlyphs_2x.png); | |
| 75 } | |
| 76 } /* media */ | |
| 77 | |
| 78 .list-item:hover .remove-button, | 67 .list-item:hover .remove-button, |
| 79 .list-item:hover .edit-button { | 68 .list-item:hover .edit-button { |
| 80 visibility: visible; | 69 visibility: visible; |
| 81 } | 70 } |
| 82 | 71 |
| 83 .remove-button:hover, | 72 .remove-button:hover, |
| 84 .edit-button:hover { | 73 .edit-button:hover { |
| 85 opacity: 0.7; | 74 opacity: 0.7; |
| 86 } | 75 } |
| 87 | 76 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 margin-right: 10px; | 112 margin-right: 10px; |
| 124 } | 113 } |
| 125 | 114 |
| 126 .editor-content input { | 115 .editor-content input { |
| 127 margin-right: 10px; | 116 margin-right: 10px; |
| 128 } | 117 } |
| 129 | 118 |
| 130 .editor-content input.error-input { | 119 .editor-content input.error-input { |
| 131 background-color: white; | 120 background-color: white; |
| 132 } | 121 } |
| OLD | NEW |