2009-06-03 13:03:10 +00:00
|
|
|
#svg_editor {
|
|
|
|
font-size: 8pt;
|
|
|
|
font-family: Verdana, Helvetica, Arial;
|
|
|
|
}
|
|
|
|
|
|
|
|
#svg_editor hr {
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid #808080;
|
|
|
|
}
|
|
|
|
|
|
|
|
#svg_editor select {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#svg_editor .svgcanvas {
|
2009-06-01 15:55:21 +00:00
|
|
|
width: 640px;
|
|
|
|
height: 480px;
|
|
|
|
border: 1px solid #808080;
|
2009-06-04 13:43:58 +00:00
|
|
|
border-left: none;
|
2009-06-01 15:55:21 +00:00
|
|
|
}
|
|
|
|
|
2009-06-04 10:58:47 +00:00
|
|
|
#svg_editor #svgcanvas {
|
|
|
|
width: 642px;
|
|
|
|
height: 482px;
|
|
|
|
}
|
|
|
|
|
2009-06-01 15:55:21 +00:00
|
|
|
#svg_editor div#palette_holder {
|
|
|
|
border: 1px solid #808080;
|
|
|
|
border-top: none;
|
2009-06-04 13:43:58 +00:00
|
|
|
border-left: none;
|
2009-06-01 15:55:21 +00:00
|
|
|
float: left;
|
|
|
|
width: 640px;
|
|
|
|
overflow-x: scroll;
|
|
|
|
overflow-y: hidden;
|
|
|
|
height: 31px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#fill_color, #stroke_color {
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
border: 1px solid #808080;
|
2009-06-03 13:03:10 +00:00
|
|
|
cursor: pointer;
|
2009-06-01 15:55:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#fill_color {
|
2009-06-01 17:35:22 +00:00
|
|
|
background: url('images/none.png');
|
2009-06-01 15:55:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#stroke_color {
|
|
|
|
background: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#svg_editor div#palette {
|
|
|
|
float: left;
|
|
|
|
width: 6848px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#svg_editor div#tools {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#svg_editor div#workarea {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#svg_editor div.palette_item {
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2009-06-03 13:03:10 +00:00
|
|
|
#tools {
|
|
|
|
background: #E8E8E8;
|
2009-06-04 13:43:58 +00:00
|
|
|
height: 534px;
|
2009-06-03 13:03:10 +00:00
|
|
|
border: 1px solid #808080;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tool_button, .tool_button_current {
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
border: 1px solid red;
|
|
|
|
margin: 2px;
|
|
|
|
padding: 2px;
|
|
|
|
border-left: 1px solid #FFFFFF;
|
|
|
|
border-top: 1px solid #FFFFFF;
|
|
|
|
border-right: 1px solid #808080;
|
|
|
|
border-bottom: 1px solid #808080;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tool_button_current {
|
|
|
|
border-left: 1px solid #808080;
|
|
|
|
border-top: 1px solid #808080;
|
|
|
|
border-right: 1px solid #FFFFFF;
|
|
|
|
border-bottom: 1px solid #FFFFFF;
|
|
|
|
background-color: #B0B0B0;
|
2009-06-01 15:55:21 +00:00
|
|
|
}
|
2009-06-02 12:52:44 +00:00
|
|
|
|
|
|
|
#color_pick {
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
2009-06-03 13:03:10 +00:00
|
|
|
background: #E8E8E8;
|
2009-06-02 12:52:44 +00:00
|
|
|
border: 1px solid #808080;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#color_pick_text, #color_pick_ok {
|
|
|
|
border: 1px solid #808080;
|
|
|
|
width: 90px;
|
|
|
|
height: 20px;
|
|
|
|
float: left;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
2009-06-03 13:03:10 +00:00
|
|
|
|
|
|
|
#color_pick_ok {
|
|
|
|
background: #E8E8E8;
|
|
|
|
border-left: 1px solid #FFFFFF;
|
|
|
|
border-top: 1px solid #FFFFFF;
|
|
|
|
border-right: 1px solid #808080;
|
|
|
|
border-bottom: 1px solid #808080;
|
|
|
|
}
|
|
|
|
|
2009-06-04 07:13:31 +00:00
|
|
|
.tools_flyout {
|
2009-06-03 13:03:10 +00:00
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
height: 28px;
|
|
|
|
width: 90px;
|
|
|
|
background: red;
|
|
|
|
cursor: pointer;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2009-06-03 15:00:48 +00:00
|
|
|
#tool_square {
|
|
|
|
background: 2px 2px url('images/square.png') no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tool_rect {
|
|
|
|
background: 2px 2px url('images/rect.png') no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tool_fhrect {
|
|
|
|
background: 2px 2px url('images/path.png') no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tool_circle {
|
|
|
|
background: 2px 2px url('images/circle.png') no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tool_ellipse {
|
|
|
|
background: 2px 2px url('images/ellipse.png') no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tool_fhellipse {
|
|
|
|
background: 2px 2px url('images/path.png') no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tools_rect div, #tools_ellipse div {
|
2009-06-03 13:03:10 +00:00
|
|
|
float: left;
|
2009-06-03 15:00:48 +00:00
|
|
|
background-color: #E8E8E8;
|
2009-06-03 13:03:10 +00:00
|
|
|
border-left: 1px solid #FFFFFF;
|
|
|
|
border-top: 1px solid #FFFFFF;
|
|
|
|
border-right: 1px solid #808080;
|
|
|
|
border-bottom: 1px solid #808080;
|
|
|
|
height: 28px;
|
|
|
|
width: 28px;
|
|
|
|
}
|