Fix for Issue #30

This commit is contained in:
Carve 2023-09-06 19:45:48 -04:00
parent 2d79204b55
commit 7b5f174c07
2 changed files with 353 additions and 351 deletions

View File

@ -22,8 +22,8 @@
.dynamicTable tbody tr.selected,
.dynamicTable tbody tr:hover {
background-color: #747474;
color: #f7f7f7;
background-color: var(--darkmode-text-alt);
color: var(--darkmode-background);
}
#transferList tr:hover {

View File

@ -91,10 +91,12 @@ body {
font-family: 'Google Sans', -apple-system, 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
font-size: 14px;
}
.button:hover {
background: linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
background-color: #6c7c7c;
}
.button:active {
position: relative;
top: 1px;
@ -246,7 +248,7 @@ hr {
}
.selectedFilter {
background-color: #999;
background-color: var(--darkmode-text-alt);
color: var(--darkmode-background);
}