| 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 .list { | 7 .list { |
| 8 border: none !important; | 8 border: none !important; |
| 9 border-top: 1px solid #dadada !important; | 9 border-top: 1px solid #dadada !important; |
| 10 } | 10 } |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 .blocked-url-edit-row { | 61 .blocked-url-edit-row { |
| 62 flex: none; | 62 flex: none; |
| 63 display: flex; | 63 display: flex; |
| 64 flex-direction: row; | 64 flex-direction: row; |
| 65 margin: 7px 5px 0 5px; | 65 margin: 7px 5px 0 5px; |
| 66 align-items: center; | 66 align-items: center; |
| 67 } | 67 } |
| 68 | 68 |
| 69 .blocked-url-edit-value { | 69 .blocked-url-edit-value { |
| 70 white-space: nowrap; | |
| 71 text-overflow: ellipsis; | |
| 72 -webkit-user-select: none; | 70 -webkit-user-select: none; |
| 73 color: #222; | |
| 74 flex: 1 1 0px; | 71 flex: 1 1 0px; |
| 75 overflow: hidden; | |
| 76 } | 72 } |
| 77 | 73 |
| 78 .blocked-url-edit-row input { | 74 .blocked-url-edit-row input { |
| 79 width: 100%; | 75 width: 100%; |
| 80 text-align: inherit; | 76 text-align: inherit; |
| 81 height: 22px; | 77 height: 22px; |
| 82 } | 78 } |
| OLD | NEW |