Skip to content

Commit 6874f70

Browse files
committed
Some CSS twiddling
Signed-off-by: snipe <[email protected]>
1 parent dcd586e commit 6874f70

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

resources/views/partials/users-bulk-actions.blade.php

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
@can('view', \App\Models\User::class)
2-
<div id="userBulkEditToolbar">
3-
{{ Form::open([
2+
<div id="userBulkEditToolbar" class="pull-left" style="min-width:500px !important; padding-top: 10px;">
3+
4+
@if (request('status')!='deleted')
5+
6+
{{ Form::open([
47
'method' => 'POST',
58
'route' => ['users/bulkedit'],
69
'class' => 'form-inline',
710
'id' => 'usersBulkForm']) }}
811

9-
@if (request('status')!='deleted')
10-
<div id="users-toolbar">
12+
13+
<div id="users-toolbar" style="width:100% !important;">
1114
<label for="bulk_actions" class="sr-only">{{ trans('general.bulk_actions') }}</label>
12-
<select name="bulk_actions" class="form-control select2" style="min-width:300px;" aria-label="bulk_actions">
15+
<select name="bulk_actions" class="form-control select2" style="width: 50% !important;" aria-label="bulk_actions">
1316

1417
@can('update', \App\Models\User::class)
1518
<option value="edit">{{ trans('general.bulk_edit') }}</option>
@@ -25,7 +28,8 @@
2528
</select>
2629
<button class="btn btn-primary" id="bulkUserEditButton" disabled>{{ trans('button.go') }}</button>
2730
</div>
31+
{{ Form::close() }}
2832
@endif
29-
{{ Form::close() }}
33+
3034
</div>
3135
@endcan

0 commit comments

Comments
 (0)