Skip to content

Commit 29e16a5

Browse files
add ember-charts v1.0.0
1 parent 18f56e7 commit 29e16a5

File tree

5 files changed

+5401
-1
lines changed

5 files changed

+5401
-1
lines changed
Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
/*!
2+
* ember-charts v1.0.0
3+
* Copyright 2012-2015 Addepar Inc.
4+
* See LICENSE.md
5+
*/
6+
/* Typography */
7+
svg {
8+
display: block;
9+
}
10+
svg .chart-background {
11+
fill: transparent;
12+
}
13+
svg .axis line,
14+
svg .axis path {
15+
fill: none;
16+
stroke: #aaaaaa;
17+
stroke-width: 1px;
18+
}
19+
svg .axis .tick.minor line {
20+
stroke: #dddddd;
21+
stroke-width: 2px;
22+
}
23+
svg text {
24+
cursor: default;
25+
fill: #888888;
26+
font-size: 11px;
27+
shape-rendering: crispEdges;
28+
}
29+
.chart-horizontal-bar .axis line,
30+
.chart-horizontal-bar .axis path {
31+
fill: none;
32+
stroke: #000;
33+
shape-rendering: crispEdges;
34+
stroke: #C7C7C7;
35+
}
36+
.chart-pie .arc path {
37+
stroke: #fff;
38+
}
39+
.chart-pie .legend.hovered text {
40+
stroke: none !important;
41+
}
42+
.chart-time-series .line {
43+
fill: none;
44+
}
45+
.chart-time-series .line.hovered {
46+
stroke-width: 3px;
47+
}
48+
.chart-time-series .axis .tick {
49+
fill: none;
50+
stroke: #aaaaaa;
51+
stroke-width: 1px;
52+
stroke-dasharray: 1px, 3px;
53+
opacity: 1;
54+
font-size: 11px;
55+
}
56+
.chart-time-series .axis .tick.major {
57+
stroke-dasharray: none;
58+
}
59+
.chart-time-series .axis path {
60+
opacity: 0;
61+
}
62+
.chart-vertical-bar .axis .tick,
63+
.chart-vertical-bar-advanced .axis .tick,
64+
.chart-grouped-bar .axis .tick {
65+
fill: none;
66+
stroke: #aaaaaa;
67+
stroke-width: 1px;
68+
stroke-dasharray: 1px, 3px;
69+
opacity: 1;
70+
}
71+
.chart-vertical-bar .axis .tick.major,
72+
.chart-vertical-bar-advanced .axis .tick.major,
73+
.chart-grouped-bar .axis .tick.major {
74+
stroke-dasharray: none;
75+
}
76+
.chart-vertical-bar .axis path,
77+
.chart-vertical-bar-advanced .axis path,
78+
.chart-grouped-bar .axis path {
79+
opacity: 0;
80+
}
81+
.chart-scatter .axis .tick {
82+
fill: none;
83+
stroke: #aaaaaa;
84+
stroke-width: 1px;
85+
stroke-dasharray: 1px, 3px;
86+
opacity: 1;
87+
}
88+
.chart-scatter .axis path {
89+
opacity: 0;
90+
}
91+
circle {
92+
stroke-width: 1px;
93+
stroke: rgba(0, 0, 0, 0.1);
94+
}
95+
.chart-brush circle {
96+
-webkit-transition: fill-opacity 250ms linear;
97+
}
98+
.chart-brush .selecting circle {
99+
fill-opacity: .2;
100+
}
101+
.chart-brush .selecting circle.selected {
102+
stroke: #f00;
103+
}
104+
.chart-brush .resize path {
105+
fill: #666;
106+
fill-opacity: .8;
107+
stroke: #000;
108+
stroke-width: 1.5px;
109+
}
110+
.chart-brush .axis path,
111+
.chart-brush .axis line {
112+
fill: none;
113+
stroke: #000;
114+
shape-rendering: crispEdges;
115+
}
116+
.chart-brush .brush .extent {
117+
fill-opacity: .125;
118+
shape-rendering: crispEdges;
119+
}
120+
.chart-frame .chart-tooltip .background,
121+
.chart-frame .chart-tooltip .callout-tail {
122+
fill: #08c !important;
123+
stroke: #08c !important;
124+
}
125+
.chart-frame .chart-tooltip line,
126+
.chart-frame .chart-tooltip path,
127+
.chart-frame .chart-tooltip rect {
128+
stroke-width: 0;
129+
}
130+
.chart-frame .hovered {
131+
fill: #08c !important;
132+
stroke: #08c !important;
133+
}
134+
.chart-frame .hovered line,
135+
.chart-frame .hovered path,
136+
.chart-frame .hovered rect,
137+
.chart-frame .hovered circle,
138+
.chart-frame .hovered text {
139+
fill: #08c !important;
140+
stroke: #08c !important;
141+
}
142+
.chart-frame .series path.hovered {
143+
fill: none !important;
144+
}
145+
.chart-float-tooltip {
146+
position: absolute;
147+
top: 50px;
148+
left: 50px;
149+
background: #555;
150+
color: #eee;
151+
padding: 5px;
152+
font-size: 12px;
153+
z-index: 10;
154+
line-height: 14px;
155+
border: solid 1px rgba(255, 255, 255, 0.25);
156+
}
157+
.chart-float-tooltip .tip-label {
158+
display: block;
159+
}

0 commit comments

Comments
 (0)