I get complaints that people don't know they can scroll down on iPads because there are no scroll bars. Scrolling does work fine, however. I guess it just isn't apparent to some. Thanks
Solved! Go to Solution.
Jay,
I thing about this is IOS/apple specific and is the norm for apple they remove the scroll bar for some reason. You can add this css to your apps theme common.css using this and it will show a scrollbar but it will not really work.
.esriPopup .contentPane::-webkit-scrollbar {
-webkit-appearance: none;
}
.esriPopup .contentPane::-webkit-scrollbar:vertical {
width: 11px;
}
.esriPopup .contentPane::-webkit-scrollbar:horizontal {
height: 11px;
}
.esriPopup .contentPane::-webkit-scrollbar-thumb {
border-radius: 8px;
border: 2px solid white; /* should match background, can't be transparent */
background-color: rgba(0, 0, 0, .5);
}
.esriPopup .contentPane::-webkit-scrollbar-track {
background-color: #fff;
border-radius: 8px;
}
Jay,
I thing about this is IOS/apple specific and is the norm for apple they remove the scroll bar for some reason. You can add this css to your apps theme common.css using this and it will show a scrollbar but it will not really work.
.esriPopup .contentPane::-webkit-scrollbar {
-webkit-appearance: none;
}
.esriPopup .contentPane::-webkit-scrollbar:vertical {
width: 11px;
}
.esriPopup .contentPane::-webkit-scrollbar:horizontal {
height: 11px;
}
.esriPopup .contentPane::-webkit-scrollbar-thumb {
border-radius: 8px;
border: 2px solid white; /* should match background, can't be transparent */
background-color: rgba(0, 0, 0, .5);
}
.esriPopup .contentPane::-webkit-scrollbar-track {
background-color: #fff;
border-radius: 8px;
}
Thanks Robert.
Jay,
Don't forget to mark this question as answered by clicking on the "Correct Answer" link on the reply that answered your question.
These "new" forums are taking some getting used to for me. Done!