mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 15:02:34 +00:00
Merge (#127)
This commit is contained in:
22
resources/views/servers/partials/installing.blade.php
Normal file
22
resources/views/servers/partials/installing.blade.php
Normal file
@ -0,0 +1,22 @@
|
||||
<x-card>
|
||||
<x-slot name="title">{{ __("Installing") }}</x-slot>
|
||||
<x-slot name="description">
|
||||
{{ __("The server is being installed") }}
|
||||
</x-slot>
|
||||
<div
|
||||
class="relative flex h-6 overflow-hidden rounded bg-primary-200 text-xs dark:bg-primary-500 dark:bg-opacity-10"
|
||||
>
|
||||
<div
|
||||
style="width: {{ $server->progress }}%"
|
||||
class="flex flex-col justify-center whitespace-nowrap bg-primary-500 text-center text-white shadow-none"
|
||||
></div>
|
||||
<span
|
||||
class="{{ $server->progress >= 40 ? "text-white" : "text-black dark:text-white" }} absolute left-0 right-0 top-1 text-center font-semibold"
|
||||
>
|
||||
{{ $server->progress }}%
|
||||
</span>
|
||||
</div>
|
||||
<div class="mt-3 text-center">
|
||||
<span class="font-bold">{{ $server->progress_step }}</span>
|
||||
</div>
|
||||
</x-card>
|
Reference in New Issue
Block a user