From d3d80a02a976e2f1190ee90641c5e91d3d731657 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Mon, 6 Apr 2009 23:12:40 +0000 Subject: [PATCH] As a result of the changes in #1634, the symbolizer for the temporary rendering intent was exposed. This was a bit uncharacteristic for OL symbolizers given its 4px stroke width and eye melting yellow hue. After some agreement on the mailing list that this should be changed, I'm changing it. The temporary symbolizer is now a 2px cyan thing. Would be nice to have a more involved design process, but I'm feeling a bit desperate about this one not knowing when the release candidate will go out - and not wanting to be embarassed by the garish yellow. Reopen if this is objectionable. r=ahocevar (closes #2032) git-svn-id: http://svn.openlayers.org/trunk/openlayers@9224 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Feature/Vector.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/OpenLayers/Feature/Vector.js b/lib/OpenLayers/Feature/Vector.js index 0c4ac678a7..8d5587636b 100644 --- a/lib/OpenLayers/Feature/Vector.js +++ b/lib/OpenLayers/Feature/Vector.js @@ -381,14 +381,14 @@ OpenLayers.Feature.Vector.style = { cursor: "pointer" }, 'temporary': { - fillColor: "yellow", + fillColor: "#66cccc", fillOpacity: 0.2, hoverFillColor: "white", hoverFillOpacity: 0.8, - strokeColor: "yellow", + strokeColor: "#66cccc", strokeOpacity: 1, strokeLinecap: "round", - strokeWidth: 4, + strokeWidth: 2, strokeDashstyle: "solid", hoverStrokeColor: "red", hoverStrokeOpacity: 1,