nodebb-theme-harmony 3.1.12 → 3.1.14
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/skins.scss
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
background-color: transparent!important;
|
|
19
19
|
backdrop-filter: blur(5px);
|
|
20
20
|
}
|
|
21
|
-
|
|
21
|
+
.account .avatar-wrapper.bg-body {
|
|
22
22
|
background: linear-gradient(90deg, rgb(51.3, 182.7, 225.9), rgb(93.6, 98.1, 175.5), rgb(220.4, 47.5, 124.45));
|
|
23
23
|
background-attachment: fixed;
|
|
24
24
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
<ul component="blocks/search/list" class="dropdown-menu dropdown-menu-end p-1 text-sm block-edit overflow-auto" style="max-height:300px;" role="menu">
|
|
10
10
|
<li component="blocks/start-typing">
|
|
11
|
-
<a href="#" class="dropdown-item rounded-1" role="menuitem">{{tx("
|
|
11
|
+
<a href="#" class="dropdown-item rounded-1" role="menuitem">{{tx("search:type-to-search")}}</a>
|
|
12
12
|
</li>
|
|
13
13
|
<li component="blocks/no-users" class="hidden">
|
|
14
14
|
<a href="#" class="dropdown-item rounded-1" role="menuitem">{{tx("users:no-users-found")}}</a>
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
</div>
|
|
36
36
|
</div>
|
|
37
37
|
<div class="users">
|
|
38
|
-
<div class="alert alert-warning text-center m-0"{{{ if users.length }}} style="display: none;"{{{ end }}}>
|
|
38
|
+
<div class="alert alert-warning text-center m-0"{{{ if users.length }}} style="display: none;"{{{ end }}}>{{tx("user:has-no-blocks")}}</div>
|
|
39
39
|
|
|
40
40
|
<div id="users-container" class="row row-cols-2 row-cols-lg-3 row-cols-xl-4 g-3">
|
|
41
41
|
{{{ each users }}}
|
|
42
42
|
<div class="d-flex flex-column gap-1">
|
|
43
43
|
<!-- IMPORT partials/users/item.tpl -->
|
|
44
|
-
<button class="btn btn-sm btn-outline-primary text-nowrap mx-auto" data-uid="{./uid}" data-action="unblock">
|
|
44
|
+
<button class="btn btn-sm btn-outline-primary text-nowrap mx-auto" data-uid="{./uid}" data-action="unblock">{{tx("user:unblock-user")}}</button>
|
|
45
45
|
</div>
|
|
46
46
|
{{{ end }}}
|
|
47
47
|
</div>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
</div>
|
|
15
15
|
|
|
16
16
|
<div class="d-flex flex-column flex-md-row gap-2 w-100 pb-4 mb-4 mt-2 border-bottom">
|
|
17
|
-
<div
|
|
17
|
+
<div class="avatar-wrapper bg-body rounded-circle position-relative align-self-center align-self-md-start hover-parent" style="margin-top: -75px; padding: 4px;">
|
|
18
18
|
{{buildAvatar(@value, "142px", true)}}
|
|
19
19
|
{{{ if (allowProfilePicture && isSelfOrAdminOrGlobalModerator)}}}
|
|
20
20
|
<a href="#" component="profile/change/picture" class="d-none d-md-block pointer p-2 rounded-1 text-bg-light position-absolute top-50 start-50 translate-middle hover-opacity-75">
|