Skip to content

Instantly share code, notes, and snippets.

@anasnakawa
Created June 21, 2021 17:36
Show Gist options
  • Save anasnakawa/79bca760d03169e36e72fe4c6108e601 to your computer and use it in GitHub Desktop.
Save anasnakawa/79bca760d03169e36e72fe4c6108e601 to your computer and use it in GitHub Desktop.
/**
* when you open https://status.aws.amazon.com/, trying to find what went wrong on a specific day,
* it can become hard to notice the blue & yellow circles among thousands of green check marks
* open the developer tools, and add the following css, and you'll only see errors
*/
/* hide green mark */
img[src*="/images/status0.gif"],
/* hide disabled (-) mark */
img[src*="status-disabled.gif"] {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment