nodebb-theme-harmony 2.2.37 → 2.2.39
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 +1 -1
- package/scss/common.scss +0 -14
- package/scss/skins.scss +4 -0
- package/templates/partials/account/header.tpl +1 -1
package/package.json
CHANGED
package/scss/common.scss
CHANGED
|
@@ -54,20 +54,6 @@ hr {
|
|
|
54
54
|
background-color: $card-cap-bg!important;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
blockquote {
|
|
58
|
-
$bq-border-color: mix($light, $dark, 75%);
|
|
59
|
-
@extend .text-bg-light;
|
|
60
|
-
font-style: normal;
|
|
61
|
-
border-left: 2px solid $bq-border-color;
|
|
62
|
-
padding: 1rem;
|
|
63
|
-
p:last-child {
|
|
64
|
-
margin-bottom: 0;
|
|
65
|
-
}
|
|
66
|
-
.toggle {
|
|
67
|
-
border-color: $bq-border-color!important;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
57
|
body:not(.page-user) {
|
|
72
58
|
#content {
|
|
73
59
|
transition: opacity 150ms linear;
|
package/scss/skins.scss
CHANGED
|
@@ -18,6 +18,10 @@
|
|
|
18
18
|
background-color: transparent!important;
|
|
19
19
|
backdrop-filter: blur(5px);
|
|
20
20
|
}
|
|
21
|
+
[component="profile/change/picture"].avatar-wrapper {
|
|
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
|
+
background-attachment: fixed;
|
|
24
|
+
}
|
|
21
25
|
}
|
|
22
26
|
|
|
23
27
|
.skin-brite {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
</div>
|
|
17
17
|
|
|
18
18
|
<div class="d-flex flex-column flex-md-row gap-2 w-100 pb-4 mb-4 mt-2 border-bottom">
|
|
19
|
-
<div {{{ if (allowProfilePicture && isSelfOrAdminOrGlobalModerator)}}}component="profile/change/picture"{{{ end }}} class="avatar-wrapper
|
|
19
|
+
<div {{{ if (allowProfilePicture && isSelfOrAdminOrGlobalModerator)}}}component="profile/change/picture"{{{ end }}} class="avatar-wrapper bg-body rounded-circle position-relative align-self-center align-self-md-start hover-parent" style="margin-top: -75px; padding: 4px;">
|
|
20
20
|
{buildAvatar(@value, "142px", true)}
|
|
21
21
|
{{{ if (allowProfilePicture && isSelfOrAdminOrGlobalModerator)}}}
|
|
22
22
|
<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">
|