Project

General

Profile

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