diff --git a/plugins/box/themes/views/backend/add.view.php b/plugins/box/themes/views/backend/add.view.php index c6ca8e9..70c28f9 100644 --- a/plugins/box/themes/views/backend/add.view.php +++ b/plugins/box/themes/views/backend/add.view.php @@ -40,7 +40,7 @@ echo ( Html::br(2). - Form::submit('add_file_and_exit', __('Save and Exit', 'themes'), array('class' => 'btn')).Html::nbsp(2). - Form::submit('add_file', __('Save', 'themes'), array('class' => 'btn')). + Form::submit('add_file_and_exit', __('Save and Exit', 'themes'), array('class' => 'btn btn-primary')).Html::nbsp(2). + Form::submit('add_file', __('Save', 'themes'), array('class' => 'btn btn-default')). Form::close() ); diff --git a/plugins/box/themes/views/backend/edit.view.php b/plugins/box/themes/views/backend/edit.view.php index 0ae7a75..18dee2c 100644 --- a/plugins/box/themes/views/backend/edit.view.php +++ b/plugins/box/themes/views/backend/edit.view.php @@ -48,8 +48,8 @@ echo ( Form::textarea('content', Html::toText($content), array('style' => 'width:100%;height:400px;', 'class' => 'source-editor')). Html::br(2). - Form::submit('edit_file_and_exit', __('Save and Exit', 'themes'), array('class' => 'btn')).Html::nbsp(2). - Form::submit('edit_file', __('Save', 'themes'), array('class' => 'btn')). Html::nbsp(). + Form::submit('edit_file_and_exit', __('Save and Exit', 'themes'), array('class' => 'btn btn-primary')).Html::nbsp(2). + Form::submit('edit_file', __('Save', 'themes'), array('class' => 'btn btn-default')). Html::nbsp(). Form::close() ); diff --git a/plugins/box/themes/views/backend/index.view.php b/plugins/box/themes/views/backend/index.view.php old mode 100755 new mode 100644 index 599a127..1146c55 --- a/plugins/box/themes/views/backend/index.view.php +++ b/plugins/box/themes/views/backend/index.view.php @@ -11,8 +11,8 @@ Form::open(). Form::hidden('csrf', Security::token()). Form::label('themes', __('Select Theme', 'themes')). - Form::select('themes', $themes_site, $current_site_theme, array('class' => 'input-xlarge')). Html::br(). - Form::submit('save_site_theme', __('Save', 'themes'), array('class' => 'btn')). + Form::select('themes', $themes_site, $current_site_theme, array('class' => 'form-control')). Html::br(). + Form::submit('save_site_theme', __('Save', 'themes'), array('class' => 'btn btn-primary')). Form::close() ); ?> @@ -31,8 +31,8 @@ Form::open(). Form::hidden('csrf', Security::token()). Form::label('themes', __('Select Theme', 'themes')). - Form::select('themes', $themes_admin, $current_admin_theme, array('class' => 'input-xlarge')). Html::br(). - Form::submit('save_admin_theme', __('Save', 'themes'), array('class' => 'btn')). + Form::select('themes', $themes_admin, $current_admin_theme, array('class' => 'form-control')). Html::br(). + Form::submit('save_admin_theme', __('Save', 'themes'), array('class' => 'btn btn-primary')). Form::close() ); ?> @@ -54,7 +54,7 @@ ); ?> - __('Create New Template'), 'class' => 'btn btn-small')).Html::br(2)); ?> + __('Create New Template'), 'class' => 'btn btn-default')).Html::br(2)); ?>
'btn btn-actions btn-small btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete template: :name', 'themes', array(':name' => basename($template, '.template.php')))."')"));
+ array('class' => 'btn btn-actions btn-danger btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete template: :name', 'themes', array(':name' => basename($template, '.template.php')))."')"));
?>
-
|
@@ -89,7 +89,7 @@
'btn btn-actions btn-small btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete chunk: :name', 'themes', array(':name' => basename($chunk, '.chunk.php')))."')"));
+ array('class' => 'btn btn-actions btn-danger btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete chunk: :name', 'themes', array(':name' => basename($chunk, '.chunk.php')))."')"));
?>
-
|
@@ -124,7 +124,7 @@
'btn btn-actions btn-small btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete styles: :name', 'themes', array(':name' => basename($style, '.css')))."')"));
+ array('class' => 'btn btn-actions btn-danger btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete styles: :name', 'themes', array(':name' => basename($style, '.css')))."')"));
?>
-
|
@@ -159,7 +159,7 @@
'btn btn-actions btn-small btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete script: :name', 'themes', array(':name' => basename($script, '.js')))."')"));
+ array('class' => 'btn btn-actions btn-danger btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete script: :name', 'themes', array(':name' => basename($script, '.js')))."')"));
?>
-
|