-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstate.css
More file actions
78 lines (67 loc) · 1.63 KB
/
state.css
File metadata and controls
78 lines (67 loc) · 1.63 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
.demo {
/* for IE10+ touch devices */
touch-action:none;
}
.w {
padding: 16px;
position: absolute;
z-index: 4;
border: 1px solid #2e6f9a;
box-shadow: 2px 2px 19px #e0e0e0;
-o-box-shadow: 2px 2px 19px #e0e0e0;
-webkit-box-shadow: 2px 2px 19px #e0e0e0;
-moz-box-shadow: 2px 2px 19px #e0e0e0;
-moz-border-radius: 8px;
border-radius: 8px;
opacity: 0.8;
cursor: move;
background-color: white;
font-size: 11px;
-webkit-transition: background-color 0.25s ease-in;
-moz-transition: background-color 0.25s ease-in;
transition: background-color 0.25s ease-in;
}
.w:hover {
background-color: #5c96bc;
color: white;
}
.aLabel {
-webkit-transition: background-color 0.25s ease-in;
-moz-transition: background-color 0.25s ease-in;
transition: background-color 0.25s ease-in;
}
.aLabel.jsplumb-hover, .jsplumb-source-hover, .jsplumb-target-hover {
background-color: #1e8151;
color: white;
}
.aLabel {
background-color: white;
opacity: 0.8;
padding: 0.3em;
border-radius: 0.5em;
border: 1px solid #346789;
cursor: pointer;
}
.ep {
position: absolute;
bottom: 37%;
right: 5px;
width: 1em;
height: 1em;
background-color: orange;
cursor: pointer;
box-shadow: 0 0 2px black;
-webkit-transition: -webkit-box-shadow 0.25s ease-in;
-moz-transition: -moz-box-shadow 0.25s ease-in;
transition: box-shadow 0.25s ease-in;
}
.ep:hover {
box-shadow: 0 0 6px black;
}
.statemachine-demo .jsplumb-endpoint {
z-index: 3;
}
.dragHover {
border: 2px solid orange;
}
path, .jsplumb-endpoint { cursor:pointer; }