mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Some CSS twiddling
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
dcd586e3cd
commit
6874f703bf
|
@ -1,15 +1,18 @@
|
|||
@can('view', \App\Models\User::class)
|
||||
<div id="userBulkEditToolbar">
|
||||
{{ Form::open([
|
||||
<div id="userBulkEditToolbar" class="pull-left" style="min-width:500px !important; padding-top: 10px;">
|
||||
|
||||
@if (request('status')!='deleted')
|
||||
|
||||
{{ Form::open([
|
||||
'method' => 'POST',
|
||||
'route' => ['users/bulkedit'],
|
||||
'class' => 'form-inline',
|
||||
'id' => 'usersBulkForm']) }}
|
||||
|
||||
@if (request('status')!='deleted')
|
||||
<div id="users-toolbar">
|
||||
|
||||
<div id="users-toolbar" style="width:100% !important;">
|
||||
<label for="bulk_actions" class="sr-only">{{ trans('general.bulk_actions') }}</label>
|
||||
<select name="bulk_actions" class="form-control select2" style="min-width:300px;" aria-label="bulk_actions">
|
||||
<select name="bulk_actions" class="form-control select2" style="width: 50% !important;" aria-label="bulk_actions">
|
||||
|
||||
@can('update', \App\Models\User::class)
|
||||
<option value="edit">{{ trans('general.bulk_edit') }}</option>
|
||||
|
@ -25,7 +28,8 @@
|
|||
</select>
|
||||
<button class="btn btn-primary" id="bulkUserEditButton" disabled>{{ trans('button.go') }}</button>
|
||||
</div>
|
||||
{{ Form::close() }}
|
||||
@endif
|
||||
{{ Form::close() }}
|
||||
|
||||
</div>
|
||||
@endcan
|
||||
|
|
Loading…
Reference in a new issue