mirror of https://github.com/django/django.git
Fixed #11203 -- Stopped some form fields in the admin from rendering incorrectly in RTL mode when using Internet Explorer.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16065 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
f4be8bd53d
commit
157255fd98
|
@ -213,9 +213,20 @@ fieldset .field-box {
|
||||||
padding-left: inherit;
|
padding-left: inherit;
|
||||||
left: 10px;
|
left: 10px;
|
||||||
right: inherit;
|
right: inherit;
|
||||||
|
float:left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inline-related h3 span.delete label {
|
.inline-related h3 span.delete label {
|
||||||
margin-left: inherit;
|
margin-left: inherit;
|
||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* IE7 specific bug fixes */
|
||||||
|
|
||||||
|
div.colM {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submit-row input {
|
||||||
|
float: left;
|
||||||
|
}
|
Loading…
Reference in New Issue