blob: 9eba32f0b7f56b4bc3bbbb9f05c6bf89a74af45c (
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
|
/* Field display */
.field .field-label {
font-weight: bold;
}
.field-label-inline .field-label,
.field-label-inline .field-items {
float:left; /*LTR*/
}
/* Form display */
form .field-multiple-table {
margin: 0;
}
form .field-multiple-table th.field-label {
padding-left: 0; /*LTR*/
}
form .field-multiple-table td.field-multiple-drag {
width: 30px;
padding-right: 0; /*LTR*/
}
form .field-multiple-table td.field-multiple-drag a.tabledrag-handle {
padding-right: .5em; /*LTR*/
}
form .field-add-more-submit {
margin: .5em 0 0;
}
|