Skip to content

Instantly share code, notes, and snippets.

@thomasmichaelwallace
Created August 7, 2017 20:27
Show Gist options
  • Save thomasmichaelwallace/da94ba0a643a89dc545321897a650b20 to your computer and use it in GitHub Desktop.
Save thomasmichaelwallace/da94ba0a643a89dc545321897a650b20 to your computer and use it in GitHub Desktop.
A fun fix for JIRA's default filters cluttering up submenus.
@-moz-document regexp('https://.*\\.atlassian\\.net/secure/.*') {
#filter_lnk_all {
display: none;
}
#filter_lnk_my {
display: none;
}
#filter_lnk_reported {
display: none;
}
#filter_lnk_open {
display: none;
}
#filter_lnk_done {
display: none;
}
#filter_lnk_recently {
display: none;
}
#filter_lnk_created {
display: none;
}
#filter_lnk_resolvedrecently {
display: none;
}
#filter_lnk_updatedrecently {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment