react-html5video icon indicating copy to clipboard operation
react-html5video copied to clipboard

Range input thumb blocks mouse input

Open codeincontext opened this issue 8 years ago • 0 comments

If you click somewhere on the volume slider that's near the existing value nothing happens. This is because you're actually clicking on the draggable 'thumb', not the track

Adding this solves the problem in Chrome:

      input[type='range']::-webkit-slider-thumb {
        pointer-events: none;
      }

Could be an easy PR for a beginner

codeincontext avatar Sep 11 '17 20:09 codeincontext