| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 color: rgb(35, 114, 236); | 85 color: rgb(35, 114, 236); |
| 86 } | 86 } |
| 87 | 87 |
| 88 #tag { | 88 #tag { |
| 89 color: #6f6f6f; | 89 color: #6f6f6f; |
| 90 font-size: 92.307%; | 90 font-size: 92.307%; |
| 91 font-weight: bold; | 91 font-weight: bold; |
| 92 } | 92 } |
| 93 | 93 |
| 94 #url { | 94 #url { |
| 95 color: rgb(88, 152, 251); | 95 color: rgb(51, 103, 214); |
| 96 margin-top: 6px; | 96 margin-top: 6px; |
| 97 overflow: hidden; | 97 overflow: hidden; |
| 98 text-decoration: none; | 98 text-decoration: none; |
| 99 text-overflow: ellipsis; | 99 text-overflow: ellipsis; |
| 100 white-space: nowrap; | 100 white-space: nowrap; |
| 101 } | 101 } |
| 102 | 102 |
| 103 #progress, | 103 #progress, |
| 104 #description:not(:empty), | 104 #description:not(:empty), |
| 105 .controls { | 105 .controls { |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 #content { | 174 #content { |
| 175 margin: 0 auto; | 175 margin: 0 auto; |
| 176 } | 176 } |
| 177 | 177 |
| 178 #date-container { | 178 #date-container { |
| 179 flex: none !important; | 179 flex: none !important; |
| 180 margin: 0 auto 32px; | 180 margin: 0 auto 32px; |
| 181 width: var(--downloads-item-width); | 181 width: var(--downloads-item-width); |
| 182 } | 182 } |
| 183 } | 183 } |
| OLD | NEW |