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

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

Issue 2273083002: [MD settings] using h2 for sub-headers consistently. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review changes Created 4 years, 3 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 .favicon-image { 5 .favicon-image {
6 -webkit-margin-end: 8px; 6 -webkit-margin-end: 8px;
7 background-repeat: no-repeat; 7 background-repeat: no-repeat;
8 background-size: contain; 8 background-size: contain;
9 display: inline-block; 9 display: inline-block;
10 height: 20px; 10 height: 20px;
11 vertical-align: middle; 11 vertical-align: middle;
12 width: 20px; 12 width: 20px;
13 } 13 }
14 14
15 .name { 15 .name {
16 margin: auto; 16 margin: auto;
17 } 17 }
18 18
19 #container {
20 border-top: 1px solid lightgray;
21 display: flex;
22 padding: 2px 0;
23 }
24
25 .dropdown-content { 19 .dropdown-content {
26 background: white; 20 background: white;
27 box-shadow: 0 2px 6px grey; 21 box-shadow: 0 2px 6px grey;
28 } 22 }
29 23
30 paper-icon-button { 24 paper-icon-button {
31 -webkit-padding-end: 0; 25 -webkit-padding-end: 0;
32 padding-bottom: var(--search-engines-list-item-vertical-space);
33 padding-top: var(--search-engines-list-item-vertical-space);
34 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698