forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectSearch.css
More file actions
47 lines (41 loc) · 932 Bytes
/
ProjectSearch.css
File metadata and controls
47 lines (41 loc) · 932 Bytes
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
.search-container {
position: absolute;
top: 30px;
left: 0;
width: calc(100% - 1px);
height: calc(100% - 31px);
display: flex;
flex-direction: column;
z-index: 200;
background-color: var(--theme-body-background);
overflow-y: auto;
}
.searchinput-container {
display: flex;
border-bottom: 1px solid var(--theme-splitter-color);
}
.theme-dark .result-list li .subtitle {
color: var(--theme-comment-alt);
}
.toggle-search {
background-color: var(--theme-toolbar-background);
border-bottom: 1px solid var(--theme-splitter-color);
color: var(--theme-comment-alt);
display: flex;
flex-shrink: 0;
justify-content: flex-start;
line-height: 40px;
padding: 0 13px;
width: calc(100% - 1px);
}
.toggle-search .title {
font-weight: 500;
font-size: 120%;
}
.toggle-search .text {
margin-left: 1em;
}
.toggle-search .active {
color: var(--theme-selection-background);
cursor: default;
}