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

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

Issue 2609653002: [DevTools] Migrate CallStackSidebarPane to UI.ListControl. (Closed)
Patch Set: comments addressed, more fixes Created 3 years, 11 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
(Empty)
1 /*
2 * Copyright 2016 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 .blackboxed-message {
8 text-align: center;
9 font-style: italic;
10 padding: 4px;
11 color: #888;
12 background-color: #FFFFC2;
13 }
14
15 .blackboxed-message > .link {
16 margin-left: 5px;
17 }
18
19 .call-frame-item {
20 padding: 3px 8px 3px 20px;
21 position: relative;
22 min-height: 18px;
23 line-height: 15px;
24 display: flex;
25 flex-wrap: wrap;
26 }
27
28 .call-frame-item:not(.async-header) {
29 border-top: 1px solid #efefef;
30 }
31
32 .call-frame-item:not(.async-header):hover {
33 background-color: #eee;
34 }
35
36 .async-header + .call-frame-item {
37 border-top: 0;
38 }
39
40 .call-frame-item-title,
41 .call-frame-location {
42 text-overflow: ellipsis;
43 overflow: hidden;
44 white-space: nowrap;
45 }
46
47 .call-frame-location {
48 color: #888;
49 margin-left: auto;
50 padding: 0 10px 0 10px;
51 }
52
53 .async-header::before {
54 content: " ";
55 width: 100%;
56 border-top: 1px solid #d8d8d8;
57 margin-top: 8px;
58 position: absolute;
59 z-index: -1;
60 left: 0;
61 }
62
63 .async-header .call-frame-item-title {
64 font-weight: bold;
65 color: #999;
66 background-color: white;
67 margin-left: -5px;
68 padding: 0 5px;
69 }
70
71 .blackboxed-call-frame {
72 opacity: 0.6;
73 font-style: italic;
74 }
75
76 .selected-call-frame-icon {
77 display: none;
78 position: absolute;
79 top: 5px;
80 left: 4px;
81 }
82
83 .call-frame-item.selected .selected-call-frame-icon {
84 display: block;
85 }
86
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698