| 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 .icon-container { |
| 6 -webkit-margin-end: 8px; | 6 -webkit-margin-end: 8px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 .name { | 9 .name { |
| 10 margin: auto; | 10 margin: auto; |
| 11 } | 11 } |
| 12 | 12 |
| 13 #container { | 13 #container { |
| 14 border-top: 1px solid lightgray; | 14 border-top: 1px solid lightgray; |
| 15 display: flex; | 15 display: flex; |
| 16 padding: 2px 0; | 16 padding: 2px 0; |
| 17 } | 17 } |
| 18 | 18 |
| 19 .dropdown-content { | 19 .dropdown-content { |
| 20 background: white; | 20 background: white; |
| 21 box-shadow: 0 2px 6px grey; | 21 box-shadow: 0 2px 6px grey; |
| 22 } | 22 } |
| 23 | 23 |
| 24 paper-item:hover { | 24 paper-item:hover { |
| 25 background-color: #f0f0f0; | 25 background-color: var(--settings-hover-color); |
| 26 } | 26 } |
| 27 | 27 |
| 28 paper-icon-button { | 28 paper-icon-button { |
| 29 -webkit-padding-end: 0; | 29 -webkit-padding-end: 0; |
| 30 padding-bottom: var(--search-engines-list-item-vertical-space); | 30 padding-bottom: var(--search-engines-list-item-vertical-space); |
| 31 padding-top: var(--search-engines-list-item-vertical-space); | 31 padding-top: var(--search-engines-list-item-vertical-space); |
| 32 } | 32 } |
| OLD | NEW |