12-20-2019, 03:14 PM (This post was last modified: 12-20-2019, 03:14 PM by waffle.)
Not really a feature...
On mobile touch devices an ugly blue rectagle appears around every button you press.
Hiding it would make the web ui feel more like an app.
.btn:active {color:var(--textvariant);} /* this needs to be a separate rule */
You probably don’t need to worry about anything but buttons but either way use .btn because sometimes people used that class on non-button tags. The :focus was already handled in primordial bootstrap css, the :active shows the press as doing something but at least on iOS you need to do a bit more work to get that to work.