add disk mini form
This commit is contained in:
parent
8417175605
commit
0c3cdb2ca6
@ -22,7 +22,14 @@
|
|||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Disks</legend>
|
<legend>Disks</legend>
|
||||||
<div class="input-grid" id="disks" style="grid-template-columns: repeat(3, auto) 1fr;"></div>
|
<div class="input-grid" id="disks" style="grid-template-columns: repeat(3, auto) 1fr;"></div>
|
||||||
<div style="width:100%; text-align: center; margin-top: 10px;"><img id="disk-add" src="images/actions/create.svg"></div>
|
<hr>
|
||||||
|
<div class="input-grid" id="add-disk" style="grid-template-columns: repeat(8, auto) 1fr;">
|
||||||
|
<label for="bus">Bus</label><select id="bus"></select>
|
||||||
|
<label for="device">Device</label><input id="device" type="number" step="1" min="0" max="0" value="0">
|
||||||
|
<label for="storage">Storage</label><select id="storage"></select>
|
||||||
|
<label for="size">Size</label><input id="size" type="number" step="1" min="0" max="0" value="0">
|
||||||
|
<img id="disk-add" src="images/actions/create.svg">
|
||||||
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<fieldset class="fieldset-no-border">
|
<fieldset class="fieldset-no-border">
|
||||||
<div class="btn-group" id="form-actions">
|
<div class="btn-group" id="form-actions">
|
||||||
|
16
css/form.css
16
css/form.css
@ -26,6 +26,12 @@ input {
|
|||||||
border: solid white 1px;
|
border: solid white 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
border: solid white 1px;
|
||||||
|
background-color: black;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
}
|
}
|
||||||
@ -46,3 +52,13 @@ legend {
|
|||||||
form img {
|
form img {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
form > * {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
width: 100%;
|
||||||
|
border: none;
|
||||||
|
border-top: solid white 1px;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user