Make rename dialog smaller, but the input wider
This commit is contained in:
parent
45430717d5
commit
31587cfdf7
2 changed files with 4 additions and 2 deletions
|
@ -535,7 +535,9 @@ function kolab_files_file_rename_dialog(file)
|
|||
kolab_dialog_show(dialog, {
|
||||
title: rcmail.gettext('kolab_files.renamefile'),
|
||||
buttons: buttons,
|
||||
button_classes: ['mainaction']
|
||||
button_classes: ['mainaction'],
|
||||
minHeight: 100,
|
||||
height: 200
|
||||
});
|
||||
};
|
||||
|
||||
|
|
|
@ -338,7 +338,7 @@ class kolab_files_engine
|
|||
$attrib['id'] = 'file-rename-form';
|
||||
}
|
||||
|
||||
$input_name = new html_inputfield(array('id' => 'file-rename-name', 'name' => 'name', 'size' => 30));
|
||||
$input_name = new html_inputfield(array('id' => 'file-rename-name', 'name' => 'name', 'size' => 50));
|
||||
$table = new html_table(array('cols' => 2, 'class' => 'propform'));
|
||||
|
||||
$table->add('title', html::label('file-rename-name', rcube::Q($this->plugin->gettext('filename'))));
|
||||
|
|
Loading…
Add table
Reference in a new issue