Changed shade of blue for selection items, updated lang.de file (trunk)

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1161 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Alexis Deveria 2010-01-07 14:31:14 +00:00
parent a01c4c43de
commit ccc40da338
2 changed files with 8 additions and 8 deletions

View File

@ -129,7 +129,7 @@
{"id":"selected_y","title":"Ändere die Y Koordinate"}, {"id":"selected_y","title":"Ändere die Y Koordinate"},
{"id":"tool_topath","title":"Gewähltes Objekt in einen Pfad konvertieren"}, {"id":"tool_topath","title":"Gewähltes Objekt in einen Pfad konvertieren"},
{"id":"tool_reorient","title":"Neuausrichtung des Pfades"}, {"id":"tool_reorient","title":"Neuausrichtung des Pfades"},
{"id":"tool_node_link","title":"Link Control Points"}, {"id":"tool_node_link","title":"Gekoppelte oder separate Kontroll Punkte für die Bearbeitung des Pfades"},
{"js_strings": { {"js_strings": {
"invalidAttrValGiven":"Fehlerhafter Wert", "invalidAttrValGiven":"Fehlerhafter Wert",
"noContentToFitTo":"Kein Inhalt anzupassen", "noContentToFitTo":"Kein Inhalt anzupassen",

View File

@ -315,7 +315,7 @@ function BatchCommand(text) {
"attr": { "attr": {
"id": ("selectedBox"+this.id), "id": ("selectedBox"+this.id),
"fill": "none", "fill": "none",
"stroke": "blue", "stroke": "#22C",
"stroke-width": "1", "stroke-width": "1",
"stroke-dasharray": "5,5", "stroke-dasharray": "5,5",
// need to specify this so that the rect is not selectable // need to specify this so that the rect is not selectable
@ -337,7 +337,7 @@ function BatchCommand(text) {
"element": "line", "element": "line",
"attr": { "attr": {
"id": ("selectorGrip_rotateconnector_" + this.id), "id": ("selectorGrip_rotateconnector_" + this.id),
"stroke": "blue", "stroke": "#22C",
"stroke-width": "1" "stroke-width": "1"
} }
}) ); }) );
@ -347,7 +347,7 @@ function BatchCommand(text) {
"id": ("selectorGrip_rotate_" + this.id), "id": ("selectorGrip_rotate_" + this.id),
"fill": "lime", "fill": "lime",
"r": 4, "r": 4,
"stroke": "blue", "stroke": "#22C",
"stroke-width": 2, "stroke-width": 2,
"style": "cursor:url(images/rotate.png) 12 12, auto;" "style": "cursor:url(images/rotate.png) 12 12, auto;"
} }
@ -360,7 +360,7 @@ function BatchCommand(text) {
"element": "circle", "element": "circle",
"attr": { "attr": {
"id": ("selectorGrip_resize_" + dir + "_" + this.id), "id": ("selectorGrip_resize_" + dir + "_" + this.id),
"fill": "blue", "fill": "#22C",
"r": 4, "r": 4,
"style": ("cursor:" + dir + "-resize"), "style": ("cursor:" + dir + "-resize"),
// This expands the mouse-able area of the grips making them // This expands the mouse-able area of the grips making them
@ -614,9 +614,9 @@ function BatchCommand(text) {
addSvgElementFromJson({ "element": "rect", addSvgElementFromJson({ "element": "rect",
"attr": { "attr": {
"id": "selectorRubberBand", "id": "selectorRubberBand",
"fill": "blue", "fill": "#22C",
"fill-opacity": 0.15, "fill-opacity": 0.15,
"stroke": "blue", "stroke": "#22C",
"stroke-width": 0.5, "stroke-width": 0.5,
"display": "none", "display": "none",
"style": "pointer-events:none" "style": "pointer-events:none"
@ -3881,7 +3881,7 @@ function BatchCommand(text) {
stretchy = document.createElementNS(svgns, "line"); stretchy = document.createElementNS(svgns, "line");
assignAttributes(stretchy, { assignAttributes(stretchy, {
'id': "path_stretch_line", 'id': "path_stretch_line",
'stroke': "blue", 'stroke': "#22C",
'stroke-width': "0.5" 'stroke-width': "0.5"
}); });
stretchy = getElem("selectorParentGroup").appendChild(stretchy); stretchy = getElem("selectorParentGroup").appendChild(stretchy);