| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright 2014 The Chromium Authors. All rights reserved. | 2 Copyright 2014 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 display: {{ model.list.length ? 'block' : 'none' }}; | 8 display: {{ model._list.length ? 'block' : 'none' }}; |
| 9 } | 9 } |
| 10 | 10 |
| 11 :root { | 11 :root { |
| 12 font-family: RobotoDraft, sans-serif; | 12 font-family: RobotoDraft, sans-serif; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .shadow-box { | 15 .shadow-box { |
| 16 margin: 20px; | 16 margin: 20px; |
| 17 } | 17 } |
| 18 | 18 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 49 | 49 |
| 50 .item-rows { | 50 .item-rows { |
| 51 max-height: 80vh; | 51 max-height: 80vh; |
| 52 overflow-y: scroll; | 52 overflow-y: scroll; |
| 53 } | 53 } |
| 54 | 54 |
| 55 .row { | 55 .row { |
| 56 /* Hacky way to accommodate for scrollbar in item rows. */ | 56 /* Hacky way to accommodate for scrollbar in item rows. */ |
| 57 margin-right: 16px; | 57 margin-right: 16px; |
| 58 } | 58 } |
| OLD | NEW |