Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions src/main/webapp/css/jenkins-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,15 @@ tr:last-child {
border-bottom: .5pt solid var(--medium-grey);
}

/* Add rounded border for table header hover */
table.dataTable thead > tr > th.dt-orderable-asc:hover,
table.dataTable thead > tr > th.dt-orderable-desc:hover,
table.dataTable thead > tr > td.dt-orderable-asc:hover,
table.dataTable thead > tr > td.dt-orderable-desc:hover {
outline: 1.5px solid var(--bs-table-border-color);
outline-offset: -5px;
border-radius: 10px;
/* Align DataTables header hover with Jenkins core tables */
table.dataTable thead > tr > th:hover,
table.dataTable thead > tr > td:hover {
background-color: var(--table-header-hover-bg, var(--background-hover));
box-shadow: inset 0 0 0 1px var(--table-border-color);
border-radius: 2px;
}


th.sorting, th.no-sort, th.nosort {
color: var(--text-color);
background: var(--background);
Expand Down
Loading