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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/uiList.css

Issue 2207283002: DevTools: make sidebar section headers wider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .list-item { 7 .list-item {
8 padding: 2px 8px 3px 8px; 8 padding: 2px 8px 3px 8px;
9 position: relative; 9 position: relative;
10 min-height: 18px; 10 min-height: 26px;
11 white-space: nowrap; 11 white-space: nowrap;
12 align-items: center;
13 display: flex;
12 } 14 }
13 15
14 .list-item:nth-of-type(2n) { 16 .list-item:nth-of-type(2n) {
15 background-color: #f8f8f8; 17 background-color: #f8f8f8;
16 } 18 }
17 19
18 .list-item.selected { 20 .list-item.selected {
19 background-color: #dadada; 21 background-color: #dadada;
20 } 22 }
21 23
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 .list-item.label .subtitle { 55 .list-item.label .subtitle {
54 font-style: italic; 56 font-style: italic;
55 font-weight: bold; 57 font-weight: bold;
56 color: #999; 58 color: #999;
57 } 59 }
58 60
59 .list-item.dimmed { 61 .list-item.dimmed {
60 opacity: 0.6; 62 opacity: 0.6;
61 font-style: italic; 63 font-style: italic;
62 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698