| 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 align-items: center; | 7 align-items: center; |
| 8 background: rgb(63, 85, 102); | 8 background: rgb(63, 85, 102); |
| 9 color: white; | 9 color: white; |
| 10 content-sizing: padding-box; | 10 content-sizing: padding-box; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #actions { | 29 #actions { |
| 30 display: flex; | 30 display: flex; |
| 31 flex: none; | 31 flex: none; |
| 32 width: var(--downloads-item-width); | 32 width: var(--downloads-item-width); |
| 33 } | 33 } |
| 34 | 34 |
| 35 :host(:not([downloads-showing])) #actions { | 35 :host(:not([downloads-showing])) #actions { |
| 36 justify-content: center; | 36 justify-content: center; |
| 37 } | 37 } |
| 38 | 38 |
| 39 #actions cr-button { | 39 #actions paper-button { |
| 40 -webkit-margin-end: 8px; | 40 -webkit-margin-end: 8px; |
| 41 } | 41 } |
| 42 | 42 |
| 43 #actions, | 43 #actions, |
| 44 #search-term { | 44 #search-term { |
| 45 color: rgb(192, 199, 205); | 45 color: rgb(192, 199, 205); |
| 46 } | 46 } |
| 47 | 47 |
| 48 #search { | 48 #search { |
| 49 -webkit-padding-end: 10px; | 49 -webkit-padding-end: 10px; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 display: none; | 130 display: none; |
| 131 } | 131 } |
| 132 } | 132 } |
| 133 | 133 |
| 134 @media all and (max-width: 1024px) { | 134 @media all and (max-width: 1024px) { |
| 135 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */ | 135 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */ |
| 136 #actions { | 136 #actions { |
| 137 display: none; | 137 display: none; |
| 138 } | 138 } |
| 139 } | 139 } |
| OLD | NEW |