From e4351601a7ced91bf5a2c516a38db714d43e6ecf Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Mon, 8 Jan 2024 22:28:02 +0100 Subject: send resources + adminer css --- docker/adminer.css | 113 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 docker/adminer.css (limited to 'docker/adminer.css') diff --git a/docker/adminer.css b/docker/adminer.css new file mode 100644 index 0000000..9f30efb --- /dev/null +++ b/docker/adminer.css @@ -0,0 +1,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; + } + } +} -- cgit v1.2.3