I have been attempting without success to hide the spinner in number input fields for a single field using LESS.
I have been referring to the following SO Post: Post
I have tried the following with both the input-wrapper class and the class I have assigned to the input itself without any success.
.input-wrapper {
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance:textfield;
}
}
Does anyone have any idea of how to do this?