nodebb-theme-harmony 1.1.51 → 1.1.53
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
|
@@ -134,7 +134,7 @@ body.page-user-chats {
|
|
|
134
134
|
right: 2rem;
|
|
135
135
|
width: auto!important;
|
|
136
136
|
height: auto!important;
|
|
137
|
-
[component="chat/user/list/btn"] {
|
|
137
|
+
[component="chat/user/list/btn"], [component="chat/pinned/messages/btn"] {
|
|
138
138
|
display: none!important;
|
|
139
139
|
}
|
|
140
140
|
}
|
package/templates/chat.tpl
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
<!-- IMPORT partials/chats/options.tpl -->
|
|
12
12
|
|
|
13
|
-
<button id="chat-close-btn" type="button" class="btn-close btn-ghost-sm"
|
|
13
|
+
<button id="chat-close-btn" type="button" class="btn-close btn-ghost-sm" aria-label="Close"></button>
|
|
14
14
|
</div>
|
|
15
15
|
</div>
|
|
16
16
|
<!-- IMPORT partials/chats/scroll-up-alert.tpl -->
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<div class="w-100 flex-grow-1 flex-nowrap position-relative d-flex rounded-2 border border-secondary p-1 align-items-end">
|
|
6
6
|
<button component="chat/upload/button" class="btn-ghost-sm px-2" type="button" title="[[global:upload]]" data-bs-toggle="tooltip"><i class="fa fa-fw fa-upload"></i></button>
|
|
7
7
|
<div class="flex-grow-1 align-self-center">
|
|
8
|
-
<textarea component="chat/input" placeholder="[[modules:chat.placeholder.mobile]]" class="bg-transparent text-body form-control chat-input mousetrap rounded-0 border-0 shadow-none
|
|
8
|
+
<textarea component="chat/input" placeholder="[[modules:chat.placeholder.mobile]]" class="bg-transparent text-body form-control chat-input mousetrap rounded-0 border-0 shadow-none px-1 py-0" style="min-height: 1.5rem;height:0;max-height:30vh;resize:none;"></textarea>
|
|
9
9
|
</div>
|
|
10
10
|
<div class="d-flex gap-1">
|
|
11
11
|
<button class="btn-ghost-sm px-2" type="button" data-action="send" title="[[modules:chat.send]]" data-bs-toggle="tooltip"><i class="fa fa-fw fa-paper-plane text-primary"></i></button>
|