blob: 9f30efbe17f1b5d7eb8cce08bf39badefd1be11a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
@media (prefers-color-scheme: dark) {
body {
background: #222;
color: #ebebeb;
}
a {
&, &:visited {
color: #ebebeb;
background: transparent !important;
&:hover {
color: #fff;
}
}
}
h1, h2 {
background: transparent;
color: #ebebeb;
}
h2 {
border-color: #999;
}
#breadcrumb {
background: transparent;
margin: 0;
}
#menu {
width: 21em;
}
#content {
margin-left: 22em;
}
.footer {
border-top-color: transparent;
border-image: none;
& > div {
background: #222;
}
}
td,
tbody th {
background: transparent !important;
}
th,
thead td,
tr.checked td,
tr:hover td {
background: #333 !important;
}
td, th {
padding: 0.1rem 0.4rem;
}
.column {
background: #222 !important;
}
code {
background: transparent;
padding: 0.1rem 0.2rem;
}
.jush, .jush a {
color: #ebebeb;
}
.jush-sqlite_quo {
color: inherit;
}
.jush-num {
color: inherit;
}
.jush-quo {
color: inherit;
}
.error, .message {
background: #333;
color: #ebebeb;
b {
background: #222;
padding: 0 0.2rem;
}
}
#help {
background: #333;
}
input, select {
background: #333;
color: #ebebeb;
border: 1px solid #777;
}
input[type="submit"] {
cursor: pointer;
padding: 0.1rem 0.4rem;
line-height: 1rem;
&:hover {
background: #ebebeb;
color: #222;
}
}
}
|