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

Side by Side Diff: chrome/browser/resources/settings/people_page/user_list.css

Issue 1813643002: [MD settings] icon color and sizing centralized (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 4 years, 9 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 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 .clear-icon {
6 color: #6e6e6e;
7 }
8
9 .clear-icon::shadow iron-icon {
10 height: 18px;
11 width: 18px;
12 }
13
14 .soft-border { 5 .soft-border {
15 border: 1px solid #c4c4c4; 6 border: 1px solid #c4c4c4;
16 border-radius: 2px; 7 border-radius: 2px;
17 } 8 }
18 9
19 .user { 10 .user {
20 -webkit-padding-end: 8px; 11 -webkit-padding-end: 8px;
21 -webkit-padding-start: 20px; 12 -webkit-padding-start: 20px;
22 font-size: 0.75em; 13 font-size: 0.75em;
23 height: 34px; 14 height: 34px;
24 } 15 }
25 16
26 .user:hover { 17 .user:hover {
27 background-color: #f0f0f0; 18 background-color: #f0f0f0;
28 } 19 }
29 20
30 .user-list { 21 .user-list {
31 border: 1px solid gray; 22 border: 1px solid gray;
32 height: 160px; 23 height: 160px;
33 overflow-y: auto; 24 overflow-y: auto;
34 padding: 10px 0; 25 padding: 10px 0;
35 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698