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.selected,
.dynamicTable tbody tr:hover { .dynamicTable tbody tr:hover {
background-color: #747474; background-color: var(--darkmode-text-alt);
color: #f7f7f7; color: var(--darkmode-background);
} }
#transferList tr:hover { #transferList tr:hover {

View File

@ -60,7 +60,7 @@ body {
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 1.25em; background-size: 1.25em;
display:inline-block; display: inline-block;
bottom: 8px; bottom: 8px;
} }
@ -83,21 +83,23 @@ body {
.button { .button {
padding: 4px 4px; padding: 4px 4px;
background-color: #333; background-color: #333;
border-radius:2px; border-radius: 2px;
border:1px solid #dcdcdc; border: 1px solid #dcdcdc;
display:inline-block; display: inline-block;
cursor:pointer; cursor: pointer;
color: #FFF; color: #FFF;
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-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; font-size: 14px;
} }
.button:hover { .button:hover {
background:linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%); background: linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
background-color:#6c7c7c; background-color: #6c7c7c;
} }
.button:active { .button:active {
position:relative; position: relative;
top:1px; top: 1px;
} }
input[type="file"] { input[type="file"] {
@ -116,13 +118,13 @@ input[type="file"] {
} }
.custom-file-upload:hover { .custom-file-upload:hover {
background:linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%); background: linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
background-color:#6c7c7c; background-color: #6c7c7c;
} }
.custom-file-upload:active { .custom-file-upload:active {
position:relative; position: relative;
top:1px; top: 1px;
} }
/* Typography */ /* Typography */
@ -246,7 +248,7 @@ hr {
} }
.selectedFilter { .selectedFilter {
background-color: #999; background-color: var(--darkmode-text-alt);
color: var(--darkmode-background); color: var(--darkmode-background);
} }