summaryrefslogtreecommitdiff
path: root/adminer.css
blob: bd1c2700ec394176918755d8a35cf021b7b27ae7 (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
@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;
    }
  }
}