Page 1 of 1

Scrollbar on apple devices

Posted: Fri Feb 09, 2018 5:56 pm
by boasey
Hi,

Does anyone know how to get the scrollbars to show the scrolling bar as it does on android devices (see pic) otherwise you are not aware that there may be other panos in the dropdown menu. I have tried styling it in css but that didn't have any effect on the apple devices.

Thanks in advance!

Image

Re: Scrollbar on apple devices

Posted: Wed Feb 14, 2018 9:18 pm
by Hopki
Hi,
Which element are you referring to, text box, scroll area?
Do you have an example, link to a pano online.
Regards,
Hopki

Re: Scrollbar on apple devices

Posted: Sat Feb 17, 2018 4:51 pm
by boasey
Hi Hopki, you can see an example in the attached image in my first post. Don't know why it doesn't show the image in the forum but here is the link to the image.

http://www.wyrewebdesign.co.uk/scrollbar.jpg


Image

Ta!

Re: Scrollbar on apple devices

Posted: Sat Feb 17, 2018 5:06 pm
by 360Texas
You wrote
Don't know why it doesn't show the image in the forum but here is the link to the image.
To attach your image (read .jpg should be about 800 pixels wide to fit forum comment width) bottom forum comment area, click the 3 --- tab on right of OPTIONS, add your image, click place [link code] into comment area and submit.
ADD Attachments, [Place inline] button
ADD Attachments, [Place inline] button
3barbutton.JPG (12.6 KiB) Viewed 3490 times

Re: Scrollbar on apple devices

Posted: Sun Feb 18, 2018 12:36 pm
by boasey
Gotcha...thanks 360Texas
scrollbar.jpg
scrollbar.jpg (142.29 KiB) Viewed 3478 times

Re: Scrollbar on apple devices

Posted: Tue Feb 20, 2018 11:12 am
by Hopki
Hi,
I have written up a bug report for this.
Regards,
Hopki

Re: Scrollbar on apple devices

Posted: Wed Feb 21, 2018 11:43 am
by boasey
Cheers Hopki!

Re: Scrollbar on apple devices

Posted: Wed Feb 21, 2018 12:16 pm
by christoph
Hi Boasey!
Not showing a scroller until you interact with a scroll area is standard in iOS.
BUT: if you really want a scroller to be always visible, you can achieve this by:
- open the skin editor and select the scroll area element
- in the advanced settings, put the following css styles into the CSS Styles input field:

Code: Select all

-webkit-overflow-scrolling: auto;
-webkit-scrollbar: {-webkit-appearance: none; width: 8px;}
Regards,
Christoph

Re: Scrollbar on apple devices

Posted: Wed Feb 28, 2018 5:05 pm
by boasey
Thanks Cristoph,

only just seen your reply so I'll give it a go.

John