nodebb-theme-harmony 1.1.30 → 1.1.31
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/templates/chat.tpl
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="modal-dialog">
|
|
3
3
|
<div class="modal-content">
|
|
4
4
|
<div class="modal-header d-flex gap-4 justify-content-between">
|
|
5
|
-
<div class="fs-6 flex-grow-1" component="chat/room/name">{{{ if ./roomName }}}
|
|
5
|
+
<div class="fs-6 flex-grow-1" component="chat/room/name" data-icon="{icon}">{{{ if ./roomName }}}<i class="fa {icon} text-muted"></i> {roomName}{{{ else }}}{./chatWithMessage}{{{ end}}}</div>
|
|
6
6
|
<div class="d-flex gap-1 align-items-center">
|
|
7
7
|
<button type="button" class="btn-ghost-sm d-none d-md-flex" data-action="maximize">
|
|
8
8
|
<i class="fa fa-fw fa-expand text-muted"></i>
|
package/templates/chats.tpl
CHANGED
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
</div>
|
|
48
48
|
</div>
|
|
49
49
|
</div>
|
|
50
|
-
<div component="chat/main-wrapper" class="flex-grow-1 ms-md-2 ps-md-2 border-1 border-start-md h-100" style="min-width: 0;">
|
|
50
|
+
<div component="chat/main-wrapper" class="flex-grow-1 ms-md-2 ps-md-2 border-1 border-start-md h-100" style="min-width: 0;" data-roomid="{roomId}">
|
|
51
51
|
<!-- IMPORT partials/chats/message-window.tpl -->
|
|
52
52
|
</div>
|
|
53
53
|
<div class="imagedrop"><div>[[topic:composer.drag_and_drop_images]]</div></div>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{{{ else }}}
|
|
15
15
|
<div component="chat/header" class="d-flex align-items-center px-md-3 gap-3">
|
|
16
16
|
<a href="#" data-action="close" role="button" class="flex-shrink-0 d-flex d-md-none btn btn-outline align-text-top"><i class="fa fa-chevron-left"></i></a>
|
|
17
|
-
<h5 class="members flex-grow-1 fw-semibold tracking-tight mb-0 text-truncate text-nowrap">
|
|
17
|
+
<h5 component="chat/header/title" class="members flex-grow-1 fw-semibold tracking-tight mb-0 text-truncate text-nowrap">
|
|
18
18
|
{{{ if ./roomName }}}<i class="fa {icon} text-muted"></i> {roomName}{{{ else }}}{./chatWithMessage}{{{ end}}}
|
|
19
19
|
</h5>
|
|
20
20
|
|