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
143
144
145
146
147
148
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.428571429;
color: #333333;
}
.chart-container {
float: left;
position: relative;
display: inline-block;
top: 10px;
left: 0px;
height: 1100px;
width: 50%;
overflow: hidden;
text-align: center;
}
.orgchart {
background: #fff;
border: 0;
padding: 0;
}
.orgchart > .spinner {
color: rgba(255, 255, 0, 0.75);
}
.orgchart .node {
box-sizing: border-box;
display: inline-block;
position: relative;
margin: 0;
border: 2px dashed transparent;
text-align: center;
width: 220px;
padding-bottom: 0px;
border-bottom-width: 0px;
padding-top: 0px;
height: 50px;
border-top-width: 0px;
}
.orgchart .node .title {
background-color: #fff;
color: #000;
height: 50px;
border-radius: 0;
}
.orgchart .node .node-line-right {
/*background-color: #fff;*/
z-index: 1;
position: absolute;
top: -10px;
right: 56px;
width: 60px;
}
.orgchart .edge {
display: none !important;
}
/*.orgchart.r2l .node .title {*/
/*transform: rotate(-90deg) translate(60px, 60px);*/
/*-ms-transform: rotate(-90deg) translate(60px, 60px);*/
/*-moz-transform: rotate(-90deg) translate(60px, 60px);*/
/*-webkit-transform: rotate(-90deg) translate(60px, 60px);*/
/*}*/
/*.orgchart.l2r .node .title {*/
/*transform: rotate(-90deg) translate(60px, 60px) rotateY(180deg);*/
/*-ms-transform: rotate(-90deg) translate(60px, 60px) rotateY(180deg);*/
/*-moz-transform: rotate(-90deg) translate(60px, 60px) rotateY(180deg);*/
/*-webkit-transform: rotate(-90deg) translate(60px, 60px) rotateY(180deg);*/
/*}*/
.orgchart .node .content {
border: 0;
background-color: transparent;
color: #fff;
font-weight: bold;
font-size: 1.2em;
position: absolute;
bottom: 2px;
z-index: 0;
width: 178px;
left: 19px;
}
.orgchart.t2b .node .content {
position: absolute;
bottom: 138px;
right: 78px;
width: 20px;
border-radius: 0px;
}
.orgchart .node > .spinner {
color: rgba(184, 0, 54, 0.75);
}
.orgchart table > tr {
line-height: 0px;
}
.orgchart .node:hover {
background-color: rgba(255, 255, 0, 0.6);
}
.orgchart .node.focused {
background-color: rgba(255, 255, 0, 0.6);
}
.orgchart .node .edge {
color: rgba(0, 0, 0, 0.6);
}
.orgchart .lines .downLine{
background-color: rgba(17, 6, 6, 0.6);
}
.orgchart .lines .rightLine{
border-right-color: rgba(17, 6, 6, 0.6);
}
.orgchart .lines .leftLine{
border-left-color: rgba(17, 6, 6, 0.6);
}
.orgchart .lines .topLine{
border-top-color: rgba(17, 6, 6, 0.6);;
}
.orgchart .edge:hover {
color: #000;
}
.orgchart td.left,
.orgchart td.top,
.orgchart td.right {
border-color: #999;
}
.orgchart td > .down {
background-color: #999;
}