diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php
index e3ed850f3f..2699a386e8 100644
--- a/resources/views/partials/bootstrap-table.blade.php
+++ b/resources/views/partials/bootstrap-table.blade.php
@@ -226,7 +226,7 @@
},
attributes: {
title: '{{ trans('general.create') }}',
- class: 'btn-info',
+ class: 'btn-sm btn-info',
@if ($snipeSettings->shortcuts_enabled == 1)
accesskey: 'n'
@endif
@@ -1048,18 +1048,18 @@
}
if ((row.available_actions) && (row.available_actions.clone === true)) {
- actions += '
{{ trans('general.clone_item') }} ';
+ actions += '
{{ trans('general.clone_item') }} ';
}
if ((row.available_actions) && (row.available_actions.audit === true)) {
- actions += '
{{ trans('general.audit') }} ';
+ actions += '
{{ trans('general.audit') }} ';
}
if ((row.available_actions) && (row.available_actions.update === true)) {
- actions += '
{{ trans('general.update') }} ';
+ actions += '
{{ trans('general.update') }} ';
} else {
if ((row.available_actions) && (row.available_actions.update != true)) {
- actions += '
';
+ actions += '
';
}
}
@@ -1080,11 +1080,11 @@
+ ' data-toggle="modal" data-icon="fa-trash"'
+ ' data-content="{{ trans('general.sure_to_delete') }}: ' + name_for_box + '?" '
+ ' data-title="{{ trans('general.delete') }}" onClick="return false;">'
- + '
{{ trans('general.delete') }} ';
+ + '
{{ trans('general.delete') }} ';
} else {
// Do not show the delete button on things that are already deleted
if ((row.available_actions) && (row.available_actions.restore != true)) {
- actions += '
{{ trans('general.cannot_be_deleted') }} ';
+ actions += '
{{ trans('general.cannot_be_deleted') }} ';
}
}
diff --git a/resources/views/statuslabels/index.blade.php b/resources/views/statuslabels/index.blade.php
index 17e7a96599..c96c42ac32 100755
--- a/resources/views/statuslabels/index.blade.php
+++ b/resources/views/statuslabels/index.blade.php
@@ -38,7 +38,7 @@
{{ trans('admin/statuslabels/table.about') }}
-
+
{!! trans('admin/statuslabels/table.info') !!}
diff --git a/resources/views/statuslabels/view.blade.php b/resources/views/statuslabels/view.blade.php
index 46d356c3ef..a99bd21ad3 100644
--- a/resources/views/statuslabels/view.blade.php
+++ b/resources/views/statuslabels/view.blade.php
@@ -10,7 +10,7 @@
-
+
@include('partials.asset-bulk-actions')