Improvements to dark theme (#13139)

- Tables with white background now has dark background.
- Listbox in searchbar now has dark background.
This commit is contained in:
Facundo Caselles
2021-08-15 04:27:14 -03:00
committed by GitHub
parent 516b27f476
commit 9723c44479

View File

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