beerslider icon indicating copy to clipboard operation
beerslider copied to clipboard

Problems with handle on Iphone 6s

Open mumus opened this issue 5 years ago • 1 comments

Plugin works very weird, sometimes it won't drag handle on iphone safari

mumus avatar Nov 02 '19 15:11 mumus

I found a problem. I set:

.beer-range{
        opacity: 1 !important;
}

And saw On a mobile device, you have to hit the slider with your finger, not the .beer-handle, because slider thumb is much smaller than .beer-handle.

Фото 02 11 2019, 19 49 03

To resolve that problem i found a solution:

[type=range]::-webkit-slider-thumb{
        -webkit-appearance: none !important;
        height: 48px;
        width: 80px;
        border-radius: 2px;
        display: block;
}

Width and height should be about the same size of handle: Фото 02 11 2019, 19 54 29

mumus avatar Nov 02 '19 16:11 mumus