nodebb-theme-harmony 2.2.32 → 2.2.33
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 +2 -2
- package/scss/overrides.scss +1 -5
- package/scss/skins.scss +2 -11
- package/templates/partials/topic/post.tpl +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodebb-theme-harmony",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.33",
|
|
4
4
|
"nbbpm": {
|
|
5
5
|
"compatibility": "^4.0.0"
|
|
6
6
|
},
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@fontsource/poppins": "5.2.7"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"eslint": "10.0.
|
|
48
|
+
"eslint": "10.0.2",
|
|
49
49
|
"eslint-config-nodebb": "^2.0.0"
|
|
50
50
|
}
|
|
51
51
|
}
|
package/scss/overrides.scss
CHANGED
|
@@ -37,7 +37,7 @@ $link-color: #0951be !default;
|
|
|
37
37
|
|
|
38
38
|
$form-check-input-border: var(--bs-border-width) solid $gray-500 !default;
|
|
39
39
|
|
|
40
|
-
$input-placeholder-color: $gray-600!
|
|
40
|
+
$input-placeholder-color: $gray-600 !default;
|
|
41
41
|
|
|
42
42
|
// no caret on dropdown-toggle
|
|
43
43
|
$enable-caret: false;
|
|
@@ -60,7 +60,3 @@ $breadcrumb-divider: quote("→");
|
|
|
60
60
|
$breadcrumb-divider-color: $gray-500 !default;
|
|
61
61
|
$breadcrumb-active-color: $body-color !default;
|
|
62
62
|
$breadcrumb-item-padding-x: 12px !default;
|
|
63
|
-
|
|
64
|
-
.form-control::placeholder, .bootstrap-tagsinput::placeholder {
|
|
65
|
-
color: $gray-500 !important;
|
|
66
|
-
}
|
package/scss/skins.scss
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
.topic-main-buttons, .topic-list-header, [component="post"] .icon {
|
|
4
4
|
background-color: transparent !important;
|
|
5
5
|
}
|
|
6
|
-
.form-control::placeholder {
|
|
7
|
-
color
|
|
6
|
+
.form-control::placeholder, .bootstrap-tagsinput input::placeholder {
|
|
7
|
+
color: $gray-100!important;
|
|
8
8
|
}
|
|
9
9
|
.position-sticky.bg-body {
|
|
10
10
|
background-color: transparent!important;
|
|
@@ -67,12 +67,3 @@
|
|
|
67
67
|
color: #7b8ab8!important;
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
|
-
|
|
71
|
-
:root {
|
|
72
|
-
.skin-darkly, .skin-slate, .skin-cyborg {
|
|
73
|
-
--bs-border-color: #929292;
|
|
74
|
-
}
|
|
75
|
-
.skin-zephyr {
|
|
76
|
-
--bs-secondary-rgb: var(--bs-secondary-color);
|
|
77
|
-
}
|
|
78
|
-
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<!-- IMPORT partials/topic/post-parent.tpl -->
|
|
10
10
|
{{{ end }}}
|
|
11
11
|
<div class="d-flex align-items-start gap-3 post-container-parent">
|
|
12
|
-
<div class="bg-body d-none d-sm-block rounded-circle" style="
|
|
12
|
+
<div class="bg-body d-none d-sm-block rounded-circle" style="box-shadow: 0 0 0 3px var(--bs-body-bg);">
|
|
13
13
|
<a class="d-inline-block position-relative text-decoration-none" href="{{{ if ./user.userslug }}}{config.relative_path}/user/{./user.userslug}{{{ else }}}#{{{ end }}}" aria-label="[[aria:profile-page-for, {./user.displayname}]]">
|
|
14
14
|
{buildAvatar(posts.user, "48px", true, "", "user/picture")}
|
|
15
15
|
{{{ if ./user.isLocal }}}
|