nodebb-theme-persona 13.0.46 → 13.0.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/scss/chats.scss
CHANGED
|
@@ -18,12 +18,16 @@
|
|
|
18
18
|
<ul class="chat-content">
|
|
19
19
|
<!-- IMPORT partials/chats/messages.tpl -->
|
|
20
20
|
</ul>
|
|
21
|
-
<div component="chat/composer">
|
|
22
|
-
<
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<
|
|
21
|
+
<div component="chat/composer" class="d-flex flex-column flex-md-row gap-2 border-top pt-2 align-items-start align-items-md-end">
|
|
22
|
+
<div class="w-100 flex-grow-1 position-relative">
|
|
23
|
+
<textarea component="chat/input" placeholder="[[modules:chat.placeholder.mobile]]" class="form-control chat-input mousetrap" style="height:0;resize:none;"></textarea>
|
|
24
|
+
<span component="chat/message/remaining" class="text-xs text-muted position-absolute me-1 mb-1" style="right: 0px; bottom:0px;">{maximumChatMessageLength}</span>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="d-flex justify-content-between align-self-stretch gap-2">
|
|
27
|
+
<button component="chat/upload/button" class="btn btn-light btn-sm align-self-end" type="button"><i class="fa fa-fw fa-upload"></i></button>
|
|
28
|
+
<button class="btn btn-primary btn-sm align-self-end" type="button" data-action="send"><i class="fa fa-fw fa-paper-plane"></i></button>
|
|
29
|
+
</div>
|
|
30
|
+
<form class="hidden" component="chat/upload" method="post" enctype="multipart/form-data">
|
|
27
31
|
<input type="file" name="files[]" multiple class="hidden"/>
|
|
28
32
|
</form>
|
|
29
33
|
</div>
|