-
Notifications
You must be signed in to change notification settings - Fork 4
/
driver.css
69 lines (56 loc) · 892 Bytes
/
driver.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
.source_div {
border-top: 1px solid black;
border-bottom: 1px solid black;
}
.heap_link {
color: black;
}
.file_item, .file_item_current {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
font-size: smaller;
margin-right: 3px;
padding: 3px;
text-decoration: underline;
}
.file_item, .file_item_current:hover {
cursor: pointer;
cursor: hand;
}
.file_item {
background-color: #FAFAFA;
}
.file_item_current {
background-color: #FFCCCC;
}
#main_table td {
vertical-align: top;
border: 1px solid black;
}
#action_output {
font-weight: bold;
color: red;
}
#disp_env {
margin-top: 0.5em;
}
#select_source_code {
width: 40em;
}
#disp_env_pane {
height: 100%;
}
.debug-selection {
background: #F3F781;
}
.scroll-pane
{
width: 100%;
height: 300px;
overflow: auto;
}
.hint {
display: none;
}