Compare commits

...

2 Commits

Author SHA1 Message Date
Colin McLeod
806e545361 Fix charts in comparison page 2015-06-17 23:32:56 -07:00
Colin McLeod
ae62781d53 Bump version to 0.13.0 2015-06-17 23:17:15 -07:00
3 changed files with 40 additions and 3 deletions

View File

@@ -1,3 +1,40 @@
.chart {
.user-select-none();
display: inline-block;
margin: 0;
cursor: default;
overflow: hidden;
width: 33%;
box-sizing: border-box;
.tablet({
width: 50%;
});
.largePhone({
width: 100%;
});
.medPhone({
.axis {
font-size: 0.8em;
g.tick:nth-child(2n + 1) text {
display: none;
}
}
});
h3 {
text-align: center;
&[ng-click] {
cursor: pointer;
}
}
}
svg {
.axis {

View File

@@ -266,12 +266,12 @@
<div class="group semi">
<h1>Jump Range</h1>
<div class="chart" area-chart config="jrChart" series="jrSeries"></div>
<div area-chart config="jrChart" series="jrSeries"></div>
</div>
<div class="group semi">
<h1>Total Range</h1>
<div class="chart" area-chart config="trChart" series="trSeries"></div>
<div area-chart config="trChart" series="trSeries"></div>
</div>
<div class="group dbl">

View File

@@ -1,6 +1,6 @@
{
"name": "coriolis_shipyard",
"version": "0.12.1",
"version": "0.13.1",
"repository": {
"type": "git",
"url": "https://github.com/cmmcleod/coriolis"