| 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 @apply(--downloads-shared-style); | |
| 7 display: flex; | 6 display: flex; |
| 8 margin: 24px 0; | 7 margin: 24px 0; |
| 9 } | 8 } |
| 10 | 9 |
| 11 :host([hide-date]) { | 10 :host([hide-date]) { |
| 12 margin-top: -12px; | 11 margin-top: -12px; |
| 13 } | 12 } |
| 14 | 13 |
| 15 :host(:first-of-type), | 14 :host(:first-of-type), |
| 16 :host(:not(:first-of-type):not([hide-date])) { | 15 :host(:not(:first-of-type):not([hide-date])) { |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 #content { | 214 #content { |
| 216 margin: 0 auto; | 215 margin: 0 auto; |
| 217 } | 216 } |
| 218 | 217 |
| 219 #date-container { | 218 #date-container { |
| 220 flex: none !important; | 219 flex: none !important; |
| 221 margin: 0 auto 16px; | 220 margin: 0 auto 16px; |
| 222 width: var(--downloads-item-width); | 221 width: var(--downloads-item-width); |
| 223 } | 222 } |
| 224 } | 223 } |
| OLD | NEW |