Blame view
sources/apps/files_svgedit/css/ocsvg.css
658 Bytes
|
42e4f8d60
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
#navigation > ul > li:first-child {
background: url("../../../core/img/breadcrumb-start.svg") no-repeat scroll 12.5em 0 transparent;
padding-right: 1em;
position: fixed;
width: 12.5em;
}
div#svgEditor{
position: fixed;
display: block;
top: 80px;
left: 160px;
}
iframe#svgedit {
position: relative;
width: 100%;
height: 100%;
}
div#controls {
padding-left: 1em;
}
div#content {
background-color: #888888;
}
div#canvasPreview, div#svgtopdfPreview {
width: 100%;
max-height: 250px;
overflow: auto;
}
div#svgtopdfPreview {
background-color: #FFFFFF;
}
div#svgEditorSave {
width: 400px;
height: 300px;
}
|