fixed lightmode css. related to #12

This commit is contained in:
mic 2024-05-13 23:29:31 +02:00
parent 5ee8280e3e
commit e714547b22

View file

@ -1,3 +1,22 @@
@media (prefers-color-scheme: light) {
table th {
background-color: #ffffff;
}
#command_palette{
background-color: #ffffff;
}
table tr:nth-child(even) {
background-color: #e9e9e9;
}
table tr:nth-child(odd) {
background-color: #f3f3f3;
}
}
@media (prefers-color-scheme: dark) {
body {
background-color: #1C1B22;
@ -20,6 +39,10 @@
color: rgb(194, 194, 194);
}
#command_palette{
background-color: inherit;
}
table tr:nth-child(even) {
background-color: #2E2F36;
}
@ -42,7 +65,6 @@ thead {
padding-top: 1px;
height: 26px;
width: 100%;
background-color: inherit;
}
#btnNew{