Project

General

Profile

1
.svgArrow {
2
	fill: #336699;
3
}
4

    
5
.graphSimpleNode > rect,
6
.graphStartNode > rect,
7
.graphSuccessNode > rect,
8
.graphJoinNode > rect {
9
	stroke-width: 4px;
10
	fill-opacity: 0.7;
11
	cursor: pointer;
12
}
13

    
14
.graphSimpleNode > rect {
15
	stroke: #336699;
16
	fill: #fafafa;
17
}
18

    
19
.graphStartNode > rect {
20
	stroke: #336699;
21
	fill: #aaccff;
22
}
23

    
24
.graphSuccessNode > rect {
25
	stroke: #008000;
26
	fill: #fafafa;
27
}
28

    
29
.graphJoinNode > rect {
30
	stroke-dasharray: 10 5;
31
	stroke: #336699;
32
	fill: #fafafa;
33
}
34

    
35
.graphStartNode:hover > rect,
36
.graphSimpleNode:hover > rect,
37
.graphJoinNode:hover > rect,
38
.graphSuccessNode:hover > rect {
39
	fill: #dadada;
40
}
41

    
42
.graphStartNode > text,
43
.graphSimpleNode > text,
44
.graphJoinNode > text {
45
	font-family: Verdana;
46
	font-size: 12px;
47
	color: #336699;
48
	fill: #336699;
49
	text-anchor: middle;
50
	alignment-baseline: middle;
51
}
52

    
53
.graphSuccessNode > text {
54
	font-family: Verdana;
55
	font-size: 12px;
56
	color: #008000;
57
	fill: #008000;
58
	text-anchor: middle;
59
	alignment-baseline: middle;
60
}
61

    
62
.graphStartNode > text.small,
63
.graphSimpleNode > text.small,
64
.graphJoinNode > text.small,
65
.graphSuccessNode > text.small {
66
	font-size: 10px;
67
	color: #999999;
68
	fill: #999999;
69
}
70

    
71

    
72
.graphSimpleArc > line {
73
	stroke: #336699;
74
	stroke-width: 1;
75
}
76

    
77
.graphSimpleArc > path {
78
	stroke: #336699;
79
	stroke-width: 1;
80
	fill: none;
81
}
82

    
83
.graphSimpleArc > text {
84
	font-family: Verdana;
85
	font-size: 12px;
86
	color: #000000;
87
	text-anchor: middle;
88
	alignment-baseline: middle;
89
}
(9-9/13)