Although action vs state is a controversy in _buttons_, it’s not in toggles. Toggle icon should show current state! That’s the way it always worked in physical toggles

#Toggle

🎲 RANDOM MOD FOR GAME Medal Of Honor, Toggle HUD for MoH Warfighter https://www.nexusmods.com/medalofhonor/mods/3970

🎮 In MoH Warfighter you can toggle the HUD on/off in-game: press Caps Lock, or on an Xbox controller hit D-pad Right. PROTIP, one tap hides the UI.

Great for clean screenshots, streams, or just playing without the clutter.

#SteamAndEpic #Warfighter #Toggle #HUD #MoH #RANDOM

Winding a thicker brass wire harp string onto a wooden toggle

https://makertube.net/w/9MuAwiDWyeqT8kjD2LNTS2

Winding a thicker brass wire harp string onto a wooden toggle

PeerTube
Word Navigation Pane
I REGULARLY lose Word’s navigation pane toggle. So I am writing myself an aide memoire for my future lost self at https://www.samyoung.co.nz/2025/11/word-navigation-pane.html
#Word #Navigation-Pane #Toggle

My first thought was: gray text is explaining what the toggle does. But then I read the text and it made no sense: if I _restrict_ sharing, it will allow people to save and forward?

Okay. Second idea. It might be explaining current state of the toggle. That would be wrong (don’t to this! always explain what toggle does when enabled), but at least I can understand the thinking.

So I enabled it and the grey text didn’t change. So I’m out of ideas now.

#Telegram #Toggle #Description

Another single-element toggle switch without using JS or images, just HTML and CSS.

Demo on @codepen.io: https://codepen.io/alvaromontoro/pen/XJXPddw

This one is "directional aware" and has micro-interactions, but it's using a trick so not all the toggle area is clickable... which is not ideal 😳

#css #html #toggle

@ArneBab I’m away from my computer right now, but won’t defining custom properties for ::root be cleaner and more reusable? Something like:

::root:has(#toggle:checked) {
—bg-color: black;
}

::root:has(#toggle:not(:checked)) {
—bg-color: white;
}

And then just use var(—bg-color) everywhere, without a need for duplication. Am I missing something?