Project

General

Profile

1 1441 Luisehahne
/* Fix for funky spacing on page listing */
2
.pages_list li {
3
	margin-bottom: -2px;
4
}
5 1831 Luisehahne
table.jsadmin_drag_area {
6
    table-layout: auto;
7 1441 Luisehahne
}
8 1831 Luisehahne
table.jsadmin_drag_area tr {
9
    line-height: 2em;
10
}
11 1441 Luisehahne
12 1831 Luisehahne
body.jsadmin_busy td.content,
13
body.jsadmin_busy div.td div.content {
14
	background: url(images/busy.gif) 14px 8px no-repeat;
15 1441 Luisehahne
}
16
17 1831 Luisehahne
body.jsadmin_success td.content,
18
body.jsadmin_success div.td div.content {
19
	background: url(images/success.gif) 14px 8px no-repeat;
20 1441 Luisehahne
}
21 1831 Luisehahne
body.jsadmin_failure td.content,
22
body.jsadmin_failure div.td div.content {
23
	background: url(images/failure.gif) 14px 8px no-repeat;
24
}
25 1441 Luisehahne
26
.jsadmin_drag {
27
	cursor: move;
28
}
29
30
.jsadmin_drag a, .jsadmin_drag input, .jsadmin_drag select {
31
	cursor: pointer;
32
}
33
34
ul.jsadmin_drag_area {
35
	border: solid 1px #99f;
36 1009 Ruebenwurz
}