fixed lightmode css. related to #12
This commit is contained in:
parent
5ee8280e3e
commit
e714547b22
1 changed files with 23 additions and 1 deletions
|
|
@ -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{
|
||||
|
|
|
|||
Loading…
Reference in a new issue