Browse Source

Fix hover color for last row of repo file list (#15018)

tags/v1.15.0-dev
Mike L 3 years ago
parent
commit
0e95a41ccd
No account linked to committer's email address
1 changed files with 10 additions and 0 deletions
  1. 10
    0
      web_src/less/_repository.less

+ 10
- 0
web_src/less/_repository.less View File

@@ -343,6 +343,16 @@
cursor: default;
}

tr:last-of-type {
td:first-child {
border-bottom-left-radius: var(--border-radius);
}

td:last-child {
border-bottom-right-radius: var(--border-radius);
}
}

tr:hover {
background-color: #ffffee;
}

Loading…
Cancel
Save