• InEnduringGrowStrong@sh.itjust.works
    link
    fedilink
    arrow-up
    87
    ·
    8 hours ago

    I hate the modern ones you need to hover above so they even display, and then it’s 1 pixel wide and a shade of grey that’s about 2% darker than white.
    Less functional and 500 lines of js garbage.

    • M137@lemmy.today
      link
      fedilink
      arrow-up
      1
      ·
      2 hours ago

      Some suck, sure, but some work well. The ones on MacOS are good IMO, and some android ones (while others absolutely suck).

    • chisel@piefed.social
      link
      fedilink
      English
      arrow-up
      17
      arrow-down
      1
      ·
      7 hours ago

      It’s a few lines of css, no JS required.

      .my-div:hover {
        overflow-x: scroll;
      }
      

      And the look and feel of the scrollbar is generally determined by the browser/OS. Unless someone does a custom scrollbar implementation, but that is exceedingly rare. So that thin rounded gray bar is a browser/OS design, again, without any JS.