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 |
1840
|
Luisehahne
|
body.jsadmin_busy .content {
|
13 |
1831
|
Luisehahne
|
background: url(images/busy.gif) 14px 8px no-repeat;
|
14 |
1441
|
Luisehahne
|
}
|
15 |
|
|
|
16 |
1840
|
Luisehahne
|
body.jsadmin_success .content {
|
17 |
1831
|
Luisehahne
|
background: url(images/success.gif) 14px 8px no-repeat;
|
18 |
1441
|
Luisehahne
|
}
|
19 |
1840
|
Luisehahne
|
|
20 |
|
|
body.jsadmin_failure .content {
|
21 |
1831
|
Luisehahne
|
background: url(images/failure.gif) 14px 8px no-repeat;
|
22 |
|
|
}
|
23 |
1441
|
Luisehahne
|
|
24 |
|
|
.jsadmin_drag {
|
25 |
|
|
cursor: move;
|
26 |
|
|
}
|
27 |
|
|
|
28 |
|
|
.jsadmin_drag a, .jsadmin_drag input, .jsadmin_drag select {
|
29 |
|
|
cursor: pointer;
|
30 |
|
|
}
|
31 |
|
|
|
32 |
|
|
ul.jsadmin_drag_area {
|
33 |
|
|
border: solid 1px #99f;
|
34 |
1009
|
Ruebenwurz
|
}
|