| 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); | 6 @apply(--downloads-shared-style); |
| 7 display: flex; | 7 display: flex; |
| 8 margin: 32px 0; | 8 margin: 32px 0; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 :host([hide-date]) #date-container { | 26 :host([hide-date]) #date-container { |
| 27 visibility: hidden; | 27 visibility: hidden; |
| 28 } | 28 } |
| 29 | 29 |
| 30 #content { | 30 #content { |
| 31 background: white; | 31 background: white; |
| 32 border-radius: 2px; /* TODO(dbeam): why does this differ from Polymer? */ | 32 border-radius: 2px; /* TODO(dbeam): why does this differ from Polymer? */ |
| 33 display: flex; | 33 display: flex; |
| 34 flex: none; | 34 flex: none; |
| 35 min-height: 96px; |
| 35 width: var(--downloads-item-width); | 36 width: var(--downloads-item-width); |
| 36 } | 37 } |
| 37 | 38 |
| 38 #content.no-file { | 39 #content.no-file { |
| 39 background: rgba(255, 255, 255, .5); | 40 background: rgba(255, 255, 255, .5); |
| 40 } | 41 } |
| 41 | 42 |
| 42 .no-file .icon-wrapper:not(#remove-wrapper), | 43 .no-file .icon-wrapper:not(#remove-wrapper), |
| 43 .no-file #details { | 44 .no-file #details { |
| 44 opacity: .5; | 45 opacity: .5; |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 #content { | 182 #content { |
| 182 margin: 0 auto; | 183 margin: 0 auto; |
| 183 } | 184 } |
| 184 | 185 |
| 185 #date-container { | 186 #date-container { |
| 186 flex: none !important; | 187 flex: none !important; |
| 187 margin: 0 auto 32px; | 188 margin: 0 auto 32px; |
| 188 width: var(--downloads-item-width); | 189 width: var(--downloads-item-width); |
| 189 } | 190 } |
| 190 } | 191 } |
| OLD | NEW |