Add first bits of markup for Doc Props window. Nudge editor down a few pixels

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@636 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Jeff Schiller 2009-09-13 16:31:33 +00:00
parent 314b7754f8
commit 3b33c919ec
2 changed files with 24 additions and 5 deletions

View File

@ -58,7 +58,7 @@ body {
#svg_editor div#workarea {
position:absolute;
top: 70px;
top: 75px;
left: 40px;
right: 2px;
bottom: 60px;
@ -91,7 +91,7 @@ body {
left: 38px;
right: 2px;
top: 2px;
height: 68px;
height: 75px;
border-bottom: none;
}
@ -103,7 +103,7 @@ body {
position: absolute;
border-right: none;
width: 36px;
top: 68px;
top: 75px;
left: 2px;
}
@ -348,6 +348,20 @@ div.color_block {
margin: 5px 20px 0 0;
}
#svg_docprops {
display: none;
}
#svg_docprops #svg_docprops_overlay {
position: absolute;
top: 0px;
right: 0px;
left: 0px;
bottom: 0px;
background-color: black;
opacity: 0.6;
}
#tool_source_save {
background: #E8E8E8 url(images/save.png) no-repeat 2px 2px;
}

View File

@ -40,9 +40,9 @@
</div>
<div id="tools_top" class="tools_panel">
<!-- File-like buttons: New, Save, Source -->
<div>
<img class="tool_sep" src="images/sep.png" alt="|"/>
<div id="file_panel">
<img class="tool_button" id="tool_clear" src="images/clear.png" title="New Image [N]" alt="Clear" />
<img style="display:none" class="tool_button" id="tool_open" src="images/open.png" title="Open Image [O]" alt="Open"/>
<img class="tool_button" id="tool_save" src="images/save.png" title="Save Image [S]" alt="Save"/>
@ -315,5 +315,10 @@
</div>
</div>
<div id="svg_docprops">
<div id="svg_docprops_overlay"></div>
<div id="svg_docprops_container"></div>
</div>
</body>
</html>