Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: chrome/browser/resources/settings/search_engines_page/search_engine_entry.css

Issue 1918053002: MD Settings: Search engines, use favicon cache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Handle missing iconURL case. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698