mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-05-18 18:41:48 +02:00
Merge pull request #84 from PhoenixTwoFive/83-dark-mode-is-broken
Fix dark mode styling
This commit is contained in:
commit
cc4c538e91
@ -298,7 +298,7 @@ def transfer_playbacks():
|
|||||||
ON DUPLICATE KEY
|
ON DUPLICATE KEY
|
||||||
UPDATE Playbacks = lts.Playbacks + VALUES(Playbacks);
|
UPDATE Playbacks = lts.Playbacks + VALUES(Playbacks);
|
||||||
""")
|
""")
|
||||||
result = conn.execute(stmt)
|
conn.execute(stmt)
|
||||||
conn.commit()
|
conn.commit()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -63,9 +63,14 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table {
|
||||||
|
color: var(--text-color);
|
||||||
|
}
|
||||||
|
|
||||||
table td {
|
table td {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
color: var(--text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
table.entries tbody tr[data-index="0"] {
|
table.entries tbody tr[data-index="0"] {
|
||||||
@ -234,5 +239,8 @@ pre {
|
|||||||
/* Toasts */
|
/* Toasts */
|
||||||
--toast-background-color: #232323;
|
--toast-background-color: #232323;
|
||||||
--toast-text-color: #f5f5f5;
|
--toast-text-color: #f5f5f5;
|
||||||
|
|
||||||
|
/* Tables */
|
||||||
|
--table-border-color: #232323;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user