Update to fix table row color and hover color (#13244)

The last update changed row color for all rows except the first instead of changing color for every 2nd row.
This commit is contained in:
Martin
2021-09-15 17:43:36 +02:00
committed by GitHub
parent f3fa2ce1e2
commit a357224465

View File

@@ -7213,11 +7213,11 @@
.expandable:hover span {
background-color: #2e3338;
}
table tr:not(:first-child){
background: #3e444c!important;
table tr:nth-child(odd){
background: #2a2e33!important;
}
table tr:not(:first-child):hover{
background: #4f565f!important;
table tr:hover{
background: #2d3237!important;
}
div[role=listbox]{
background: rgb(70, 76, 83);