forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSources.css
More file actions
118 lines (100 loc) · 2.3 KB
/
Copy pathSources.css
File metadata and controls
118 lines (100 loc) · 2.3 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
.sources-panel {
background-color: var(--theme-sidebar-background);
display: flex;
flex: 1;
flex-direction: column;
overflow: hidden;
position: relative;
}
.sources-panel * {
-moz-user-select: none;
user-select: none;
}
.sources-list {
flex: 1;
display: flex;
overflow-x: hidden;
overflow-y: auto;
}
.sources-list .managed-tree {
flex: 1;
display: flex;
overflow-x: hidden;
overflow-y: auto;
}
.sources-list .managed-tree .tree .node {
padding: 0px 0px 0px 3px;
}
.sources-list .tree .arrow svg {
margin-top: 0px;
}
.theme-dark .sources-list .tree .node:not(.focused) svg {
fill: var(--theme-content-color3);
}
.theme-dark .source-list .tree .node.focused {
background-color: var(--theme-tab-toolbar-background);
}
.sources-list .tree .focused .label {
background-color: var(--theme-selection-background);
}
.sources-list .tree .label {
padding: 3px 0px 3px 0px;
display: inline-block;
}
.no-sources-message {
font-size: 12px;
color: var(--theme-comment-alt);
font-weight: lighter;
padding-top: 5px;
flex-grow: 1;
display: flex;
justify-content: center;
align-items: center;
}
.sources-panel .outline {
display: flex;
flex: 1;
}
.source-outline-tabs {
width: 100%;
background: var(--theme-body-background);
border-top: 1px solid var(--theme-splitter-color);
display: flex;
-moz-user-select: none;
user-select: none;
box-sizing: border-box;
}
.source-outline-tabs .tab {
flex: 1;
justify-content: center;
border-bottom: 1px solid transparent;
border-left: 1px solid transparent;
display: inline-flex;
position: relative;
transition: all 0.25s ease;
overflow: hidden;
padding: 6.5px;
margin-bottom: 0px;
margin-top: -1px;
cursor: default;
}
.source-outline-tabs .tab:first-child {
border-left: 0;
}
.source-outline-tabs .tab:hover {
background-color: var(--theme-toolbar-background-alt);
border-color: var(--theme-splitter-color);
}
.source-outline-tabs .tab {
color: var(--theme-body-color);
background-color: var(--theme-toolbar-background);
border-color: var(--theme-splitter-color);
}
.source-outline-tabs .tab.active {
background-color: var(--theme-body-background);
border-bottom-color: transparent;
}
.source-outline-tabs .tab.active path,
.source-outline-tabs .tab:hover path {
fill: var(--theme-body-color);
}