29
Byomeer
3y

When a website enforces "overflow: hidden" on all content elements, so you hit them with the good ol'

for(let e of document.querySelectorAll("*")) {
e.style.overflow = "scroll";
}

Comments
  • 9
    but y you want to do that tho?
  • 17
    * { overflow: scroll !important; }

    Shorter. Offloads to browser.
  • 7
    @N00bPancakes Because why not!

    I rather like having everything rotated 8.3º, for example, just because. Or a drop shadow on everything.
  • 6
    @N00bPancakes because I can scroll wherever i want to scroll and not just where THEY want me to scroll. Seriously, there should be a mechanic to deny websites to set the overflow property of the body or html element...
  • 1
    @Byomeer Obviously, you need a switch to disable all Stylesheets all together.
  • 1
    @Byomeer Yeah scroll should be left alone for sure.

    I was more so wondering ... like if it actually got you anything of much value and etc.
  • 3
    @N00bPancakes > y you want to do that tho?

    Why anything? https://en.wikipedia.org/wiki/...

    Embrace the nonsense that is life.
  • 3
    @Root here's another one for you

    * {opacity: 0 !important;}
    *:hover {opacity: 1 !important}

    Ultimate zen mode.
  • 0
    @junon if you added a fade, I would absolutely agree 🤍
  • 1
    @Root

    * { opacity: 0 !important; transition: opacity 0.5s linear !important }
    *:hover { opacity: 1 !important ;}

    wish granted!
  • 2
    @junon I wouldn’t waste a wish on that, silly.
  • 3
    @junon @Root I'll do you one better
    * { opacity: 0 !important; transition: opacity 10s linear !important }
    *:hover { opacity: 1 !important; transition: opacity 0.2s linear !important }
    For a slow fade out
  • 1
    @Byomeer oh god pls use auto instead of scroll haha
  • 0
    @rutee07 some stuff from don't starve
Add Comment