nicer color

This commit is contained in:
Ben West
2015-11-17 13:07:08 -08:00
parent b04e48f74a
commit f6b7f4cc24
2 changed files with 10 additions and 0 deletions
+4
View File
@@ -42,6 +42,9 @@
line-height: 120%;
font-size: 200%;
}
.reticle .controls INPUT.end-input {
text-align: right;
}
#menu_holder {
}
@@ -79,6 +82,7 @@
left: 0;
top: 0;
right: 0;
border: 1px solid silver;
}
#view .observations {
+6
View File
@@ -164,6 +164,12 @@ function manager (view, data, opts) {
var display = { dom: pool, control: lense };
reticle.dom.find('.timeline').css('border', '1px solid ' + color);
display.dom.css('border-color', color);
reticle.dom.find("span, :input").css('color', color);
// reticle.dom.find(".x.axis line").('styl', color);
var axis = d3.select(reticle.dom.get(0)).selectAll('.x.axis');
axis.selectAll('line').style('stroke', color);
axis.selectAll('path').style('stroke', color);
axis.selectAll('text').style('color', color);
return { reticle: reticle, display: display, color: color };
}