diff --git a/Makefile b/Makefile
index ddeef62b9..1db4f2efb 100644
--- a/Makefile
+++ b/Makefile
@@ -23,6 +23,7 @@ all: \
js/lib/jxon.js \
js/lib/lodash.js \
js/lib/ohauth.js \
+ js/lib/rtree.js \
js/lib/sha.js \
js/id/start.js \
js/id/id.js \
@@ -40,13 +41,14 @@ all: \
js/id/modes/*.js \
js/id/operations.js \
js/id/operations/*.js \
- js/id/controller/*.js \
+ js/id/controller.js \
js/id/graph/*.js \
js/id/renderer/*.js \
js/id/svg.js \
js/id/svg/*.js \
js/id/ui.js \
js/id/ui/*.js \
+ js/id/validate.js \
js/id/end.js \
locale/locale.js \
locale/en.js
diff --git a/css/map.css b/css/map.css
index 7b3038d6c..e3e05a044 100644
--- a/css/map.css
+++ b/css/map.css
@@ -16,7 +16,7 @@ g.point .shadow {
transition: transform 100ms linear;
-moz-transition: fill 100ms linear;
}
-.behavior-hover g.point.hover .shadow {
+.behavior-hover g.point.hover:not(.selected) .shadow {
fill: #E96666;
fill-opacity: 0.3;
}
@@ -106,7 +106,7 @@ g.vertex .shadow {
transition: transform 100ms linear;
-moz-transition: fill 100ms linear;
}
-.behavior-hover g.vertex.hover .shadow {
+.behavior-hover g.vertex.hover:not(.selected) .shadow {
fill: #E96666;
fill-opacity: 0.3;
}
@@ -120,7 +120,7 @@ g.vertex.selected .shadow {
g.midpoint .fill {
fill:#aaa;
}
-.behavior-hover g.midpoint .fill.hover {
+.behavior-hover g.midpoint .fill.hover:not(.selected) {
fill:#fff;
stroke:#000;
}
@@ -133,7 +133,7 @@ g.midpoint .shadow {
transition: transform 100ms linear;
-moz-transition: fill 100ms linear;
}
-.behavior-hover g.midpoint .shadow.hover {
+.behavior-hover g.midpoint .shadow.hover:not(.selected) {
fill:#E96666;
fill-opacity: 0.3;
}
@@ -161,7 +161,7 @@ path.shadow {
-webkit-transition: stroke 100ms linear;
}
-.behavior-hover path.shadow.hover {
+.behavior-hover path.shadow.hover:not(.selected) {
stroke: #E96666;
stroke-opacity: 0.3;
}
@@ -628,12 +628,7 @@ text.pointlabel {
}
-text.area.tag-leisure-park {
- font-size: 16px;
-}
-
-text.point.tag-shop,
-text.point.tag-amenity {
+text.point {
font-size: 9px;
}
diff --git a/index.html b/index.html
index cb788ae18..d8d7cec9b 100644
--- a/index.html
+++ b/index.html
@@ -24,7 +24,6 @@
-
@@ -78,10 +77,9 @@
-
-
-
-
+
+
+
@@ -119,16 +117,15 @@
-
-
-
+
+
@@ -147,4 +144,15 @@
});
});