- Install Simple Theme Plugin.
- Put rows.css to
.jenkins/userContent/rows.css
. - Go to
http://localhost:8080/configure
. URL of theme CSS
set tohttp://localhost:8080/userContent/rows.css
.- Save and Reload page.
Created
October 21, 2014 23:03
-
-
Save havramar/9ba703dae8c7540b349e to your computer and use it in GitHub Desktop.
Jenkins theme - table rows background highlight on hover
This file contains hidden or 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
.bigtable tr:hover td { | |
background-color: aliceblue; | |
} | |
tr.build-row:hover td { | |
background-color: aliceblue; | |
} | |
table.global-matrix-authorization-strategy-table tr:hover td { | |
background-color: aliceblue; | |
} | |
tr.row-set-start:hover td { | |
background-color: aliceblue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I suggest the following changes:
td
: it overrides the "Build history" progress bar which is implemented as a tabletr.build-row:hover
: it's already handled by the default theme (at least since current jenkins version 1.634)tr.build-row:hover
:background: #e8e8e8 !important;
.tabBar .tab a.addTab:hover
:background: #d8efff
Final result: