Fix Issue 522: Layer panel should scroll. Also add 'Dash' label to stroke-dasharray pull-down

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1502 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Jeff Schiller
2010-04-05 05:46:29 +00:00
parent e68320bca3
commit 8fac8e144b
3 changed files with 10 additions and 3 deletions

View File

@@ -300,6 +300,12 @@
</svg> </svg>
</g> </g>
<g id="arrow_right_big">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 50">
<path stroke="#000000" fill="#000000" d="m0,0l0,50l25,-25l-25,-25z"/>
</svg>
</g>
<g id="arrow_down"> <g id="arrow_down">
<svg viewBox="0 0 50 40" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <svg viewBox="0 0 50 40" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path transform="rotate(90, 26, 13)" d="m14,-12l0,50l25,-25l-25,-25z" fill="#000000" stroke="#000000"/> <path transform="rotate(90, 26, 13)" d="m14,-12l0,50l25,-25l-25,-25z" fill="#000000" stroke="#000000"/>

View File

@@ -116,7 +116,7 @@
bottom: 0px; bottom: 0px;
right: 0px; right: 0px;
width: 0px; width: 0px;
overflow: hidden; overflow: scroll;
margin: 0px; margin: 0px;
} }

View File

@@ -431,6 +431,7 @@ script type="text/javascript" src="locale/locale.min.js"></script-->
</label> </label>
<label class="stroke_tool"> <label class="stroke_tool">
<span>Dash:</span>
<select id="stroke_style" title="Change stroke dash style"> <select id="stroke_style" title="Change stroke dash style">
<option selected="selected" value="none">&mdash;</option> <option selected="selected" value="none">&mdash;</option>
<option value="2,2">...</option> <option value="2,2">...</option>
@@ -442,7 +443,7 @@ script type="text/javascript" src="locale/locale.min.js"></script-->
<!-- TODO: Turn these into icon lists, rather than text ones --> <!-- TODO: Turn these into icon lists, rather than text ones -->
<label class="stroke_tool"> <label class="stroke_tool">
<span>Joins:</span> <span>Join:</span>
<select id="stroke_linejoin" title="Change Linejoin type"> <select id="stroke_linejoin" title="Change Linejoin type">
<option id="linejoin_miter" selected="selected" value="miter">Miter</option> <option id="linejoin_miter" selected="selected" value="miter">Miter</option>
<option id="linejoin_round" value="round">Round</option> <option id="linejoin_round" value="round">Round</option>
@@ -451,7 +452,7 @@ script type="text/javascript" src="locale/locale.min.js"></script-->
</label> </label>
<label class="stroke_tool"> <label class="stroke_tool">
<span>Caps:</span> <span>Cap:</span>
<select id="stroke_linecap" title="Change Linecap type"> <select id="stroke_linecap" title="Change Linecap type">
<option id="linecap_butt" selected="selected" value="butt">Butt</option> <option id="linecap_butt" selected="selected" value="butt">Butt</option>
<option id="linecap_round" value="round">Round</option> <option id="linecap_round" value="round">Round</option>