| 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-direction: column; | 7 flex-direction: column; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #date { | 10 #date { |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 #content:not(.is-active) .icon { | 82 #content:not(.is-active) .icon { |
| 83 -webkit-filter: grayscale(100%); | 83 -webkit-filter: grayscale(100%); |
| 84 opacity: .5; | 84 opacity: .5; |
| 85 } | 85 } |
| 86 | 86 |
| 87 #danger-icon { | 87 #danger-icon { |
| 88 height: 32px; | 88 height: 32px; |
| 89 width: 32px; | 89 width: 32px; |
| 90 } | 90 } |
| 91 | 91 |
| 92 #danger-icon[icon='warning'] { | 92 #danger-icon[icon='downloads:warning'] { |
| 93 color: rgb(255, 193, 7); | 93 color: rgb(255, 193, 7); |
| 94 } | 94 } |
| 95 | 95 |
| 96 #danger-icon[icon='remove-circle'] { | 96 #danger-icon[icon='downloads:remove-circle'] { |
| 97 color: rgb(244, 67, 54); | 97 color: rgb(244, 67, 54); |
| 98 } | 98 } |
| 99 | 99 |
| 100 #name, | 100 #name, |
| 101 #file-link, | 101 #file-link, |
| 102 #url { | 102 #url { |
| 103 max-width: 100%; | 103 max-width: 100%; |
| 104 } | 104 } |
| 105 | 105 |
| 106 #name, | 106 #name, |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 } | 204 } |
| 205 | 205 |
| 206 #incognito { | 206 #incognito { |
| 207 bottom: 20px; | 207 bottom: 20px; |
| 208 content: -webkit-image-set( | 208 content: -webkit-image-set( |
| 209 url(chrome://downloads/1x/incognito_marker.png) 1x, | 209 url(chrome://downloads/1x/incognito_marker.png) 1x, |
| 210 url(chrome://downloads/2x/incognito_marker.png) 2x); | 210 url(chrome://downloads/2x/incognito_marker.png) 2x); |
| 211 position: absolute; | 211 position: absolute; |
| 212 right: 10px; | 212 right: 10px; |
| 213 } | 213 } |
| OLD | NEW |