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

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

Issue 1176343002: DevTools: make toolbar button click targets square (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments addressed Created 5 years, 6 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 | Annotate | Revision Log
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: 3px 8px 4px 8px; 8 padding: 2px 8px 3px 8px;
9 position: relative; 9 position: relative;
10 min-height: 18px; 10 min-height: 18px;
11 white-space: nowrap; 11 white-space: nowrap;
12 } 12 }
13 13
14 .list-item:nth-of-type(2n) { 14 .list-item:nth-of-type(2n) {
15 background-color: #f8f8f8; 15 background-color: #f8f8f8;
16 } 16 }
17 17
18 .list-item.selected { 18 .list-item.selected {
19 background-color: rgb(212, 212, 212); 19 background-color: #dadada;
20 } 20 }
21 21
22 .list-item.selected > .title { 22 .list-item.selected > .title {
23 font-weight: bold; 23 font-weight: bold;
24 } 24 }
25 25
26 .list-item:hover { 26 .list-item:hover {
27 background-color: #eee; 27 background-color: #eee;
28 } 28 }
29 29
(...skipping 23 matching lines...) Expand all
53 .list-item.label .subtitle { 53 .list-item.label .subtitle {
54 font-style: italic; 54 font-style: italic;
55 font-weight: bold; 55 font-weight: bold;
56 color: #999; 56 color: #999;
57 } 57 }
58 58
59 .list-item.dimmed { 59 .list-item.dimmed {
60 opacity: 0.6; 60 opacity: 0.6;
61 font-style: italic; 61 font-style: italic;
62 } 62 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sources/sourcesView.css ('k') | Source/devtools/front_end/timeline/TimelinePanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698