fix(ui): improve queued deployment status readability in dark mode
This commit is contained in:
parent
a03c1b3b4b
commit
a9e1d4cb79
1 changed files with 2 additions and 2 deletions
|
|
@ -53,7 +53,7 @@ class="flex items-start gap-3 p-3 rounded-lg dark:bg-coolgray-200 bg-gray-50 tra
|
||||||
</path>
|
</path>
|
||||||
</svg>
|
</svg>
|
||||||
@else
|
@else
|
||||||
<svg class="w-4 h-4 dark:text-coolgray-300 text-gray-500"
|
<svg class="w-4 h-4 dark:text-neutral-400 text-gray-500"
|
||||||
xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
|
xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
|
||||||
stroke="currentColor">
|
stroke="currentColor">
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||||
|
|
@ -78,7 +78,7 @@ class="flex items-start gap-3 p-3 rounded-lg dark:bg-coolgray-200 bg-gray-50 tra
|
||||||
<p class="text-xs mt-1 capitalize"
|
<p class="text-xs mt-1 capitalize"
|
||||||
:class="{
|
:class="{
|
||||||
'text-coollabs dark:text-warning': '{{ $deployment->status }}' === 'in_progress',
|
'text-coollabs dark:text-warning': '{{ $deployment->status }}' === 'in_progress',
|
||||||
'dark:text-coolgray-300 text-gray-500': '{{ $deployment->status }}' === 'queued'
|
'dark:text-neutral-400 text-gray-500': '{{ $deployment->status }}' === 'queued'
|
||||||
}">
|
}">
|
||||||
{{ str_replace('_', ' ', $deployment->status) }}
|
{{ str_replace('_', ' ', $deployment->status) }}
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue