Merge pull request #84 from PhoenixTwoFive/83-dark-mode-is-broken

Fix dark mode styling
This commit is contained in:
Phillip Kühne 2024-03-15 15:51:05 +01:00 committed by GitHub
commit cc4c538e91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -298,7 +298,7 @@ def transfer_playbacks():
ON DUPLICATE KEY
UPDATE Playbacks = lts.Playbacks + VALUES(Playbacks);
""")
result = conn.execute(stmt)
conn.execute(stmt)
conn.commit()
return True

View File

@ -63,9 +63,14 @@ body {
width: 100%;
}
.table {
color: var(--text-color);
}
table td {
overflow: hidden;
text-overflow: ellipsis;
color: var(--text-color);
}
table.entries tbody tr[data-index="0"] {
@ -234,5 +239,8 @@ pre {
/* Toasts */
--toast-background-color: #232323;
--toast-text-color: #f5f5f5;
/* Tables */
--table-border-color: #232323;
}
}