Jump to content

Grid scrollbars (on mobil browsers..)


themrigi

Recommended Posts

scrollbars do not appear in android. After trying many methods but, add to "custum css" :

 

::-webkit-scrollbar {
   width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
   -webkit-border-radius: 10px;

   border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
   -webkit-border-radius: 10px;
   border-radius: 10px;
   background: rgba(255,0,0,0.8);
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
   background: rgba(255,0,0,0.4);
}

 

 

I’ve seen is enough to add. thnx

post-714-0-07164200-1336206917_thumb.png

post-714-0-33762400-1336206930_thumb.png

post-714-0-58077900-1336207223_thumb.png

post-714-0-22018100-1336207280_thumb.png

Link to comment
Share on other sites

  • 3 months later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...