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

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

Issue 2238003002: DevTools: migrate sources panel sidebar to views. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed 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: 0 8px 0 0; 8 padding: 0 8px 0 0;
9 position: relative; 9 position: relative;
10 min-height: 18px; 10 min-height: 18px;
11 white-space: nowrap; 11 white-space: nowrap;
12 line-height: 20px; 12 line-height: 20px;
13 }
14
15 .list-item:not(:last-child) {
13 border-bottom: 1px solid #eee; 16 border-bottom: 1px solid #eee;
14 } 17 }
15 18
16 .list-item:not(.ignore-hover):hover { 19 .list-item:not(.ignore-hover):hover {
17 background-color: #eee; 20 background-color: #eee;
18 } 21 }
19 22
20 .list-item > .title { 23 .list-item > .title {
21 word-wrap: break-word; 24 word-wrap: break-word;
22 white-space: normal; 25 white-space: normal;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 left: 4px; 64 left: 4px;
62 width: 10px; 65 width: 10px;
63 height: 10px; 66 height: 10px;
64 } 67 }
65 68
66 @media (-webkit-min-device-pixel-ratio: 1.5) { 69 @media (-webkit-min-device-pixel-ratio: 1.5) {
67 .list-item.selected::before { 70 .list-item.selected::before {
68 background-image: url(Images/smallIcons_2x.png); 71 background-image: url(Images/smallIcons_2x.png);
69 } 72 }
70 } /* media */ 73 } /* media */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698