Improvement: Increase click area for arrows (#5264)

This commit is contained in:
Sean 2018-09-15 15:22:10 -04:00 committed by Whymarrh Whitby
parent 9ad3fa80f3
commit cd28dbb1d5
2 changed files with 18 additions and 6 deletions

View File

@ -66,13 +66,16 @@ InputNumber.prototype.render = function () {
}),
h('span.gas-tooltip-input-detail', {}, [unitLabel]),
h('div.gas-tooltip-input-arrows', {}, [
h('i.fa.fa-angle-up', {
h('div.gas-tooltip-input-arrow-wrapper', {
onClick: () => this.setValue(addCurrencies(value, step, { toNumericBase: 'dec' })),
}),
h('i.fa.fa-angle-down', {
style: { cursor: 'pointer' },
}, [
h('i.fa.fa-angle-up'),
]),
h('div.gas-tooltip-input-arrow-wrapper', {
onClick: () => this.setValue(subtractCurrencies(value, step, { toNumericBase: 'dec' })),
}),
}, [
h('i.fa.fa-angle-down'),
]),
]),
])
}

View File

@ -888,12 +888,21 @@
font-size: 18px;
color: $tundora;
right: 0px;
padding: 1px 4px;
padding: 0;
display: flex;
justify-content: space-around;
align-items: center;
}
.gas-tooltip-input-arrow-wrapper {
align-items: center;
align-self: stretch;
display: flex;
flex-direction: column;
flex-grow: 1;
justify-content: center;
}
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
display: none;