| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 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 :host { | 7 :host { |
| 8 overflow:hidden; | 8 overflow:hidden; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 position: relative; | 50 position: relative; |
| 51 flex: auto 1 1; | 51 flex: auto 1 1; |
| 52 } | 52 } |
| 53 | 53 |
| 54 .blackbox-pattern { | 54 .blackbox-pattern { |
| 55 white-space: nowrap; | 55 white-space: nowrap; |
| 56 text-overflow: ellipsis; | 56 text-overflow: ellipsis; |
| 57 -webkit-user-select: none; | 57 -webkit-user-select: none; |
| 58 color: #222; | 58 color: #222; |
| 59 flex: auto; | 59 flex: auto; |
| 60 overflow: hidden; | |
| 61 } | 60 } |
| 62 | 61 |
| 63 .blackbox-list-item.blackbox-disabled .blackbox-pattern { | 62 .blackbox-list-item.blackbox-disabled .blackbox-pattern { |
| 64 text-decoration: line-through; | 63 text-decoration: line-through; |
| 65 } | 64 } |
| 66 | 65 |
| 67 .blackbox-behavior { | 66 .blackbox-behavior { |
| 68 flex: 0 0 100px; | 67 flex: 0 0 100px; |
| 69 padding-left: 10px; | 68 padding-left: 10px; |
| 70 } | 69 } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 91 flex-direction: row; | 90 flex-direction: row; |
| 92 margin: 6px 5px; | 91 margin: 6px 5px; |
| 93 align-items: center; | 92 align-items: center; |
| 94 } | 93 } |
| 95 | 94 |
| 96 .blackbox-edit-row input, | 95 .blackbox-edit-row input, |
| 97 .blackbox-edit-row select { | 96 .blackbox-edit-row select { |
| 98 width: 100%; | 97 width: 100%; |
| 99 text-align: inherit; | 98 text-align: inherit; |
| 100 } | 99 } |
| OLD | NEW |