-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathChartContainer.css
More file actions
52 lines (47 loc) · 1.17 KB
/
ChartContainer.css
File metadata and controls
52 lines (47 loc) · 1.17 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
/* global styles for orgchart */
.orgchart-container {
box-sizing: border-box;
position: relative;
margin: 10px;
height: 700px;
background-color: #fff;
border: 2px dashed #aaa;
border-radius: 5px;
overflow: auto;
text-align: center;
}
.orgchart {
box-sizing: border-box;
display: inline-block;
background-image: linear-gradient(90deg, rgba(200, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0) 10%), linear-gradient(rgba(200, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0) 10%);
background-size: 10px 10px;
border: 1px dashed rgba(0,0,0,0);
padding: 20px 20px 0 20px;
}
.orgchart-container .hidden {
display: none!important;
}
.orgchart-container > .oc-mask {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 999;
text-align: center;
background-color: rgba(0,0,0,0.3);
}
.orgchart-container > .oc-mask .spinner {
position: absolute;
top: calc(50% - 50px);
left: calc(50% - 50px);
}
.orgchart-container > .oc-mask .spinner::before {
width: 100px;
height: 100px;
border-width: 10px;
border-radius: 50px;
border-top-color: rgba(68, 157, 68, 0.8);
border-bottom-color: rgba(68, 157, 68, 0.8);
border-left-color: rgba(68, 157, 68, 0.8);
}