Compare commits

...

3 Commits

Author SHA1 Message Date
cc4c538e91
Merge pull request #84 from PhoenixTwoFive/83-dark-mode-is-broken
Fix dark mode styling
2024-03-15 15:51:05 +01:00
a03c1c41bb
Fix linter complaint.
Remove unused variable assignment on SQL Query execution.
2024-03-15 15:47:39 +01:00
ed09a93b3d
Fix dark mode styling
Fixes "Dark mode is broken" #83
2024-03-15 15:43:30 +01:00
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;
}
}