| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 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 .blocked-urls-pane { | 7 .blocked-urls-pane { |
| 8 overflow: hidden; | 8 overflow: hidden; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 } | 56 } |
| 57 | 57 |
| 58 .blocked-url-text { | 58 .blocked-url-text { |
| 59 white-space: nowrap; | 59 white-space: nowrap; |
| 60 text-overflow: ellipsis; | 60 text-overflow: ellipsis; |
| 61 overflow: hidden; | 61 overflow: hidden; |
| 62 flex: auto; | 62 flex: auto; |
| 63 margin-right: 5px; | 63 margin-right: 5px; |
| 64 } | 64 } |
| 65 | 65 |
| 66 .blocked-url .remove-button { | 66 .remove-icon { |
| 67 width: 13px; | 67 opacity: 0.7; |
| 68 height: 13px; | |
| 69 background-image: url(Images/toolbarButtonGlyphs.png); | |
| 70 background-size: 352px 168px; | |
| 71 background-position: -175px -96px; | |
| 72 visibility: hidden; | 68 visibility: hidden; |
| 73 flex: none; | |
| 74 opacity: 0.7; | |
| 75 cursor: default; | |
| 76 } | 69 } |
| 77 | 70 |
| 78 @media (-webkit-min-device-pixel-ratio: 1.1) { | 71 .blocked-url .remove-icon:hover { |
| 79 .blocked-url .remove-button { | 72 opacity: 1.0; |
| 80 background-image: url(Images/toolbarButtonGlyphs_2x.png); | |
| 81 } | 73 } |
| 82 } /* media */ | |
| 83 | 74 |
| 84 .blocked-url:hover .remove-button { | 75 .blocked-url:hover .remove-icon { |
| 85 visibility: visible; | 76 visibility: visible; |
| 86 } | 77 } |
| 87 | |
| 88 .blocked-url .remove-button:hover { | |
| 89 opacity: 1.0; | |
| 90 } | |
| OLD | NEW |