Add dark mode

This commit is contained in:
2026-01-10 15:27:37 +01:00
parent 5f575024e2
commit 4c2a6024d7
2 changed files with 16 additions and 18 deletions

View File

@@ -5,7 +5,7 @@
</div>
<div class="flex-grow">
<div>
<a href="#" class="font-medium text-gray-900">{{ $comment->user->name }}</a>
<p class="font-medium text-gray-900 dark:text-gray-100">{{ $comment->user->name }}</p>
</div>
<div class="mt-1 flex-grow w-full">
@if ($isEditing)
@@ -13,7 +13,7 @@
<div>
<label for="comment" class="sr-only">Comment body</label>
<textarea id="comment" name="comment" rows="3"
class="shadow-sm block w-full focus:ring-rose-500 focus:border-rose-500 border-gray-300 rounded-md
class="bg-white dark:bg-neutral-700 shadow-sm block w-full focus:ring-rose-500 focus:border-rose-500 border-gray-300 dark:border-gray-400/40 text-gray-900 dark:text-gray-200 placeholder:text-gray-400 rounded-md
@error('editState.body') border-red-500 @enderror"
placeholder="Write something" wire:model.defer="editState.body"></textarea>
@error('editState.body')
@@ -28,24 +28,22 @@
</div>
</form>
@else
<p class="text-gray-700">{!! $comment->presenter()->markdownBody() !!}</p>
<div class="text-gray-700 dark:text-gray-200">{!! $comment->presenter()->markdownBody() !!}</div>
@endif
</div>
<div class="mt-2 space-x-2">
<span class="text-gray-500 font-medium">
<span class="text-gray-500 dark:text-gray-300 font-medium">
{{ $comment->presenter()->relativeCreatedAt() }}
</span>
@auth
{{--@if ($comment->hasParent())--}}
@if ($comment->depth() < 2)
<button wire:click="$toggle('isReplying')" type="button" class="text-gray-900 font-medium">
<button wire:click="$toggle('isReplying')" type="button" class="text-gray-900 dark:text-gray-100 font-medium">
Reply
</button>
@endif
{{--@endif--}}
@can ('update', $comment)
<button wire:click="$toggle('isEditing')" type="button" class="text-gray-900 font-medium">
<button wire:click="$toggle('isEditing')" type="button" class="text-gray-900 dark:text-gray-100 font-medium">
Edit
</button>
@endcan
@@ -60,7 +58,7 @@
}"
@click="confirmCommentDeletion"
type="button"
class="text-gray-900 font-medium"
class="text-gray-900 dark:text-gray-100 font-medium"
>
Delete
</button>
@@ -76,7 +74,7 @@
<div>
<label for="comment" class="sr-only">Reply body</label>
<textarea id="comment" name="comment" rows="3"
class="shadow-sm block w-full focus:ring-rose-500 focus:border-rose-500 border-gray-300 rounded-md
class="bg-white dark:bg-neutral-700 shadow-sm block w-full focus:ring-rose-500 focus:border-rose-500 border-gray-300 dark:border-gray-400/40 text-gray-900 dark:text-gray-200 placeholder:text-gray-400 rounded-md
@error('replyState.body') border-red-500 @enderror"
placeholder="Write something" wire:model.defer="replyState.body"></textarea>
@error('replyState.body')