Init
This commit is contained in:
49
resources/views/modals/comment-reply.blade.php
Normal file
49
resources/views/modals/comment-reply.blade.php
Normal file
@@ -0,0 +1,49 @@
|
||||
<!--Verically centered modal-->
|
||||
<div
|
||||
data-te-modal-init
|
||||
class="fixed left-0 top-0 z-[1055] hidden h-full w-full overflow-y-auto overflow-x-hidden outline-none"
|
||||
id="reply-modal-{{ $comment->getKey() }}"
|
||||
tabindex="-1"
|
||||
aria-labelledby="exampleModalCenterTitle"
|
||||
aria-modal="true"
|
||||
role="dialog">
|
||||
<div data-te-modal-dialog-ref class="pointer-events-none relative flex min-h-[calc(100%-1rem)] w-auto translate-y-[-50px] items-center opacity-0 transition-all duration-300 ease-in-out min-[576px]:mx-auto min-[576px]:mt-7 min-[576px]:min-h-[calc(100%-3.5rem)] min-[576px]:max-w-[95%] md:min-[576px]:max-w-[90%] lg:min-[576px]:max-w-[80%] xl:min-[576px]:max-w-[70%] 2xl:min-[576px]:max-w-[40%]">
|
||||
<div class="pointer-events-auto relative flex w-full flex-col rounded-md border-none bg-white bg-clip-padding text-current shadow-lg outline-none dark:bg-neutral-800">
|
||||
<x-modal-header :title="__('comments::comments.reply_to_comment')" />
|
||||
|
||||
<!--Modal body-->
|
||||
<div class="relative p-4">
|
||||
|
||||
<form method="POST" action="{{ route('comments.reply', $comment->getKey()) }}">
|
||||
@csrf
|
||||
<div class="modal-body">
|
||||
<div class="form-group">
|
||||
<label class="mb-2 leading-tight text-gray-800 dark:text-gray-200 w-full" for="message">@lang('comments::comments.enter_your_message_here')</label>
|
||||
<textarea required class="peer block min-h-[auto] w-full border-1 bg-transparent px-3 py-[0.32rem] leading-[1.6] outline-none transition-all duration-200 ease-linear dark:placeholder:text-neutral-200 border-gray-300 dark:border-neutral-950 dark:bg-neutral-900 dark:text-gray-300 focus:border-rose-500 dark:focus:border-rose-600 focus:ring-rose-500 dark:focus:ring-rose-600 rounded-md shadow-sm" name="message" rows="3"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex flex-shrink-0 flex-wrap items-center justify-end rounded-b-md p-4">
|
||||
<button
|
||||
type="button"
|
||||
id="modal-blacklist-filter-close-bottom"
|
||||
class="inline-block rounded bg-primary-100 px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-primary-700 transition duration-150 ease-in-out hover:bg-primary-accent-100 focus:bg-primary-accent-100 focus:outline-none focus:ring-0 active:bg-primary-accent-200"
|
||||
data-te-modal-dismiss
|
||||
data-te-ripple-init
|
||||
data-te-ripple-color="light">
|
||||
@lang('comments::comments.cancel')
|
||||
</button>
|
||||
<button
|
||||
type="submit"
|
||||
id="modal-blacklist-filter-save"
|
||||
class="ml-1 inline-block rounded bg-rose-600 px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-white transition duration-150 ease-in-out hover:bg-rose-700 focus:bg-rose-600"
|
||||
data-te-modal-dismiss
|
||||
data-te-ripple-init
|
||||
data-te-ripple-color="light">
|
||||
@lang('comments::comments.reply')
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user