nodebb-theme-harmony 1.1.33 → 1.1.35
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/public/harmony.js
CHANGED
|
@@ -31,7 +31,8 @@ $(document).ready(function () {
|
|
|
31
31
|
const css = {
|
|
32
32
|
width: $('#panel').width(),
|
|
33
33
|
};
|
|
34
|
-
|
|
34
|
+
const sidebarEl = $('.sidebar-left');
|
|
35
|
+
css[isRtl ? 'right' : 'left'] = sidebarEl.is(':visible') ? sidebarEl.outerWidth(true) : 0;
|
|
35
36
|
$('[component="composer"]').css(css);
|
|
36
37
|
});
|
|
37
38
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!-- This partial intentionally left blank; overwritten by nodebb-plugin-reactions -->
|
|
@@ -34,9 +34,10 @@
|
|
|
34
34
|
<div component="chat/message/body" class="message-body ps-0 py-0 overflow-auto text-break">
|
|
35
35
|
{messages.content}
|
|
36
36
|
</div>
|
|
37
|
-
|
|
37
|
+
<!-- IMPORT partials/chats/reactions.tpl -->
|
|
38
38
|
<div component="chat/message/controls" class="position-relative">
|
|
39
39
|
<div class="btn-group border shadow-sm controls position-absolute bg-body hover-d-block end-0" style="bottom:1rem;">
|
|
40
|
+
<!-- IMPORT partials/chats/add-reaction.tpl -->
|
|
40
41
|
<button class="btn btn-sm btn-link" data-action="reply"><i class="fa fa-reply"></i></button>
|
|
41
42
|
{{{ if (!config.disableChatMessageEditing && messages.self) }}}
|
|
42
43
|
<button class="btn btn-sm btn-link" data-action="edit"><i class="fa fa-pencil"></i></button>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!-- This partial intentionally left blank; overwritten by nodebb-plugin-reactions -->
|