added split box for nominal and actual

This commit is contained in:
Zain Fauzan Rofie Azizi
2018-03-26 11:16:22 +08:00
parent 7ef5509e9f
commit a57c3d450c
2 changed files with 29 additions and 10 deletions
+12 -10
View File
@@ -42,10 +42,10 @@
<td>
<div class="form-row no-padding">
<div class="form-element-title">
<label style="color: #000">Total Carton(Actual)</label>
<label style="color: #000">Total Carton(Nominal)</label><br>
<input width="46%" type="text" name="Nominal" class="form-first-name" placeholder="Nominal" />&nbsp;
<input width="46%" type="text" name="Actual" class="form-last-name" placeholder="Actual" />
<label class="labelright" style="color: #000">Total Carton(Nomjnal)</label>
<label class="labelleft" style="color: #000">Total Carton(Actual)</label><br>
<input width="46%" type="text" name="Nominal" class="form-first-name" placeholder="0.00" />&nbsp;
<input width="46%" type="text" name="Actual" class="form-last-name" placeholder="0.00" />
</div>
</div>
</td>
@@ -54,9 +54,10 @@
<td>
<div class="form-row no-padding">
<div class="form-element-title">
<label style="color: #000">Measurement</label><br>
<input width="46%" type="text" name="Nominal" class="form-first-name" placeholder="Nominal" />&nbsp;
<input width="46%" type="text" name="Actual" class="form-last-name" placeholder="Actual" />
<label class="labelright" style="color: #000">Measurement(Nominal)</label>
<label class="labelleft" style="color: #000">Measurement(Actual)</label><br>
<input width="46%" type="text" name="Nominal" class="form-first-name" placeholder="0.00" />&nbsp;
<input width="46%" type="text" name="Actual" class="form-last-name" placeholder="0.00" />
</div>
</div>
</td>
@@ -65,9 +66,10 @@
<td>
<div class="form-row no-padding">
<div class="form-element-title">
<label style="color: #000">Weight</label><br>
<input width="46%" type="text" name="Nominal" class="form-first-name" placeholder="Nominal" />&nbsp;
<input width="46%" type="text" name="Actual" class="form-last-name" placeholder="Actual" />
<label class="labelright" style="color: #000">Weight(Nominal)</label>
<label class="labelleft" style="color: #000">Weight(Actual)</label><br>
<input width="46%" type="text" name="Nominal" class="form-first-name" placeholder="0.00" />&nbsp;
<input width="46%" type="text" name="Actual" class="form-last-name" placeholder="0.00" />
</div>
</div>
</td>
+17
View File
@@ -2687,12 +2687,29 @@ cont.menu ul.main-menu>li li a{
.form-last-name {
float: right;
width: 40%;
}
.form-first-name {
float: left;
}
.labelright, labelleft{
width:46%;
}
.labelright{
text-align:right;
float:right;
width:48%;
}
.labelleft{
text-align:left;
float:left;
}
/*end of part 29----------------------------------------------------*/
/*Other Styles and helpers------------------------------------------*/