summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/devtools/front_end/sources/callStackSidebarPane.css
blob: c726005f9b8eb40fe7ce277674f6085e5713ecec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
 * Copyright 2016 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

.blackboxed-message {
    text-align: center;
    font-style: italic;
    padding: 4px;
    color: #888;
    background-color: #FFFFC2;
}

.blackboxed-message > .link {
    margin-left: 5px;
}

.show-more-message {
    text-align: center;
    font-style: italic;
    padding: 4px;
    border-top: 1px solid #d8d8d8;
}

.show-more-message > .link {
    margin-left: 5px;
}

.call-frame-item {
    padding: 3px 8px 3px 20px;
    position: relative;
    min-height: 18px;
    line-height: 15px;
    display: flex;
    flex-wrap: wrap;
}

.call-frame-title-text {
    text-overflow: ellipsis;
    overflow: hidden;
}

.call-frame-item:not(.async-header) {
    border-top: 1px solid #efefef;
}

.call-frame-item:not(.async-header):hover {
    background-color: #eee;
}

.async-header + .call-frame-item {
    border-top: 0;
}

.call-frame-item-title,
.call-frame-location {
    display: flex;
    white-space: nowrap;
}

.call-frame-location {
    color: #888;
    margin-left: auto;
    padding: 0 10px 0 10px;
}

.async-header::before {
    content: " ";
    width: 100%;
    border-top: 1px solid #d8d8d8;
    margin-top: 8px;
    position: absolute;
    z-index: -1;
    left: 0;
}

.async-header .call-frame-item-title {
    font-weight: bold;
    color: #999;
    background-color: white;
    margin-left: -5px;
    padding: 0 5px;
}

.blackboxed-call-frame {
    opacity: 0.6;
    font-style: italic;
}

.selected-call-frame-icon {
    display: none;
    position: absolute;
    top: 5px;
    left: 4px;
}

.call-frame-item.selected .selected-call-frame-icon {
    display: block;
}