blob: f2f9f1ddbe00d0717e26dfddb08507070d317014 (
plain) (
blame)
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
|
#datastore_search {
margin-bottom: 1em;
}
#hint {
background-color: #F6F9FF;
border: 1px solid #E5ECF9;
margin-bottom: 1em;
padding: 0.5em 1em;
}
#message {
color: red;
position: relative;
bottom: 6px;
}
#pagetotal {
float: right;
}
#pagetotal .count {
font-weight: bold;
}
table.entities {
border: 1px solid #c5d7ef;
border-collapse: collapse;
width: 100%;
margin-bottom: 0;
}
table.entities th, table.entities td {
padding: .25em 1.5em .5em .5em;
}
table.entities th {
font-weight: bold;
text-align: left;
background: #e5ecf9;
white-space: nowrap;
}
table.entities th a, table.entities th a:visited {
color: black;
text-decoration: none;
}
table.entities td {
background-color: #fff;
text-align: left;
vertical-align: top;
cursor: pointer;
}
table.entities tr.even td {
background-color: #f9f9f9;
}
div.entities {
background-color: #c5d7ef;
margin-top: 0;
}
#entities-pager, #entities-control {
padding: .3em 1em .4em 1em;
}
#entities-pager {
text-align: right;
}
|