1
0
Fork 0

scss for cluster

This commit is contained in:
scottashton 2014-02-17 13:47:42 +01:00
parent 279a0c8f43
commit 7c12ac72f1
3 changed files with 4 additions and 2 deletions

View File

@ -4,6 +4,6 @@
<meta name="description" content="ArangoDB Cluster Interface">
<meta name="author" content="Florian Bartels, Michael Hackstein">
<link href="css/style.css" rel="stylesheet">
<link href="css/planner.css" rel="stylesheet">
<link href="css/cluster.css" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>

View File

@ -78,7 +78,7 @@
var svg = d3.select("#clusterGraphs").append("svg")
.attr("width", w)
.attr("height", h)
.attr("class", "chart")
.attr("class", "clusterChart")
.append("g") //someone to transform. Groups data.
.attr("transform", "translate(" + w / 2 + "," + h / 2 + ")");

View File

@ -1,2 +1,4 @@
//shared
@import "shared";
//cluster Charts
@import "clusterCharts";