changed restore icon, changed trash css, changed alert colours

This commit is contained in:
KodeStar
2018-02-03 20:05:28 +00:00
parent 1b4b6cb966
commit 2cbedb2d40
5 changed files with 21 additions and 8 deletions

View File

@@ -134,7 +134,7 @@ body {
left: 0;
bottom: 0;
width: 60px;
background: #1cd41c;
background: $app-green;
text-align: center;
color: white;
line-height: 57px;
@@ -147,7 +147,7 @@ body {
&.alert-danger {
&:before {
content: "\f00d";
background: #c00;
background: $app-red;
}
}
@@ -503,4 +503,9 @@ div.create {
-webkit-animation-name: autofill;
-webkit-animation-fill-mode: both;
}
button.link {
border: none;
appearance: none;
background: transparent;
}

View File

@@ -35,7 +35,7 @@
<td class="text-center"><a href="{!! route('items.edit', $app->id) !!}" title="Edit {!! $app->title !!}"><i class="fas fa-edit"></i></a></td>
<td class="text-center">
{!! Form::open(['method' => 'DELETE','route' => ['items.destroy', $app->id],'style'=>'display:inline']) !!}
<button type="submit"><i class="fa fa-trash-alt"></i></button>
<button class="link" type="submit"><i class="fa fa-trash-alt"></i></button>
{!! Form::close() !!}
</td>
</tr>

View File

@@ -28,7 +28,7 @@
<td>{{ $app->title }}</td>
<td>{{ $app->description }}</td>
<td>{{ $app->url }}</td>
<td class="text-center"><a href="{!! route('items.restore', $app->id) !!}" title="Restore {!! $app->title !!}"><i class="fas fa-edit"></i></a></td>
<td class="text-center"><a href="{!! route('items.restore', $app->id) !!}" title="Restore {!! $app->title !!}"><i class="fas fa-undo"></i></a></td>
<td class="text-center">
{!! Form::open(['method' => 'DELETE','route' => ['items.destroy', $app->id],'style'=>'display:inline']) !!}
<input type="hidden" name="force" value="1" />