| 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 27 matching lines...) Expand all Loading... |
| 38 } | 38 } |
| 39 | 39 |
| 40 #search-term { | 40 #search-term { |
| 41 --paper-input-container-color: rgba(255, 255, 255, .5); | 41 --paper-input-container-color: rgba(255, 255, 255, .5); |
| 42 --paper-input-container-focus-color: white; | 42 --paper-input-container-focus-color: white; |
| 43 --paper-input-container-input: { | 43 --paper-input-container-input: { |
| 44 font-family: inherit; | 44 font-family: inherit; |
| 45 font-size: 14px; | 45 font-size: 14px; |
| 46 }; | 46 }; |
| 47 --paper-input-container-input-color: white; | 47 --paper-input-container-input-color: white; |
| 48 --paper-input-container-label: { | |
| 49 font-family: inherit; | |
| 50 font-size: 14px; | |
| 51 }; | |
| 52 -webkit-margin-end: 8px; | 48 -webkit-margin-end: 8px; |
| 53 z-index: 0; | 49 z-index: 0; |
| 54 } | 50 } |
| 55 | 51 |
| 56 #search-term input[type='search']::-webkit-search-cancel-button, | 52 #search-term input[type='search']::-webkit-search-cancel-button, |
| 57 #search-term input[type='search']::-webkit-search-results-button { | 53 #search-term input[type='search']::-webkit-search-results-button { |
| 58 -webkit-appearance: none; | 54 -webkit-appearance: none; |
| 59 } | 55 } |
| 60 | 56 |
| 61 #search-term paper-icon-button { | 57 #search-term paper-icon-button { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 display: none; | 125 display: none; |
| 130 } | 126 } |
| 131 } | 127 } |
| 132 | 128 |
| 133 @media all and (max-width: 1024px) { | 129 @media all and (max-width: 1024px) { |
| 134 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */ | 130 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */ |
| 135 #actions { | 131 #actions { |
| 136 display: none; | 132 display: none; |
| 137 } | 133 } |
| 138 } | 134 } |
| OLD | NEW |