-
Notifications
You must be signed in to change notification settings - Fork 0
/
c3.css
144 lines (117 loc) · 1.8 KB
/
c3.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*-- Chart --*/
svg {
font: 10px sans-serif;
}
path, line {
fill: none;
stroke: #000;
stroke-width: 1px;
}
text {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.chart-arc path {
stroke: #fff;
}
.chart-arc text {
fill: #fff;
font-size: 13px;
}
/*-- Grid --*/
.grid line {
stroke: #aaa;
}
.grid text {
fill: #aaa;
}
.xgrid, .ygrid {
stroke-dasharray: 3 3;
}
.xgrid-focus {
}
/*-- Text on Chart --*/
.-text {
}
/*-- Line --*/
.-line {
stroke-width: 1px;
}
/*-- Point --*/
.-circle._expanded_ {
stroke-width: 1px;
stroke: white;
}
.selected-circle {
fill: white;
stroke-width: 2px;
}
/*-- Bar --*/
.-bar._expanded_ {
fill-opacity: 0.75;
}
/*-- Arc --*/
.chart-arcs-title {
font-size: 1.3em;
}
/*-- Focus --*/
.target.focused path.-line {
stroke-width: 2px;
}
/*-- Region --*/
.region {
fill: steelblue;
fill-opacity: .1;
}
/*-- Brush --*/
.brush .extent {
fill-opacity: .1;
}
/*-- Select - Drag --*/
.dragarea {
}
/*-- Legend --*/
.legend-item {
font-size: 12px;
}
/*-- Tooltip --*/
.-tooltip {
border-collapse:collapse;
border-spacing:0;
background-color:#fff;
empty-cells:show;
-webkit-box-shadow: 7px 7px 12px -9px rgb(119,119,119);
-moz-box-shadow: 7px 7px 12px -9px rgb(119,119,119);
box-shadow: 7px 7px 12px -9px rgb(119,119,119);
opacity: 0.9;
}
.-tooltip tr {
border:1px solid #CCC;
}
.-tooltip th {
background-color: #aaa;
font-size:14px;
padding:2px 5px;
text-align:left;
color:#FFF;
}
.-tooltip td {
font-size:13px;
padding: 3px 6px;
background-color:#fff;
border-left:1px dotted #999;
}
.-tooltip td > span {
display: inline-block;
width: 10px;
height: 10px;
margin-right: 6px;
}
.-tooltip td.value{
text-align: right;
}
.-area {
stroke-width: 0;
opacity: 0.2;
}