OLD | NEW |
(Empty) | |
| 1 /* |
| 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 |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 .toolbar { |
| 8 border-bottom: 1px solid #dadada; |
| 9 } |
| 10 |
| 11 .no-blocked-urls, .blocked-urls-list { |
| 12 font-size: 11px; |
| 13 overflow-x: hidden; |
| 14 overflow-y: auto; |
| 15 } |
| 16 |
| 17 .no-blocked-urls { |
| 18 display: flex; |
| 19 justify-content: center; |
| 20 padding: 3px; |
| 21 } |
| 22 |
| 23 .blocked-url { |
| 24 flex: none; |
| 25 display: flex; |
| 26 align-items: center; |
| 27 padding: 3px 10px 3px 9px; |
| 28 } |
| 29 |
| 30 .blocked-url:hover { |
| 31 background-color: #dadada; |
| 32 } |
| 33 |
| 34 .blocked-url .blocked-count { |
| 35 flex: 30px 0 0; |
| 36 font-size: smaller !important; |
| 37 padding-right: 5px; |
| 38 } |
| 39 |
| 40 .blocked-url-text { |
| 41 white-space: nowrap; |
| 42 text-overflow: ellipsis; |
| 43 overflow: hidden; |
| 44 flex: auto; |
| 45 } |
| 46 |
| 47 .blocked-url .remove-button { |
| 48 width: 13px; |
| 49 height: 13px; |
| 50 background-image: url(Images/toolbarButtonGlyphs.png); |
| 51 background-size: 352px 168px; |
| 52 background-position: -175px -96px; |
| 53 visibility: hidden; |
| 54 flex: none; |
| 55 opacity: 0.7; |
| 56 cursor: default; |
| 57 } |
| 58 |
| 59 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 60 .blocked-url .remove-button { |
| 61 background-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 62 } |
| 63 } /* media */ |
| 64 |
| 65 .blocked-url:hover .remove-button { |
| 66 visibility: visible; |
| 67 } |
| 68 |
| 69 .blocked-url .remove-button:hover { |
| 70 opacity: 1.0; |
| 71 } |
OLD | NEW |