Merge pull request #40960 from abhaynikam/40956-route-table-dark-mode

Fixes the route table CSS for dark mode
This commit is contained in:
Rafael França 2020-12-28 23:08:46 -05:00 committed by GitHub
commit e0d3c6cb4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -51,10 +51,19 @@
}
@media (prefers-color-scheme: dark) {
body {
background-color: #222;
color: #ECECEC;
}
#route_table tbody tr:nth-child(odd) {
background: #333;
}
#route_table tbody tr:nth-child(even) {
background: #444;
}
#route_table tbody.exact_matches,
#route_table tbody.fuzzy_matches {
color: #333;