How can I create a media query breakpoint that will never be chosen, on any device?
I've seen people use things like only speech or only screen and (min-width: 1000em) but these look like awkward cases waiting to happen. I'd also like something that is more clean and intuitive to any other developers reading the code.
Is it possible to create an impossible media query?
If anyone is wondering "Why would you do this?", in my case it's because I'm trying to turn off a condition in a 3rd party module which is hard-coded to do something undesirable at a certain breakpoint if a certain media query is met. Basically, it has an unnecessary wide screen view that needlessly removes useful features.
This 3rd party module doesn't let me turn off this condition or modify the undesirable behaviour, without hacking core module code which would break with future updates, but it does allow me to override its default media queries with any string. So, I'm looking for the cleanest possible impossible media query to associate with the undesirable behaviour, so that it never happens.