| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 :host { | 5 :host { |
| 6 display: flex; | 6 display: flex; |
| 7 flex: 1 0; | 7 flex: 1 0; |
| 8 flex-direction: column; | 8 flex-direction: column; |
| 9 height: 100%; | 9 height: 100%; |
| 10 } | 10 } |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #no-downloads { | 38 #no-downloads { |
| 39 align-items: center; | 39 align-items: center; |
| 40 color: #b4b4b4; | 40 color: #b4b4b4; |
| 41 display: flex; | 41 display: flex; |
| 42 font-size: 123.1%; | 42 font-size: 123.1%; |
| 43 font-weight: 500; | 43 font-weight: 500; |
| 44 justify-content: center; | 44 justify-content: center; |
| 45 } | 45 } |
| 46 | 46 |
| 47 #no-downloads .illustration { | 47 #no-downloads .illustration { |
| 48 background: -webkit-image-set(url(1x/no_downloads.png) 1x, | 48 background: -webkit-image-set( |
| 49 url(2x/no_downloads.png) 2x) | 49 url(chrome://downloads/1x/no_downloads.png) 1x, |
| 50 no-repeat center center; | 50 url(chrome://downloads/2x/no_downloads.png) 2x) no-repeat center center; |
| 51 height: 144px; /* Matches natural image height. */ | 51 height: 144px; /* Matches natural image height. */ |
| 52 margin-bottom: 32px; | 52 margin-bottom: 32px; |
| 53 } | 53 } |
| OLD | NEW |