Created
April 5, 2013 02:53
-
-
Save techtangents/5316244 to your computer and use it in GitHub Desktop.
How to remove the horrible hover menu popups in Jenkins.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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