-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathjquery.orgchart.css
More file actions
99 lines (84 loc) · 2.34 KB
/
jquery.orgchart.css
File metadata and controls
99 lines (84 loc) · 2.34 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
div.orgChart {
border : 1px solid #cccccc;
background-color : #ffffe8;
margin : 10px;
padding : 20px;
}
div.orgChart h2 {
margin : 0px;
font-size : 1em;
border-bottom : none;
}
div.orgChart ul {
list-style : none;
margin : 4px;
padding : 0px;
font-size : 0.8em;
text-align : left;
}
div.orgChart ul.stack,
div.orgChart ul.stack ul {
text-align : center;
}
div.orgChart table {
width : 100%;
}
div.orgChart tr.lines td.line {
width : 1px;
height : 20px;
}
div.orgChart tr.lines td.top {
border-top : 3px solid black;
}
div.orgChart tr.lines td.left {
border-right : 2px solid black;
}
div.orgChart tr.lines td.right {
border-left : 2px solid black;
}
div.orgChart td {
text-align : center;
vertical-align : top;
padding : 0px 2px;
}
div.orgChart div.node {
cursor : default;
border : 2px solid black;
display : inline-block;
padding : 0 4px;
width : 96px;
height : 60px;
background-color : #ffffcf;
line-height : 1.3em;
border-radius : 8px;
box-shadow : 4px 4px 6px #888888;
-moz-border-radius : 8px;
-moz-box-shadow : 4px 4px 6px #888888;
-webkit-border-radius : 8px;
-webkit-box-shadow : 4px 4px 6px #888888;
}
div.orgChart div.hasChildren {
background-color : #ffff98;
}
div.orgChart.interactive div.hasChildren {
cursor : pointer;
}
div.orgChart div.node.hover {
background-color : white;
}
div.orgChart div.adjunct.node {
position : absolute;
margin-top : 8px;
margin-left : -110px;
width : 80px;
height : 40px;
background-color : #efefef;
}
div.orgChart div.adjunct-link {
display : inline-block;
position : absolute;
margin-left : -20px;
margin-top : 25px;
width : 20px;
border : 1px dashed black;
}