-
Notifications
You must be signed in to change notification settings - Fork 0
/
chrometools.css
142 lines (139 loc) · 2.77 KB
/
chrometools.css
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#chrome-tabs {
position: relative;
max-height: 300px;
overflow: auto;
}
#chrome-tabs li {height: 30px; text-overflow: ellipsis; max-width: 100%; white-space: nowrap; overflow: hidden;}
#chrome-tabs img {
position: relative;
top: 5px;
max-height: 20px; width:20px;
margin-right: 10px;
}
.reconnect-chrome {
position: absolute; top: 0; z-index: 5;
padding: 0 5px;
}
.reconnect-chrome span {
padding: 0 5px;
}
.breakpoint-paused .CodeMirror-linebackground,
.breakpoint.breakpoint-paused .CodeMirror-linenumber{
background-color: red;
opacity: 0.5;
}
.breakpoint.breakpoint-paused .breakpoint-icon {
border-left-color: red;
}
.breakpoint {
/* color: red;
background-color: #df7070;
width: 40px;
position:absolute;
left:-30px;
opacity: 0.5;*/
}
.breakpoint .CodeMirror-linenumber{
background-color: #6d88ff;
color: white;
opacity: 0.5
}
.breakpoint-icon {
opacity: 0.5;
width: 0;
height: 0;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-left: 10px solid #6d88ff;
}
.debug-panel h1 {
display: inline-block;
padding-right: 10px;
}
.debug-panel .controls{
display: inline-block;
}
.debug-panel .call-frames > div {
border-bottom: 1px dotted;
padding-bottom :2px;
}
.debug-panel .call-frames div.selected {
border-bottom: 1px solid;
}
.debug-panel .call-frames div.selected:before {
content: "➤";
position: absolute;
left: 2px;
padding-top: 3px;
font-size: smaller;
}
.debug-panel > div > div > h2 {
text-decoration: underline;
font-weight: bold;
}
.unpaused .controls .stepover, .unpaused .controls .stepinto, .unpaused .controls .stepout {
display: none;
}
.call-stack, .variables {
padding-bottom :10px;
}
.unpaused .call-stack, .unpaused .variables, .unpaused .debug-editor {
display: none;
}
.call-stack .source, .call-stack .frame-name {
display: inline-block;
}
.call-stack .source {
float: right;
}
.call-stack .source-line:before, .call-stack .source-col:before {
content: ":";
}
.call-stack .source-col {
display: none;
}
.debug-panel .reconnect-button {
display: none;
}
.debug-panel .disconnected .controls button { display: none; }
.debug-panel .reconnect-available .controls .reconnect-button {
display: inherit;
}
/*
.debug-panel {
position: absolute;
right: 0px;
top: 0px;
width: auto;
min-width: 300px;
max-width: 50%;
padding: 10px;
background-color: ;
border-radius: 10px;
z-index:99;
overflow: scroll;
max-height: 100%;
}
.debug-panel h1 {
float: left;
}
.debug-panel .controls {
float: left;
margin-left: 20px;
}
.debug-panel .scope-variables, .debug-panel h2 {
clear: both;
}
.debug-panel > h2 {
text-decoration: underline;
}
.call-frames {
clear: both;
}
.call-frames.empty {
display: none;
}
.call-frames, .scope-variables {
padding: 10px;
}
*/