nodebb-theme-harmony 1.0.33 → 1.0.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/scss/common.scss
CHANGED
package/scss/skins.scss
CHANGED
package/templates/chats.tpl
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
<div class="chats-full d-flex gap-1 h-100 mt-3 mt-md-0 py-md-3">
|
|
2
2
|
<div class="flex-shrink-0 d-flex flex-column h-100" component="chat/nav-wrapper" data-loaded="{{{ if roomId }}}1{{{ else }}}0{{{ end }}}">
|
|
3
3
|
<div class="chat-search dropdown mb-2">
|
|
4
|
-
<label class="text-xs text-muted">[[users:search-user-for-chat]]</label>
|
|
5
|
-
|
|
6
4
|
<div class="input-group">
|
|
7
|
-
<input class="form-control" type="text" component="chat/search" data-bs-toggle="dropdown" />
|
|
5
|
+
<input class="form-control form-control-sm" type="text" component="chat/search" data-bs-toggle="dropdown" placeholder="[[users:search-user-for-chat]]"/>
|
|
8
6
|
<ul component="chat/search/list" class="dropdown-menu">
|
|
9
7
|
<li><a href="#" class="dropdown-item rounded-1">[[admin/menu:search.start-typing]]</a></li>
|
|
10
8
|
</ul>
|
|
11
|
-
<button class="btn btn-primary" type="button">
|
|
9
|
+
<button class="btn btn-primary btn-sm" type="button">
|
|
12
10
|
<i class="fa fa-search"></i>
|
|
13
11
|
</button>
|
|
14
12
|
</div>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
<!-- IMPORT partials/chats/options.tpl -->
|
|
16
16
|
</div>
|
|
17
|
-
<hr class="
|
|
17
|
+
<hr class="my-1"/>
|
|
18
18
|
<div class="position-relative">
|
|
19
19
|
<div component="chat/messages/scroll-up-alert" class="py-1 position-absolute start-50 translate-middle text-sm scroll-up-alert alert alert-info d-none d-md-block text-nowrap" role="button" style="z-index: 500;"><i class="fa fa-fw fa-arrow-down"></i> [[modules:chat.scroll-up-alert]]</div>
|
|
20
20
|
</div>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
{{{ if (
|
|
2
|
-
<hr class="my-1
|
|
1
|
+
{{{ if (loadingMore && @first)}}}
|
|
2
|
+
<hr class="my-1" />
|
|
3
3
|
{{{ end }}}
|
|
4
4
|
<div component="chat/recent/room" data-roomid="{./roomId}" data-full="1" class="rounded-1 {{{ if ./unread }}}unread{{{ end }}}">
|
|
5
5
|
<div class="d-flex gap-1 justify-content-between">
|