chg: [decaying] slight UI Improvement - WiP

pull/5032/head
mokaddem 2019-04-12 09:27:41 +02:00
parent 52fda6dc90
commit 71b31e0e6a
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
</td>
<td>
<input id="slider_<?php echo h($name) ?>" data-taxonomyname="<?php echo h($name) ?>" type="range" min=0 max=100 step=1 value="<?php echo isset($taxonomy['value']) ? h($taxonomy['value']) : 0 ?>" onchange="sliderChanged(this);" oninput="sliderChanged(this);"></input>
<input type="number" min=0 max=100 step=1 value="<?php echo isset($taxonomy['value']) ? h($taxonomy['value']) : 0 ?>" style="display: inline-block; margin-left: 5px; width: 40px;" onchange="inputChanged(this);" oninput="inputChanged(this);"></input>
<input type="number" min=0 max=100 step=1 value="<?php echo isset($taxonomy['value']) ? h($taxonomy['value']) : 0 ?>" style="display: inline-block; margin-left: 5px; margin: 0px; width: 40px;" onchange="inputChanged(this);" oninput="inputChanged(this);"></input>
</td>
</tr>
<?php endforeach; ?>