]> BookStack Code Mirror - bookstack/blob - resources/views/comments/create.blade.php
Fixes padding issues of the sidebar's items
[bookstack] / resources / views / comments / create.blade.php
1 <div class="comment-box" style="display:none;">
2
3     <div class="header p-s">{{ trans('entities.comment_new') }}</div>
4     <div refs="page-comments@replyToRow" class="reply-row primary-background-light text-muted px-s py-xs mb-s" style="display: none;">
5         <div class="grid left-focus v-center">
6             <div>
7                 {!! trans('entities.comment_in_reply_to', ['commentId' => '<a href=""></a>']) !!}
8             </div>
9             <div class="text-right">
10                 <button class="text-button" action="remove-reply-to">{{ trans('common.remove') }}</button>
11             </div>
12         </div>
13     </div>
14
15     <div refs="page-comments@formContainer" class="content px-s">
16         <form novalidate>
17             <div class="form-group description-input">
18                         <textarea name="markdown" rows="3"
19                                   placeholder="{{ trans('entities.comment_placeholder') }}"></textarea>
20             </div>
21             <div class="form-group text-right">
22                 <button type="button" class="button outline"
23                         action="hideForm">{{ trans('common.cancel') }}</button>
24                 <button type="submit" class="button">{{ trans('entities.comment_save') }}</button>
25             </div>
26             <div class="form-group loading" style="display: none;">
27                 @include('common.loading-icon', ['text' => trans('entities.comment_saving')])
28             </div>
29         </form>
30     </div>
31
32 </div>