nodebb-theme-harmony 2.2.35 → 2.2.37
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 -4
- package/scss/skins.scss +8 -0
- package/templates/partials/topic/post.tpl +1 -1
package/package.json
CHANGED
package/scss/common.scss
CHANGED
package/scss/skins.scss
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
.skin-quartz {
|
|
2
|
+
// quartz doesn't need body-bg for tool background
|
|
3
|
+
.sticky-tools {
|
|
4
|
+
background-color: initial;
|
|
5
|
+
}
|
|
6
|
+
.post-container-parent > div.rounded-circle {
|
|
7
|
+
// box-shadow: none!important;
|
|
8
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2)!important;
|
|
9
|
+
}
|
|
2
10
|
// $body-bg-image is gradient in quartz
|
|
3
11
|
.topic-main-buttons, .topic-list-header, [component="post"] .icon {
|
|
4
12
|
background-color: transparent !important;
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
{{{ if ./user.userslug }}}<meta itemprop="url" content="{config.relative_path}/user/{./user.userslug}">{{{ end }}}
|
|
30
30
|
|
|
31
31
|
<div class="d-flex flex-nowrap gap-1 align-items-center text-truncate">
|
|
32
|
-
<div class="
|
|
32
|
+
<div class="d-sm-none">
|
|
33
33
|
<a class="d-inline-block position-relative text-decoration-none" href="{{{ if ./user.userslug }}}{config.relative_path}/user/{./user.userslug}{{{ else }}}#{{{ end }}}">
|
|
34
34
|
{buildAvatar(posts.user, "20px", true, "", "user/picture")}
|
|
35
35
|
{{{ if ./user.isLocal }}}
|