-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconversionDiagram.css
114 lines (84 loc) · 2.46 KB
/
conversionDiagram.css
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
#conversionDiagramWrapper{
margin: 1em;
}
#conversionDiagramWrapper svg text{
fill: #555;
stroke: none;
stroke-width: 0;
}
#conversionDiagramWrapper svg .monthListContainer .DateBox{
fill: none;
stroke: #000;
stroke-width: 1px;
}
#conversionDiagramWrapper svg .monthListContainer .DateBox,
#conversionDiagramWrapper svg .monthListContainer text{
cursor: pointer;
}
#conversionDiagramWrapper svg .monthListContainer .DateGroup:hover .DateBox,
#conversionDiagramWrapper svg .monthListContainer .DateBox.Selected{
fill: #eee;
}
#conversionDiagramWrapper svg .monthListContainer .DateAnchorLine.Selected,
#conversionDiagramWrapper svg .monthListContainer .DateBox.Selected{
transition: stroke-width 0.25s;
stroke-width: 2px;
}
#conversionDiagramWrapper svg .diagramContainer{
fill: none;
stroke: none;
}
#conversionDiagramWrapper svg .ScopeLine{
fill: none;
stroke: #000;
stroke-width: 2px;
}
#conversionDiagramWrapper svg .ColumnLabel{
font-size: 1.2em;
font-weight: 700;
}
#conversionDiagramWrapper svg g.DatumGroup rect.Count:first-of-type{
fill: rgba(0,184,227,0.1);
stroke: rgba(0,184,227,1);
}
#conversionDiagramWrapper svg g.DatumGroup rect.Count:nth-of-type(2){
fill: rgba(0,184,227,0.4);
stroke: rgba(0,184,227,1);
}
#conversionDiagramWrapper svg g.DatumGroup rect.Count:nth-of-type(3){
fill: rgba(0,184,227,0.7);
stroke: rgba(0,184,227,1);
}
#conversionDiagramWrapper svg g.DatumGroup path.ConversionPath{
stroke: rgba(0,184,227,1);
stroke-width: 1px;
}
#conversionDiagramWrapper svg g.DatumGroup path.ConversionPath:nth-of-type(1){
fill: rgba(0,184,227,0.25);
}
#conversionDiagramWrapper svg g.DatumGroup path.ConversionPath:nth-of-type(2){
fill: rgba(0,184,227,0.55);
}
/* ******************* */
#conversionDiagramWrapper svg g.DatumGroup:hover rect.Count:first-of-type{
fill: rgba(0,184,227,0.3);
stroke: rgba(0,184,227,1);
}
#conversionDiagramWrapper svg g.DatumGroup:hover rect.Count:nth-of-type(2){
fill: rgba(0,184,227,0.6);
stroke: rgba(0,184,227,1);
}
#conversionDiagramWrapper svg g.DatumGroup:hover rect.Count:nth-of-type(3){
fill: rgba(0,184,227,0.9);
stroke: rgba(0,184,227,1);
}
#conversionDiagramWrapper svg g.DatumGroup:hover path.ConversionPath{
stroke: rgba(0,184,227,1);
stroke-width: 1px;
}
#conversionDiagramWrapper svg g.DatumGroup:hover path.ConversionPath:nth-of-type(1){
fill: rgba(0,184,227,0.45);
}
#conversionDiagramWrapper svg g.DatumGroup:hover path.ConversionPath:nth-of-type(2){
fill: rgba(0,184,227,0.75);
}