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-75d572ba1dddmaster
parent
e68320bca3
commit
8fac8e144b
|
@ -300,6 +300,12 @@
|
|||
</svg>
|
||||
</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">
|
||||
<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"/>
|
||||
|
|
|
@ -116,7 +116,7 @@
|
|||
bottom: 0px;
|
||||
right: 0px;
|
||||
width: 0px;
|
||||
overflow: hidden;
|
||||
overflow: scroll;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
|
|
|
@ -431,6 +431,7 @@ script type="text/javascript" src="locale/locale.min.js"></script-->
|
|||
</label>
|
||||
|
||||
<label class="stroke_tool">
|
||||
<span>Dash:</span>
|
||||
<select id="stroke_style" title="Change stroke dash style">
|
||||
<option selected="selected" value="none">—</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 -->
|
||||
<label class="stroke_tool">
|
||||
<span>Joins:</span>
|
||||
<span>Join:</span>
|
||||
<select id="stroke_linejoin" title="Change Linejoin type">
|
||||
<option id="linejoin_miter" selected="selected" value="miter">Miter</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 class="stroke_tool">
|
||||
<span>Caps:</span>
|
||||
<span>Cap:</span>
|
||||
<select id="stroke_linecap" title="Change Linecap type">
|
||||
<option id="linecap_butt" selected="selected" value="butt">Butt</option>
|
||||
<option id="linecap_round" value="round">Round</option>
|
||||
|
|
Loading…
Reference in New Issue