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 .toolbar { | 7 .toolbar { |
8 border-bottom: 1px solid #dadada; | 8 border-bottom: 1px solid #dadada; |
9 } | 9 } |
10 | 10 |
(...skipping 24 matching lines...) Expand all Loading... |
35 flex: 30px 0 0; | 35 flex: 30px 0 0; |
36 font-size: smaller !important; | 36 font-size: smaller !important; |
37 padding-right: 5px; | 37 padding-right: 5px; |
38 } | 38 } |
39 | 39 |
40 .blocked-url-text { | 40 .blocked-url-text { |
41 white-space: nowrap; | 41 white-space: nowrap; |
42 text-overflow: ellipsis; | 42 text-overflow: ellipsis; |
43 overflow: hidden; | 43 overflow: hidden; |
44 flex: auto; | 44 flex: auto; |
| 45 margin-right: 5px; |
45 } | 46 } |
46 | 47 |
47 .blocked-url .remove-button { | 48 .blocked-url .remove-button { |
48 width: 13px; | 49 width: 13px; |
49 height: 13px; | 50 height: 13px; |
50 background-image: url(Images/toolbarButtonGlyphs.png); | 51 background-image: url(Images/toolbarButtonGlyphs.png); |
51 background-size: 352px 168px; | 52 background-size: 352px 168px; |
52 background-position: -175px -96px; | 53 background-position: -175px -96px; |
53 visibility: hidden; | 54 visibility: hidden; |
54 flex: none; | 55 flex: none; |
55 opacity: 0.7; | 56 opacity: 0.7; |
56 cursor: default; | 57 cursor: default; |
57 } | 58 } |
58 | 59 |
59 @media (-webkit-min-device-pixel-ratio: 1.5) { | 60 @media (-webkit-min-device-pixel-ratio: 1.5) { |
60 .blocked-url .remove-button { | 61 .blocked-url .remove-button { |
61 background-image: url(Images/toolbarButtonGlyphs_2x.png); | 62 background-image: url(Images/toolbarButtonGlyphs_2x.png); |
62 } | 63 } |
63 } /* media */ | 64 } /* media */ |
64 | 65 |
65 .blocked-url:hover .remove-button { | 66 .blocked-url:hover .remove-button { |
66 visibility: visible; | 67 visibility: visible; |
67 } | 68 } |
68 | 69 |
69 .blocked-url .remove-button:hover { | 70 .blocked-url .remove-button:hover { |
70 opacity: 1.0; | 71 opacity: 1.0; |
71 } | 72 } |
OLD | NEW |