| 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 |
| 11 .toolbar { | 11 .toolbar { |
| 12 border-bottom: 1px solid #dadada; | 12 border-bottom: 1px solid #dadada; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .no-blocked-urls, .blocked-urls-list { | 15 .no-blocked-urls, .blocked-urls-list { |
| 16 font-size: 11px; | |
| 17 overflow-x: hidden; | 16 overflow-x: hidden; |
| 18 overflow-y: auto; | 17 overflow-y: auto; |
| 19 } | 18 } |
| 20 | 19 |
| 21 .no-blocked-urls { | 20 .no-blocked-urls { |
| 22 display: flex; | 21 display: flex; |
| 23 justify-content: center; | 22 justify-content: center; |
| 24 padding: 3px; | 23 padding: 3px; |
| 25 } | 24 } |
| 26 | 25 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 visibility: hidden; | 67 visibility: hidden; |
| 69 } | 68 } |
| 70 | 69 |
| 71 .blocked-url .remove-icon:hover { | 70 .blocked-url .remove-icon:hover { |
| 72 opacity: 1.0; | 71 opacity: 1.0; |
| 73 } | 72 } |
| 74 | 73 |
| 75 .blocked-url:hover .remove-icon { | 74 .blocked-url:hover .remove-icon { |
| 76 visibility: visible; | 75 visibility: visible; |
| 77 } | 76 } |
| OLD | NEW |