| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 /* TODO(dbeam): open up a CSS mixin instead in Polymer. */ | 123 /* TODO(dbeam): open up a CSS mixin instead in Polymer. */ |
| 124 #progress /deep/ #progressContainer { | 124 #progress /deep/ #progressContainer { |
| 125 border-radius: 2px; | 125 border-radius: 2px; |
| 126 } | 126 } |
| 127 | 127 |
| 128 #incognito { | 128 #incognito { |
| 129 -webkit-margin-end: 0; | 129 -webkit-margin-end: 0; |
| 130 -webkit-margin-start: 16px; | 130 -webkit-margin-start: 16px; |
| 131 /* This image is 128x128 so it'll work fine in 2x. */ | 131 /* This image is 128x128 so it'll work fine in 2x. */ |
| 132 content: url(../../../../ui/webui/resources/images/incognito_icon.png); | 132 content: url(../../../../ui/webui/resources/images/incognito_icon.png); |
| 133 width: 64px; | 133 width: 48px; |
| 134 } | 134 } |
| 135 | 135 |
| 136 #remove-wrapper { | 136 #remove-wrapper { |
| 137 align-self: flex-start; | 137 align-self: flex-start; |
| 138 margin: 0; | 138 margin: 0; |
| 139 } | 139 } |
| 140 | 140 |
| 141 #remove { | 141 #remove { |
| 142 --paper-icon-button: { | 142 --paper-icon-button: { |
| 143 height: 16px; | 143 height: 16px; |
| (...skipping 30 matching lines...) Expand all 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 |