mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 15:02:52 -05:00
CSS tweaks to import/export (#121)
This commit is contained in:
parent
4586507a8a
commit
bb48189e6f
2 changed files with 10 additions and 1 deletions
|
@ -37,7 +37,7 @@
|
||||||
|
|
||||||
<input type="button" value="Import from XML" onclick="fromXml()" id="import">
|
<input type="button" value="Import from XML" onclick="fromXml()" id="import">
|
||||||
<br><br>
|
<br><br>
|
||||||
<textarea id="importExport" style="width: 480px; height: 360px"></textarea>
|
<textarea id="importExport"></textarea>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -35,3 +35,12 @@ a {
|
||||||
#tab-blockexplorer, #tab-threadexplorer, #tab-importexport {
|
#tab-blockexplorer, #tab-threadexplorer, #tab-importexport {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#importExport {
|
||||||
|
width: 400px;
|
||||||
|
height: 360px;
|
||||||
|
background: rgb(36,36,36);
|
||||||
|
color: rgb(217,217,217);
|
||||||
|
font-family: monospace;
|
||||||
|
font-size: 10pt;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue