summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-01-08 22:28:02 +0100
committerDaniel Weipert <git@mail.dweipert.de>2024-01-08 22:28:02 +0100
commite4351601a7ced91bf5a2c516a38db714d43e6ecf (patch)
tree045b0fb41621aab160cca3b24fd4184e1d8db9c2 /docker
parent82875448c485d26375ed6dea4e64e940f6e10f74 (diff)
send resources + adminer css
Diffstat (limited to 'docker')
-rw-r--r--docker/adminer.css113
1 files changed, 113 insertions, 0 deletions
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;
+ }
+ }
+}