increase density of raft. better editing of gcode fragments
This commit is contained in:
parent
027c028202
commit
fc6104df1c
6 changed files with 108 additions and 13 deletions
|
|
@ -156,7 +156,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<!-- GCode filter editor -->
|
||||
<div id="devices" class="dialog">
|
||||
<div id="devices" class="dialog flex-col">
|
||||
<div id="devices-body" class="flow-col">
|
||||
<div id="device-labels" class="flow-row">
|
||||
<span>device</span>
|
||||
|
|
@ -170,6 +170,9 @@
|
|||
<div id="device"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="position:relative">
|
||||
<div id="insert" style="position:absolute"></div>
|
||||
</div>
|
||||
<div id="device-action" class="flow-row">
|
||||
<button id="device-add">+</button>
|
||||
<button id="device-del">-</button>
|
||||
|
|
|
|||
|
|
@ -576,3 +576,21 @@ button[import="1"] {
|
|||
text-align: left;
|
||||
color: rgba(0,0,0,0.85);
|
||||
}
|
||||
|
||||
.poptext {
|
||||
display: none;
|
||||
position: absolute;
|
||||
margin-left: 55px;
|
||||
border: 5px solid gray;
|
||||
border-radius: 3px;
|
||||
transform: translate(0, -25%);
|
||||
}
|
||||
.poptext textarea {
|
||||
opacity: 0.95;
|
||||
overflow-y: scroll !important;
|
||||
}
|
||||
.poptext label {
|
||||
width: 100% !important;
|
||||
text-align: center !important;
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue