-
Notifications
You must be signed in to change notification settings - Fork 0
/
mytracer.css
62 lines (50 loc) · 1.39 KB
/
mytracer.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
#codes {display: none}
.toggler.recursive { width:25px; text-align: center; }
.line.visited {background: rgba(255,255,0,0.1); }
.inlined { display:none;
border:1px silver solid;
}
.code { font-family: monospace; }
.line-code { font-family: monospace; white-space: pre;}
.watches { background: white ;
border: 1px dotted green;
overflow-y: auto;
position: relative;
height: 80px;
display: none;
resize: both;
}
.button{
display: inline-block;
/* background: #ff0;
padding: 8px 12px;
*/
border: 1px solid silver;
border-radius: 4px;
cursor: pointer;
}
.watch-toggler { background-color: lightgreen }
.toggler, .toggler.closed { background-color: yellow; }
.toggler.opened { background-color: transparent; }
.mini_controlls_panel { float: right }
/************* Tooltip ************/
/* https://stackoverflow.com/a/39362586/4217317 */
.tooltip {
position:absolute;
float:right;
display:none;
z-index:1000;
border: 1px solid #AB4141;
background-color: white;
white-space: nowrap;
/*
width:350px;
background-color:#CB5757;
color:white;
padding:15px 20px;
box-shadow: 0px 3px 2px #8D8D8D;
border-radius: 6px;
*/
}
/************* table for watches ************/
/* https://stackoverflow.com/a/25902860/4217317 */