-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathchart.less
77 lines (68 loc) · 1.85 KB
/
chart.less
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
.flow-chart-canvas-lkiarest {
height: 100%;
min-height: 400px;
border: 1px solid #eee;
background-image: url(grid.png);
background-repeat: repeat;
.window {
cursor: pointer;
&.task {
border: 1px solid #346789;
border-radius: 0.5em;
// opacity: 0.8;
// filter: alpha(opacity=80);
// width: 108px;
line-height: 1.5em;
text-align: center;
position: absolute;
background-color: #eeeeef;
color: #fff;
font-family: helvetica;
padding: 5px 20px;
font-size: 0.9em;
border: 2px solid transparent;
border-radius: 18px;
&:hover {
border: 2px solid #2196f3;
.remove {
display: block;
}
}
&.node-start {
background-color: #ffb952;
}
&.node-end {
background-color: #93d36e;
}
&.node-process {
background-color: #68b8f7;
}
.remove {
display: none;
&:before {
content: 'x';
right: -4px;
top: -8px;
width: 16px;
height: 16px;
line-height: 16px;
text-align: center;
border-radius: 8px;
position: absolute;
color: #fff;
background: #333;
}
}
}
}
}
.jsplumb-overlay.endpoint-label-lkiarest {
font-size: 12px;
color: #222;
}
.jsplumb-endpoint.jsplumb-endpoint-anchor {
cursor: pointer;
&.jsplumb-hover, &.jsplumb-drag-hover {
background: #f55;
}
}