diff options
Diffstat (limited to 'adminer.css')
-rw-r--r-- | adminer.css | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/adminer.css b/adminer.css new file mode 100644 index 0000000..bd1c270 --- /dev/null +++ b/adminer.css @@ -0,0 +1,97 @@ +@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; + } + + .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; + } + + .column { + background: #222 !important; + } + + code { + background: transparent; + } + .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; + } + } + + #help { + background: #333; + } + + input, select { + background: #333; + color: #ebebeb; + border: 1px solid #777; + } + + input[type="submit"] { + cursor: pointer; + + &:hover { + background: #ebebeb; + color: #222; + } + } +} |