mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
Fix Decimal not showing on the iphone for specific fields associated to price cost percentage etc
This commit is contained in:
@@ -382,10 +382,10 @@ if (isset($_GET['quote_id'])) {
|
||||
<textarea class="form-control" rows="2" name="description" id="desc" placeholder="Enter a Description"></textarea>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" class="form-control" inputmode="numeric" pattern="-?[0-9]*\.?[0-9]{0,2}" id="qty" style="text-align: center;" name="qty" placeholder="Qty">
|
||||
<input type="text" class="form-control" inputmode="decimal" pattern="-?[0-9]*\.?[0-9]{0,2}" id="qty" style="text-align: center;" name="qty" placeholder="Qty">
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" class="form-control" inputmode="numeric" pattern="-?[0-9]*\.?[0-9]{0,2}" id="price" style="text-align: right;" name="price" placeholder="Price (<?php echo $quote_currency_code; ?>)">
|
||||
<input type="text" class="form-control" inputmode="decimal" pattern="-?[0-9]*\.?[0-9]{0,2}" id="price" style="text-align: right;" name="price" placeholder="Price (<?php echo $quote_currency_code; ?>)">
|
||||
</td>
|
||||
<td>
|
||||
<select class="form-control select2" id="tax" name="tax_id" required>
|
||||
@@ -439,7 +439,7 @@ if (isset($_GET['quote_id'])) {
|
||||
</div>
|
||||
|
||||
<div class="col-sm-3 offset-sm-2">
|
||||
|
||||
|
||||
<table class="table table-hover mb-0">
|
||||
<tbody>
|
||||
<tr>
|
||||
@@ -464,7 +464,7 @@ if (isset($_GET['quote_id'])) {
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -621,4 +621,4 @@ new Sortable(document.querySelector('table#items tbody'), {
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<link rel="stylesheet" href="css/quote_dropdowns_fix.css">
|
||||
<link rel="stylesheet" href="css/quote_dropdowns_fix.css">
|
||||
|
||||
Reference in New Issue
Block a user