Added top margin for selects in tabular inlines and excluded date and time fields (this requires more care, added FIXME).

This commit is contained in:
Dirk Eschler 2013-02-26 17:55:17 +01:00
parent 710acdf809
commit c30c6405c0

View file

@ -79,10 +79,16 @@ backward compatibility:
font-family: "Lucida Grande", "DejaVu Sans", "Bitstream Vera Sans", Verdana,Arial, sans-serif;
}
.inline-group .tabular tr td input,
.inline-group .tabular tr td textarea {
margin-top: 3.4em;
.inline-group .tabular tr td textarea,
.inline-group .tabular tr td select {
/* FIXME: Mixing em and px doesn't give accurate results and some types have to be
handled individually */
margin-top: 3.3em;
}
.inline-group .tabular tr td.ui-tabs input,
.inline-group .tabular tr td.ui-tabs textarea {
.inline-group .tabular tr td input.vDateField,
.inline-group .tabular tr td input.vTimeField,
.inline-group .tabular tr td.ui-tabs textarea,
.inline-group .tabular tr td.ui-tabs select {
margin-top: 0;
}