forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOutline.css
More file actions
125 lines (104 loc) · 2.27 KB
/
Copy pathOutline.css
File metadata and controls
125 lines (104 loc) · 2.27 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
.outline {
overflow-y: hidden;
}
.outline > div {
width: 100%;
position: relative;
}
.outline-pane-info {
padding: 0.5em;
width: 100%;
font-style: italic;
text-align: center;
user-select: none;
font-size: 12px;
overflow: hidden;
}
.outline-list {
margin: 0;
padding: 0 0 4px 0;
position: absolute;
top: 38px;
bottom: 25px;
left: 0;
right: 0;
list-style-type: none;
overflow: auto;
}
.outline-list__class-list {
margin: 0;
padding: 0;
list-style: none;
}
.outline-list__class-list > .outline-list__element {
padding-inline-start: 2rem;
}
.outline-list__class-list .function-signature .function-name {
color: var(--theme-highlight-green);
}
.outline-list .function-signature .paren {
color: inherit;
}
.outline-list__class h2 {
font-weight: normal;
font-size: 1em;
padding: 3px 0;
padding-inline-start: 10px;
color: var(--blue-55);
margin: 0;
}
.outline-list__class:not(:first-child) h2 {
margin-top: 12px;
}
.outline-list h2:hover {
background: var(--theme-toolbar-background-hover);
}
.theme-dark .outline-list h2 {
color: var(--theme-highlight-blue);
}
.outline-list h2 .keyword {
color: var(--theme-highlight-red);
}
.outline-list__element {
padding: 3px 10px 3px 10px;
cursor: default;
white-space: nowrap;
}
.outline-list > .outline-list__element {
padding-inline-start: 1rem;
}
.outline-list__element-icon {
padding-inline-end: 0.4rem;
}
.outline-list__element:hover {
background: var(--theme-toolbar-background-hover);
}
.outline-footer {
display: flex;
box-sizing: border-box;
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 25px;
background: var(--theme-body-background);
border-top: 1px solid var(--theme-splitter-color);
opacity: 1;
z-index: 1;
-moz-user-select: none;
user-select: none;
}
.theme-dark .outline-footer button {
color: var(--theme-body-color);
}
.outline-footer button.active {
background: var(--theme-highlight-blue);
color: #ffffff;
}
.theme-dark .outline-footer button.active {
background: var(--theme-selection-background);
color: #ffffff;
}