aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Bornand <nicolas74@gmail.com>2014-05-11 13:42:35 +0200
committerNicolas Bornand <nicolas74@gmail.com>2014-05-11 13:42:35 +0200
commitd2a60ddea8d779e0f025f8fe965fa388c5a840b2 (patch)
tree5e343d3d57cdca6d9097716481a727a34d1f5094
parent40ceac96c8d6cb46f02397ec9e8d8a90b6a04aa2 (diff)
downloadplayGraph-d2a60ddea8d779e0f025f8fe965fa388c5a840b2.tar.gz
playGraph-d2a60ddea8d779e0f025f8fe965fa388c5a840b2.tar.bz2
playGraph-d2a60ddea8d779e0f025f8fe965fa388c5a840b2.zip
color changes
-rw-r--r--app/css/lbarman.css7
-rw-r--r--app/js/directives.js2
2 files changed, 7 insertions, 2 deletions
diff --git a/app/css/lbarman.css b/app/css/lbarman.css
index a688146..2a2a171 100644
--- a/app/css/lbarman.css
+++ b/app/css/lbarman.css
@@ -51,7 +51,8 @@ body
.selected > .circle {
- background-color: red;
+ background-color: rgba(7,140,255,.6);
+ border-color: black;
}
.point > .songLabel p{
position: relative;
@@ -61,6 +62,10 @@ body
display: none;
font-size: 22px;
}
+.selected > .songLabel p{
+ color:rgb(7,140,255);
+}
+
.point:hover > .songLabel p{
display: block;
}
diff --git a/app/js/directives.js b/app/js/directives.js
index a367920..2895592 100644
--- a/app/js/directives.js
+++ b/app/js/directives.js
@@ -70,7 +70,7 @@ app.directive('pgLine', function () {
for (var i = 0; i < newPoints.length - 1; ++i) {
if (newPoints[i].selected) {
var line = paper.Path.Line(newPoints[i], newPoints[i+1]);
- line.strokeColor = 'red';
+ line.strokeColor = 'rgba(7,140,255,.6)';
line.strokeWidth = 2;
}
}