mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 12:10:34 +09:00
changed restore icon, changed trash css, changed alert colours
This commit is contained in:
11
resources/assets/sass/_app.scss
vendored
11
resources/assets/sass/_app.scss
vendored
@@ -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;
|
||||
}
|
||||
@@ -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>
|
||||
|
||||
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user