| 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); | |
| 7 align-items: center; | 6 align-items: center; |
| 8 background: rgb(63, 85, 102); | 7 background: rgb(63, 85, 102); |
| 9 color: white; | 8 color: white; |
| 10 content-sizing: padding-box; | 9 content-sizing: padding-box; |
| 11 display: flex; | 10 display: flex; |
| 12 height: 56px; | 11 height: 56px; |
| 13 } | 12 } |
| 14 | 13 |
| 15 #title, | 14 #title, |
| 16 #search { | 15 #search { |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 display: none; | 129 display: none; |
| 131 } | 130 } |
| 132 } | 131 } |
| 133 | 132 |
| 134 @media all and (max-width: 1024px) { | 133 @media all and (max-width: 1024px) { |
| 135 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */ | 134 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */ |
| 136 #actions { | 135 #actions { |
| 137 display: none; | 136 display: none; |
| 138 } | 137 } |
| 139 } | 138 } |
| OLD | NEW |