-
Notifications
You must be signed in to change notification settings - Fork 17
/
base.html
120 lines (120 loc) · 3.31 KB
/
base.html
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
114
115
116
117
118
119
120
<html>
<head>
<title>Mongs - MongoDB Viewer</title>
<style>
BODY {
font: normal 9pt/12pt Arial, sans-serif;
padding: 10px;
margin: 0;
}
TABLE {
border-spacing: 0;
margin: 0;
padding: 0;
width: 100%;
}
TH, TD {
vertical-align: top;
}
TH {
text-align: right;
padding: 0;
width: 100px;
font-weight: normal;
}
TD {
padding: 0 0 0 10px;
}
TR.big TH {
height: 40px;
border-right: 2px solid gray;
}
TR.big TD {
padding-top: 10px;
font-weight: bold;
}
TR.big.listing TD {
font-weight: normal;
padding-bottom: 10px;
}
TR.big TD,
TR.big TH {
border-top: 1px solid #CCC ! important;
}
TR.server TH { border-color: orange; }
TR.database TH { border-color: red; }
TR.collection TH { border-color: green; }
TR.document TH { border-color: blue; }
TR.document TD { font-weight: normal; color: #999; }
TR.attribute TH {
border-right: 2px solid blue;
}
TR.attribute TH SPAN {
color: #999;
padding: 2px 10px;
}
TR.attribute TD {
padding: 2px 10px;
}
TH {
min-width: 110px; /* avoid jumpiness when we pluralize */
}
TH DIV {
position: relative;
}
TH A,
TH SPAN {
display: block;
padding: 10px;
color: black;
text-decoration: none;
}
TH A:hover::after {
content: "s";
}
TH SPAN A {
padding: 0;
}
TR.attribute SPAN.bytes {
color: #999;
}
TR.attribute A {
ont: normal 10px/10px Verdana, sans-serif;
}
TR.attribute TH SPAN.inner {
display: inline;
margin: 0;
padding: 0;
}
TR.attribute TH SPAN.filtered {
color: black;
}
TR.attribute TH SPAN.ascending:before {
content: "\2191\00A0";
color: black;
}
TR.attribute TH SPAN.descending:before {
content: "\2193\00A0";
color: black;
}
TH SPAN.indexed {
background: #FFFE98;
}
TH SPAN.note {
margin: 0;
padding: 0;
font-size: 9px;
line-height: 10px;
color: #999;
white-space: nowrap;
}
PRE {
margin: 0 0 1em;
padding: 0;
}
</style>
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>