Skip to content

Instantly share code, notes, and snippets.

@maxme
Created November 1, 2013 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxme/7268080 to your computer and use it in GitHub Desktop.
Save maxme/7268080 to your computer and use it in GitHub Desktop.
function reduce_tqr_time_font_size() {
var a = document.querySelectorAll("tr span");
var i = 0;
for (i = 0; i < a.length; i++) {
a[i].setAttribute("style", "font-size: 0.7em");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment