| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   44  |   44  | 
|   45 .blackbox-list-item { |   45 .blackbox-list-item { | 
|   46     padding: 3px 5px 3px 5px; |   46     padding: 3px 5px 3px 5px; | 
|   47     height: 30px; |   47     height: 30px; | 
|   48     display: flex; |   48     display: flex; | 
|   49     align-items: center; |   49     align-items: center; | 
|   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-list-item .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     overflow: hidden; | 
 |   60 } | 
 |   61  | 
 |   62 .blackbox-pattern { | 
|   59     flex: auto; |   63     flex: auto; | 
|   60     overflow: hidden; |  | 
|   61 } |   64 } | 
|   62  |   65  | 
|   63 .blackbox-list-item.blackbox-disabled .blackbox-pattern { |   66 .blackbox-list-item.blackbox-disabled .blackbox-pattern { | 
|   64     text-decoration: line-through; |   67     text-decoration: line-through; | 
|   65 } |   68 } | 
|   66  |   69  | 
|   67 .blackbox-behavior { |   70 .blackbox-behavior { | 
|   68     flex: 0 0 100px; |   71     flex: 0 0 100px; | 
|   69     padding-left: 10px; |   72     padding-left: 10px; | 
|   70 } |   73 } | 
| (...skipping 20 matching lines...) Expand all  Loading... | 
|   91     flex-direction: row; |   94     flex-direction: row; | 
|   92     margin: 6px 5px; |   95     margin: 6px 5px; | 
|   93     align-items: center; |   96     align-items: center; | 
|   94 } |   97 } | 
|   95  |   98  | 
|   96 .blackbox-edit-row input, |   99 .blackbox-edit-row input, | 
|   97 .blackbox-edit-row select { |  100 .blackbox-edit-row select { | 
|   98     width: 100%; |  101     width: 100%; | 
|   99     text-align: inherit; |  102     text-align: inherit; | 
|  100 } |  103 } | 
| OLD | NEW |