nodebb-theme-harmony 2.0.0-pre.8 → 2.0.0
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/README.md +3 -0
- package/library.js +1 -7
- package/package-lock.json +372 -402
- package/package.json +2 -2
- package/plugin.json +1 -2
- package/public/harmony.js +15 -15
- package/scss/common.scss +2 -8
- package/scss/harmony.scss +0 -1
- package/scss/header.scss +1 -1
- package/scss/mixins.scss +12 -5
- package/scss/modules/cover.scss +2 -4
- package/scss/modules/topics-list.scss +1 -1
- package/scss/overrides.scss +4 -0
- package/scss/sidebar.scss +18 -19
- package/scss/skins.scss +9 -0
- package/scss/topic.scss +4 -12
- package/templates/account/blocks.tpl +18 -7
- package/templates/account/categories.tpl +1 -1
- package/templates/account/consent.tpl +2 -2
- package/templates/account/edit/password.tpl +8 -8
- package/templates/account/edit/username.tpl +2 -3
- package/templates/account/edit.tpl +30 -15
- package/templates/account/info.tpl +142 -73
- package/templates/account/posts.tpl +7 -7
- package/templates/account/profile.tpl +19 -22
- package/templates/account/read.tpl +1 -0
- package/templates/account/settings.tpl +5 -5
- package/templates/account/shares.tpl +20 -0
- package/templates/account/topics.tpl +6 -5
- package/templates/admin/plugins/harmony.tpl +1 -0
- package/templates/footer.tpl +1 -1
- package/templates/groups/list.tpl +9 -7
- package/templates/notifications.tpl +1 -1
- package/templates/partials/account/header.tpl +15 -15
- package/templates/partials/account/sidebar-left.tpl +30 -16
- package/templates/partials/breadcrumbs-json-ld.tpl +15 -25
- package/templates/partials/categories/item.tpl +8 -8
- package/templates/partials/categories/lastpost.tpl +1 -1
- package/templates/partials/category/subcategory.tpl +1 -1
- package/templates/partials/groups/list.tpl +1 -1
- package/templates/partials/groups/memberlist.tpl +1 -1
- package/templates/partials/groups/sidebar-left.tpl +8 -8
- package/templates/partials/header/brand.tpl +3 -1
- package/templates/partials/mobile-footer.tpl +3 -6
- package/templates/partials/notifications_list.tpl +2 -2
- package/templates/partials/post_bar.tpl +3 -5
- package/templates/partials/posts_list_item.tpl +1 -1
- package/templates/partials/quick-search-results.tpl +5 -5
- package/templates/partials/search-filters.tpl +1 -1
- package/templates/partials/search-results.tpl +1 -1
- package/templates/partials/sidebar/chats.tpl +1 -1
- package/templates/partials/sidebar/notifications.tpl +1 -1
- package/templates/partials/sidebar/search.tpl +2 -2
- package/templates/partials/sidebar-left.tpl +2 -5
- package/templates/partials/tags_list.tpl +6 -4
- package/templates/partials/topic/event.tpl +1 -1
- package/templates/partials/topic/navigator.tpl +2 -2
- package/templates/partials/topic/post-menu-list.tpl +25 -1
- package/templates/partials/topic/post-menu.tpl +3 -29
- package/templates/partials/topic/post.tpl +108 -101
- package/templates/partials/topic/quickreply.tpl +2 -2
- package/templates/partials/topic/reply-button.tpl +4 -2
- package/templates/partials/topic/sort.tpl +1 -1
- package/templates/partials/topic/thumbs.tpl +1 -1
- package/templates/partials/topic/tools.tpl +2 -6
- package/templates/partials/topic/watch.tpl +1 -1
- package/templates/partials/topic-filters.tpl +1 -1
- package/templates/partials/topic-list-bar.tpl +6 -6
- package/templates/partials/topic-terms.tpl +1 -1
- package/templates/partials/topics_list.tpl +12 -4
- package/templates/partials/users/item.tpl +33 -31
- package/templates/partials/users_list_menu.tpl +5 -5
- package/templates/post-queue.tpl +6 -2
- package/templates/recent.tpl +7 -0
- package/templates/topic.tpl +81 -88
- package/templates/users.tpl +2 -2
- package/templates/world.tpl +32 -1
- package/scss/modules/bottom-sheet.scss +0 -52
- package/templates/flags/detail.tpl +0 -179
- package/templates/flags/list.tpl +0 -6
- package/templates/login.tpl +0 -102
- package/templates/partials/category/filter-dropdown-content.tpl +0 -41
- package/templates/partials/category/selector-dropdown-content.tpl +0 -39
- package/templates/partials/category/sort.tpl +0 -39
- package/templates/partials/category/tools.tpl +0 -89
- package/templates/partials/category/watch.tpl +0 -67
- package/templates/partials/flags/bulk-actions.tpl +0 -9
- package/templates/partials/flags/filters.tpl +0 -189
- package/templates/partials/flags/results.tpl +0 -38
- package/templates/partials/groups/filter-dropdown-content.tpl +0 -25
- package/templates/partials/tags/filter-dropdown-content.tpl +0 -38
- package/templates/partials/tags/watch.tpl +0 -42
- package/templates/partials/users/filter-dropdown-content.tpl +0 -23
- package/templates/register.tpl +0 -104
package/README.md
CHANGED
|
@@ -10,6 +10,9 @@ Issues are tracked in [the main project issue tracker](https://github.com/NodeBB
|
|
|
10
10
|
## Screenshots
|
|
11
11
|
|
|
12
12
|
### Categories
|
|
13
|
+
|
|
14
|
+
_The cards in the header are added by the recent cards plugin. https://github.com/NodeBB-Community/nodebb-plugin-recent-cards_
|
|
15
|
+
|
|
13
16
|
<img height="450" src="screenshots/categories.png">
|
|
14
17
|
|
|
15
18
|
### Recent
|
package/library.js
CHANGED
|
@@ -181,10 +181,4 @@ library.saveUserSettings = async function (hookData) {
|
|
|
181
181
|
library.filterMiddlewareRenderHeader = async function (hookData) {
|
|
182
182
|
hookData.templateData.bootswatchSkinOptions = await meta.css.getSkinSwitcherOptions(hookData.req.uid);
|
|
183
183
|
return hookData;
|
|
184
|
-
};
|
|
185
|
-
|
|
186
|
-
library.filterTeasersConfigureStripTags = function (hookData) {
|
|
187
|
-
// teasers have a stretched-link to go to last post, the anchors in them are not clickable
|
|
188
|
-
hookData.tags.push('a');
|
|
189
|
-
return hookData;
|
|
190
|
-
};
|
|
184
|
+
};
|