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