Fix Firefox's textarea min-width.

This commit is contained in:
Nicolas Stepien 2012-02-01 18:50:51 +01:00
parent 4ac035da86
commit 6b806272c0
2 changed files with 6 additions and 8 deletions

View File

@ -3670,7 +3670,9 @@ a[href="javascript:;"] {\
}\ }\
textarea.field {\ textarea.field {\
min-height: 120px;\ min-height: 120px;\
width: 100%;\ }\
.field:only-child {\
min-width: 100%;\
}\ }\
.captcha {\ .captcha {\
background: #FFF;\ background: #FFF;\
@ -3682,9 +3684,6 @@ textarea.field {\
height: 57px;\ height: 57px;\
width: 300px;\ width: 300px;\
}\ }\
.field:only-child {\
width: 100%;\
}\
#qr [type=file] {\ #qr [type=file] {\
margin: 1px 0;\ margin: 1px 0;\
width: 70%;\ width: 70%;\

View File

@ -2921,7 +2921,9 @@ a[href="javascript:;"] {
} }
textarea.field { textarea.field {
min-height: 120px; min-height: 120px;
width: 100%; }
.field:only-child {
min-width: 100%;
} }
.captcha { .captcha {
background: #FFF; background: #FFF;
@ -2933,9 +2935,6 @@ textarea.field {
height: 57px; height: 57px;
width: 300px; width: 300px;
} }
.field:only-child {
width: 100%;
}
#qr [type=file] { #qr [type=file] {
margin: 1px 0; margin: 1px 0;
width: 70%; width: 70%;