From 579dac12198a4b48bd6f7c35f4756951ebb7d37d Mon Sep 17 00:00:00 2001 From: Jeff Schiller Date: Mon, 29 Jun 2009 15:00:11 +0000 Subject: [PATCH] Make contextual panel taller again git-svn-id: http://svg-edit.googlecode.com/svn/trunk@225 eee81c28-f429-11dd-99c0-75d572ba1ddd --- editor/svg-editor.css | 6 +++--- editor/svg-editor.js | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/editor/svg-editor.css b/editor/svg-editor.css index 9229a671..9171e8f4 100644 --- a/editor/svg-editor.css +++ b/editor/svg-editor.css @@ -65,7 +65,7 @@ body { #svg_editor div#workarea { position:absolute; - top: 40px; + top: 70px; left: 40px; right: 2px; bottom: 100px; @@ -85,7 +85,7 @@ body { left: 38px; right: 2px; top: 2px; - height: 36px; + height: 68px; border-bottom: none; } @@ -97,7 +97,7 @@ body { position: absolute; border-right: none; width: 36px; - top: 38px; + top: 68px; left: 2px; } diff --git a/editor/svg-editor.js b/editor/svg-editor.js index b551298c..e08bf95b 100644 --- a/editor/svg-editor.js +++ b/editor/svg-editor.js @@ -166,9 +166,9 @@ function svg_edit_setup() { $('#palette').append(str); var pos = $('#tools_rect_show').position(); - $('#tools_rect').css({'left': pos.left+4, 'top': pos.top+40}); + $('#tools_rect').css({'left': pos.left+4, 'top': pos.top+70}); pos = $('#tools_ellipse_show').position(); - $('#tools_ellipse').css({'left': pos.left+4, 'top': pos.top+40}); + $('#tools_ellipse').css({'left': pos.left+4, 'top': pos.top+70}); $('#stroke_width').change(function(){ svgCanvas.setStrokeWidth(this.options[this.selectedIndex].value);