diff --git a/resources/css/app.css b/resources/css/app.css index fa29bf90f..a1939d71e 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -280,7 +280,7 @@ .subtitle { } .fullscreen { - @apply fixed top-0 left-0 w-full h-full z-[9999] bg-coolgray-100 overflow-y-auto scrollbar pb-4; + @apply fixed top-0 left-0 w-full h-full z-[9999] dark:bg-coolgray-100 bg-white overflow-y-auto scrollbar pb-4; } .toast { diff --git a/resources/views/livewire/project/application/deployment/index.blade.php b/resources/views/livewire/project/application/deployment/index.blade.php index f36c24fa2..03a8a0d8a 100644 --- a/resources/views/livewire/project/application/deployment/index.blade.php +++ b/resources/views/livewire/project/application/deployment/index.blade.php @@ -27,18 +27,17 @@ class="w-6 h-6" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> @endif @forelse ($deployments as $deployment) data_get($deployment, 'status') === 'queued', 'border-warning hover:bg-warning hover:text-black' => data_get($deployment, 'status') === 'in_progress' || data_get($deployment, 'status') === 'cancelled-by-user', - 'border-error hover:bg-error' => + 'border-error dark:hover:bg-error hover:bg-neutral-200' => data_get($deployment, 'status') === 'failed', - 'border-success hover:bg-success' => + 'border-success dark:hover:bg-success hover:bg-neutral-200' => data_get($deployment, 'status') === 'finished', - ]) href="{{ $current_url . '/' . data_get($deployment, 'deployment_uuid') }}" - class="hover:no-underline"> + ]) href="{{ $current_url . '/' . data_get($deployment, 'deployment_uuid') }}">
{{ $deployment->created_at }} UTC diff --git a/resources/views/livewire/project/application/deployment/show.blade.php b/resources/views/livewire/project/application/deployment/show.blade.php index 5d80cd127..1426ef583 100644 --- a/resources/views/livewire/project/application/deployment/show.blade.php +++ b/resources/views/livewire/project/application/deployment/show.blade.php @@ -1,11 +1,45 @@

Deployment

-
+
@if (data_get($application_deployment_queue, 'status') === 'in_progress')
Deployment is -
{{ Str::headline(data_get($this->application_deployment_queue, 'status')) }}. +
+ {{ Str::headline(data_get($this->application_deployment_queue, 'status')) }}.
@@ -17,7 +51,7 @@ class="dark:text-warning">{{ Str::headline(data_get($application_deployment_queu @endif
-
-
diff --git a/resources/views/livewire/project/application/previews.blade.php b/resources/views/livewire/project/application/previews.blade.php index 45d0fba63..6d1eb8614 100644 --- a/resources/views/livewire/project/application/previews.blade.php +++ b/resources/views/livewire/project/application/previews.blade.php @@ -57,7 +57,7 @@ class="dark:text-warning">{{ $application->destination->server->name }}.<
Previews
@foreach ($application->previews as $preview) -
+
PR #{{ data_get($preview, 'pull_request_id') }} | @if (Str::of(data_get($preview, 'status'))->startsWith('running')) @@ -78,7 +78,7 @@ class="dark:text-warning">{{ $application->destination->server->name }}.<
- @if (data_get($preview, 'status') === 'exited') Deploy @@ -88,17 +88,17 @@ class="dark:text-warning">{{ $application->destination->server->name }}.< - + Deployment Logs - + Application Logs - Delete
diff --git a/resources/views/livewire/project/shared/get-logs.blade.php b/resources/views/livewire/project/shared/get-logs.blade.php index 7f8ce9495..ad4e74e0c 100644 --- a/resources/views/livewire/project/shared/get-logs.blade.php +++ b/resources/views/livewire/project/shared/get-logs.blade.php @@ -1,5 +1,38 @@
-
+
@if ($resource?->type() === 'application')

{{ $container }}

@@ -24,7 +57,7 @@
-
-
-