| OLD | NEW |
| 1 /* Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 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 .icon-container { | 5 .favicon-image { |
| 6 -webkit-margin-end: 8px; | 6 -webkit-margin-end: 8px; |
| 7 background-repeat: no-repeat; |
| 8 background-size: contain; |
| 9 display: inline-block; |
| 10 height: 20px; |
| 11 vertical-align: middle; |
| 12 width: 20px; |
| 7 } | 13 } |
| 8 | 14 |
| 9 .name { | 15 .name { |
| 10 margin: auto; | 16 margin: auto; |
| 11 } | 17 } |
| 12 | 18 |
| 13 #container { | 19 #container { |
| 14 border-top: 1px solid lightgray; | 20 border-top: 1px solid lightgray; |
| 15 display: flex; | 21 display: flex; |
| 16 padding: 2px 0; | 22 padding: 2px 0; |
| 17 } | 23 } |
| 18 | 24 |
| 19 .dropdown-content { | 25 .dropdown-content { |
| 20 background: white; | 26 background: white; |
| 21 box-shadow: 0 2px 6px grey; | 27 box-shadow: 0 2px 6px grey; |
| 22 } | 28 } |
| 23 | 29 |
| 24 paper-item:hover { | 30 paper-item:hover { |
| 25 background-color: var(--settings-hover-color); | 31 background-color: var(--settings-hover-color); |
| 26 } | 32 } |
| 27 | 33 |
| 28 paper-icon-button { | 34 paper-icon-button { |
| 29 -webkit-padding-end: 0; | 35 -webkit-padding-end: 0; |
| 30 padding-bottom: var(--search-engines-list-item-vertical-space); | 36 padding-bottom: var(--search-engines-list-item-vertical-space); |
| 31 padding-top: var(--search-engines-list-item-vertical-space); | 37 padding-top: var(--search-engines-list-item-vertical-space); |
| 32 } | 38 } |
| OLD | NEW |