diff --git a/plugins/box/filesmanager/views/backend/index.view.php b/plugins/box/filesmanager/views/backend/index.view.php index 9894acd..d0dcc84 100755 --- a/plugins/box/filesmanager/views/backend/index.view.php +++ b/plugins/box/filesmanager/views/backend/index.view.php @@ -7,7 +7,7 @@ Form::open(null, array('enctype' => 'multipart/form-data')). Form::hidden('csrf', Security::token()). Form::input('file', null, array('type' => 'file', 'size' => '25')).Html::br(). - Form::submit('upload_file', __('Upload', 'filesmanager'), array('class' => 'btn btn-small')). + Form::submit('upload_file', __('Upload', 'filesmanager'), array('class' => 'btn')). Form::close() ) ?> @@ -39,10 +39,10 @@
- | - | - | + | + | + | + |
+
'btn', 'onclick' => "return confirmDelete('".__('Delete directory: :dir', 'filesmanager', array(':dir' => $dir))."')"));
+ array('class' => 'btn btn-small', 'onclick' => "return confirmDelete('".__('Delete directory: :dir', 'filesmanager', array(':dir' => $dir))."')"));
?>
+ |
@@ -78,10 +80,12 @@
+
'btn btn-actions', 'onclick' => "return confirmDelete('".__('Delete file: :file', 'filesmanager', array(':file' => $file))."')"));
+ array('class' => 'btn btn-small', 'onclick' => "return confirmDelete('".__('Delete file: :file', 'filesmanager', array(':file' => $file))."')"));
?>
+
|
---|