Skip to content

Instantly share code, notes, and snippets.

@techtangents
Created April 5, 2013 02:53
Show Gist options
  • Save techtangents/5316244 to your computer and use it in GitHub Desktop.
Save techtangents/5316244 to your computer and use it in GitHub Desktop.
How to remove the horrible hover menu popups in Jenkins.
Install "Simple Theme Plugin" - this gives you some theme settings
Configure System > URL of theme CSS = /userContent/noBreadcrumbPopups.css
This maps to something like /var/lib/jenkins/home/userContent/noBreadcrumbPopups.css
Create this file with contents:
#breadcrumb-menu, #breadcrumb-menu * {
display: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment