mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-05-16 16:51:07 +00:00
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:
parent
710acdf809
commit
c30c6405c0
1 changed files with 9 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue