-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
60 lines (60 loc) · 821 Bytes
/
style.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
/*
* Render a tree of objects
*
* @package Task
* @author Vallo Reima
* @copyright (C)2015
*/
html, body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 100%;
overflow: auto;
}
.tree {
margin-left: 1em;
}
.command {
margin-bottom: 1em;
}
.command button {
}
.enabled:hover {
cursor: pointer;
}
.tree ul {
list-style: none;
margin-top: 0.5em;
padding: 0;
}
.tree li {
padding-top: 0.25em;
}
.tree img:hover {
cursor: pointer;
}
.tree ul li {
font-size: 0.93em;
}
.tree ul ul {
display: none;
}
.tree ul ul li {
margin-left: 1.0em;
}
.tree img {
margin-right: 0.3em;
}
.tree span {
color: black;
text-decoration: none;
}
.tree span:hover{
background-color: #dddddd;
cursor: default;
}
.selected{
background-color: #cccccc;
}
.hide{
display:none;
}