itsjunetime / smserver

An app to allow Jailbroken iPhones to send texts & attachments from their browser
GNU General Public License v3.0
157 stars 26 forks source link

Feature Request for a scroll bar #91

Closed sabogalc closed 3 years ago

sabogalc commented 3 years ago

WebMessage has this implemented for both the chat list and the selected conversation, and I find it very useful. Would it be possible to implement?

itsjunetime commented 3 years ago

It would be easy to implement, however I'm (personally) not a fan of it; the scroll bars of most browsers aren't especially pretty and somewhat take away from the iMessage feel (in my opinion). However, you can easily implement the scrollbar for just your own host by adding a custom CSS file to your host device with the following content:

* {
    scrollbar-width: auto !important
}
::-webkit-scrollbar {
    display: inherit !important;
}
sabogalc commented 3 years ago

It would be easy to implement, however I'm (personally) not a fan of it; the scroll bars of most browsers aren't especially pretty and somewhat take away from the iMessage feel (in my opinion). However, you can easily implement the scrollbar for just your own host by adding a custom CSS file to your host device with the following content:

* {
    scrollbar-width: auto !important
}
::-webkit-scrollbar {
    display: inherit !important;
}

Thank you!

Adding the directory in case I come back to this, /Applications/SMServer.app/html/custom.css