Sometimes, instead of selecting the value from a field, I end up selecting a small label within the field.
I suggest adding the following properties to the CSS for .input-block>label:
user-select: none; – to prevent accidental text selection;
pointer-events: none; – to ensure that clicks pass through to the input field rather than targeting the label text.
Sometimes, instead of selecting the value from a field, I end up selecting a small label within the field.
I suggest adding the following properties to the CSS for
.input-block>label:user-select: none;– to prevent accidental text selection;pointer-events: none;– to ensure that clicks pass through to the input field rather than targeting the label text.