Skip to content

Instantly share code, notes, and snippets.

@vors
Created January 19, 2015 20:32
Show Gist options
  • Save vors/7f5124db278884a96502 to your computer and use it in GitHub Desktop.
Save vors/7f5124db278884a96502 to your computer and use it in GitHub Desktop.
Revert colors for open and closed issues in github
// past this line to dev tools console
a = $(".closed.octicon"); for (var i = 0; i < a.length; i++) { a[i].style.color = 'green'}; a = $(".open.octicon"); for (var i = 0; i < a.length; i++) { a[i].style.color = 'red'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment