Cleanup of icons and removed ones not used #195

This commit is contained in:
Nabeel Shahzad
2018-02-22 13:28:12 -06:00
parent fc381da21b
commit 67f6dfc2f4
30 changed files with 3980 additions and 5173 deletions

View File

@@ -17,12 +17,12 @@
role="grid" aria-describedby="aircraft_fares_info">
<thead>
<tr role="row">
<th>name</th>
<th style="text-align: center;">code</th>
<th>capacity</th>
<th>price</th>
<th>cost</th>
<th></th>
<th>Name</th>
<th style="text-align: center;">Code</th>
<th>Capacity</th>
<th>Price</th>
<th>Cost</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@@ -39,7 +39,7 @@
<td>
<a href="#" data-pk="{!! $atf->id !!}" data-name="cost">{!! $atf->pivot->cost !!}</a>
</td>
<td style="text-align: right; width:3%;">
<td style="text-align: center; width:3%;">
{!! Form::open(['url' => '/admin/flights/'.$flight->id.'/fares',
'method' => 'delete',
'class' => 'pjax_fares_form'
@@ -48,7 +48,7 @@
{!! Form::hidden('fare_id', $atf->id) !!}
{!! Form::button('<i class="fa fa-times"></i>',
['type' => 'submit',
'class' => 'btn btn-sm btn-danger btn-icon']) !!}
'class' => 'btn btn-danger btn-xs']) !!}
{!! Form::close() !!}
</td>
</tr>

View File

@@ -20,7 +20,7 @@
]) !!}
{!! Form::hidden('field_id', $field->id) !!}
<div class='btn-group'>
{!! Form::button('<i class="glyphicon glyphicon-trash"></i>',
{!! Form::button('<i class="fa fa-times"></i>',
['type' => 'submit',
'class' => 'btn btn-danger btn-xs'])
!!}

View File

@@ -19,7 +19,7 @@
'class' => 'pjax_subfleet_form']) !!}
{!! Form::hidden('subfleet_id', $sf->id) !!}
<div class='btn-group'>
{!! Form::button('<i class="glyphicon glyphicon-trash"></i>',
{!! Form::button('<i class="fa fa-times"></i>',
['type' => 'submit',
'class' => 'btn btn-danger btn-xs'])
!!}
@@ -42,10 +42,10 @@
!!}
{!! Form::select('subfleet_id', $avail_subfleets, null, [
'placeholder' => 'Select Subfleet',
'class' => 'select2_dropdown form-control input-lg',
'class' => 'select2 form-control input-lg',
])
!!}
{!! Form::button('<i class="glyphicon glyphicon-plus"></i> add',
!!}&nbsp;
{!! Form::button('<i class="fas fa-plus"></i> add',
['type' => 'submit',
'class' => 'btn btn-success btn-s']) !!}
{!! Form::close() !!}

View File

@@ -42,7 +42,7 @@
</td>
<td style="text-align: right;">
{!! Form::open(['route' => ['admin.flights.destroy', $flight->id], 'method' => 'delete']) !!}
<a href="{!! route('admin.flights.edit', [$flight->id]) !!}" class='btn btn-sm btn-success btn-icon'><i class="fa fa-pencil-square-o"></i></a>
<a href="{!! route('admin.flights.edit', [$flight->id]) !!}" class='btn btn-sm btn-success btn-icon'><i class="fas fa-pencil-alt"></i></a>
{!! Form::button('<i class="fa fa-times"></i>', ['type' => 'submit', 'class' => 'btn btn-sm btn-danger btn-icon', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}
</td>