Browse Source

changed restore icon, changed trash css, changed alert colours

pull/11/head
KodeStar 7 years ago
parent
commit
2cbedb2d40
  1. 12
      public/css/app.css
  2. 2
      public/mix-manifest.json
  3. 11
      resources/assets/sass/_app.scss
  4. 2
      resources/views/items/list.blade.php
  5. 2
      resources/views/items/trash.blade.php

12
public/css/app.css

@ -413,7 +413,7 @@ body {
left: 0;
bottom: 0;
width: 60px;
background: #1cd41c;
background: #0eb584;
text-align: center;
color: white;
line-height: 57px;
@ -431,7 +431,7 @@ body {
.alert.alert-danger:before {
content: "\F00D";
background: #c00;
background: #d64d55;
}
.alert a {
@ -851,6 +851,14 @@ input:-webkit-autofill {
-webkit-animation-fill-mode: both;
}
button.link {
border: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: transparent;
}
/*! Huebee v2.0.0
http://huebee.buzz
---------------------------------------------- */

2
public/mix-manifest.json

@ -1,4 +1,4 @@
{
"/css/app.css": "/css/app.css?id=d707c4c337b9e3cb0cf8",
"/css/app.css": "/css/app.css?id=0d15a37f052417db7d79",
"/js/app.js": "/js/app.js?id=aa9e426dc7b92d42d3b2"
}

11
resources/assets/sass/_app.scss

@ -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;
}

2
resources/views/items/list.blade.php

@ -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>

2
resources/views/items/trash.blade.php

@ -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" />

Loading…
Cancel
Save