| 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 |
| 11 .header { | 11 .header { |
| 12 padding: 0 0 6px; | 12 padding: 0 0 6px; |
| 13 border-bottom: 1px solid #EEEEEE; | 13 border-bottom: 1px solid #EEEEEE; |
| 14 font-size: 18px; | 14 font-size: 18px; |
| 15 font-weight: normal; | 15 font-weight: normal; |
| 16 flex: none; | 16 flex: none; |
| 17 } | 17 } |
| 18 | 18 |
| 19 .add-conditions-button { | 19 .add-conditions-button { |
| 20 flex: none; | 20 flex: none; |
| 21 margin: 10px 0; | 21 margin: 10px 2px; |
| 22 min-width: 140px; | 22 min-width: 140px; |
| 23 align-self: flex-start; | 23 align-self: flex-start; |
| 24 } | 24 } |
| 25 | 25 |
| 26 .conditions-list { | 26 .conditions-list { |
| 27 max-width: 500px; | 27 max-width: 500px; |
| 28 min-width: 340px; | 28 min-width: 340px; |
| 29 flex: auto; | 29 flex: auto; |
| 30 } | 30 } |
| 31 | 31 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 width: 100%; | 85 width: 100%; |
| 86 text-align: inherit; | 86 text-align: inherit; |
| 87 } | 87 } |
| 88 | 88 |
| 89 .conditions-edit-optional { | 89 .conditions-edit-optional { |
| 90 position: absolute; | 90 position: absolute; |
| 91 bottom: -20px; | 91 bottom: -20px; |
| 92 right: 0; | 92 right: 0; |
| 93 color: rgb(128, 128, 128); | 93 color: rgb(128, 128, 128); |
| 94 } | 94 } |
| OLD | NEW |