This commit is contained in:
czaks 2014-09-27 11:26:41 +02:00
commit 9b466f74a6
2 changed files with 7 additions and 1 deletions

View File

@ -21,7 +21,9 @@ function multi_image() {
var new_file = '<br class="file_separator"/><input type="file" name="file'+(images_len+1)+'" id="upload_file'+(images_len+1)+'">';
$('[type=file]:last').after(new_file);
$('form:not([id="quick-reply"]) [type=file]:last').after(new_file);
if ($("#quick-reply").length) {
$('form:not(#quick-reply) [type=file]:last').after(new_file);
}
if (typeof setup_form !== 'undefined') setup_form($('form[name="post"]'));
}
})

View File

@ -102,6 +102,10 @@ input[type="text"], input[type="password"], textarea {
max-width: 75%;
}
#quick-reply input[type="text"], input[type="password"], #quick-reply textarea {
max-width: 100%;
}
form table tr td {
text-align: left;
margin: 0;