nodebb-theme-harmony 2.0.0-pre.1 → 2.0.0-pre.11

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.
Files changed (33) hide show
  1. package/library.js +2 -5
  2. package/package.json +2 -2
  3. package/public/harmony.js +2 -5
  4. package/scss/header.scss +1 -1
  5. package/scss/modules/topics-list.scss +2 -2
  6. package/scss/topic.scss +4 -4
  7. package/templates/account/settings.tpl +2 -2
  8. package/templates/account/theme.tpl +5 -0
  9. package/templates/admin/plugins/harmony.tpl +4 -0
  10. package/templates/category.tpl +3 -1
  11. package/templates/partials/buttons/newTopic.tpl +1 -1
  12. package/templates/partials/category/filter-dropdown-content.tpl +28 -24
  13. package/templates/partials/category/selector-dropdown-content.tpl +23 -19
  14. package/templates/partials/category/sort.tpl +9 -9
  15. package/templates/partials/category/tools.tpl +13 -13
  16. package/templates/partials/category/watch.tpl +8 -8
  17. package/templates/partials/flags/filters.tpl +21 -18
  18. package/templates/partials/quick-search-results.tpl +1 -1
  19. package/templates/partials/search-filters.tpl +1 -1
  20. package/templates/partials/sidebar/chats.tpl +1 -1
  21. package/templates/partials/sidebar/drafts.tpl +1 -1
  22. package/templates/partials/sidebar/notifications.tpl +1 -1
  23. package/templates/partials/sidebar/user-menu.tpl +13 -13
  24. package/templates/partials/tags/filter-dropdown-content.tpl +24 -20
  25. package/templates/partials/topic/post-menu-list.tpl +28 -20
  26. package/templates/partials/topic/post.tpl +1 -1
  27. package/templates/partials/topic/sort.tpl +3 -3
  28. package/templates/partials/topic/topic-menu-list.tpl +15 -15
  29. package/templates/partials/topic/watch.tpl +6 -6
  30. package/templates/partials/topic-list-bar.tpl +1 -1
  31. package/templates/partials/topics_list.tpl +2 -2
  32. package/templates/topic.tpl +5 -2
  33. package/package-lock.json +0 -2368
package/library.js CHANGED
@@ -11,6 +11,7 @@ const library = module.exports;
11
11
 
12
12
  const defaults = {
13
13
  enableQuickReply: 'on',
14
+ enableBreadcrumbs: 'on',
14
15
  centerHeaderElements: 'off',
15
16
  mobileTopicTeasers: 'off',
16
17
  stickyToolbar: 'on',
@@ -129,11 +130,6 @@ library.defineWidgetAreas = async function (areas) {
129
130
  template: 'account/profile.tpl',
130
131
  location: 'profile-aboutme-after',
131
132
  },
132
- {
133
- name: 'Chat Header',
134
- template: 'chats.tpl',
135
- location: 'header',
136
- },
137
133
  ]);
138
134
 
139
135
  return areas;
@@ -147,6 +143,7 @@ library.loadThemeConfig = async function (uid) {
147
143
 
148
144
  const config = { ...defaults, ...themeConfig, ...(_.pick(userConfig, Object.keys(defaults))) };
149
145
  config.enableQuickReply = config.enableQuickReply === 'on';
146
+ config.enableBreadcrumbs = config.enableBreadcrumbs === 'on';
150
147
  config.centerHeaderElements = config.centerHeaderElements === 'on';
151
148
  config.mobileTopicTeasers = config.mobileTopicTeasers === 'on';
152
149
  config.stickyToolbar = config.stickyToolbar === 'on';
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "nodebb-theme-harmony",
3
- "version": "2.0.0-pre.1",
3
+ "version": "2.0.0-pre.11",
4
4
  "nbbpm": {
5
- "compatibility": "^3.5.0"
5
+ "compatibility": "^3.7.0"
6
6
  },
7
7
  "description": "Harmony theme for NodeBB",
8
8
  "main": "library.js",
package/public/harmony.js CHANGED
@@ -65,11 +65,8 @@ $(document).ready(function () {
65
65
  const bottomBar = $('[component="bottombar"]');
66
66
  const $body = $('body');
67
67
  const $window = $(window);
68
- $body.on('shown.bs.dropdown', '.sticky-tools', function () {
69
- bottomBar.addClass('hidden');
70
- });
71
- $body.on('hidden.bs.dropdown', '.sticky-tools', function () {
72
- bottomBar.removeClass('hidden');
68
+ $body.on('shown.bs.dropdown hidden.bs.dropdown', '.sticky-tools', function () {
69
+ bottomBar.toggleClass('hidden', $(this).find('.dropdown-menu.show').length);
73
70
  });
74
71
  function isSearchVisible() {
75
72
  return !!$('[component="bottombar"] [component="sidebar/search"] .search-dropdown.show').length;
package/scss/header.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  // hide brand/title on user and group details pages so it doesnt break covers
2
- .page-user, .template-groups-details {
2
+ body[class*="template-account-"], .template-chats, .template-groups-details {
3
3
  .brand-container {
4
4
  display: none;
5
5
  }
@@ -1,8 +1,8 @@
1
1
  ul.topics-list, ul.categories-list {
2
2
  li {
3
3
  &.deleted {
4
- .meta { display: none!important; }
5
- .title a { text-decoration: line-through;}
4
+ .meta, .topic-thumbs { display: none!important; }
5
+ opacity: 0.65;
6
6
  }
7
7
 
8
8
  &.selected {
package/scss/topic.scss CHANGED
@@ -1,4 +1,7 @@
1
1
  body.template-topic {
2
+ .breadcrumb .breadcrumb-item:last-child {
3
+ display: none;
4
+ }
2
5
  .topic {
3
6
  .posts-container {
4
7
  max-width: 960px;
@@ -32,10 +35,7 @@ body.template-topic {
32
35
  &.selected .post-container {
33
36
  background-color: mix($body-bg, $body-color, 90%);
34
37
  }
35
- &.deleted .post-container .content {
36
- opacity: .75;
37
- text-decoration: line-through;
38
- }
38
+ &.deleted .post-container .content { opacity: .65; }
39
39
 
40
40
  [component="post/content"] {
41
41
  @include fix-lists();
@@ -112,8 +112,8 @@
112
112
  <div class="mb-2">
113
113
  <label class="form-label text-sm" for="categoryTopicSort">[[user:category-topic-sort]]</label>
114
114
  <select class="form-select form-select-sm" id="categoryTopicSort" data-property="categoryTopicSort">
115
- <option value="newest_to_oldest" {{{ if (settings.categoryTopicSort == "newest_to_oldest") }}}selected{{{ end }}}>[[topic:newest-to-oldest]]</option>
116
- <option value="oldest_to_newest" {{{ if (settings.categoryTopicSort == "oldest_to_newest") }}}selected{{{ end }}}>[[topic:oldest-to-newest]]</option>
115
+ <option value="recently_replied" {{{ if (settings.categoryTopicSort == "recently_replied") }}}selected{{{ end }}}>[[topic:recently-replied]]</option>
116
+ <option value="recently_created" {{{ if (settings.categoryTopicSort == "recently_created") }}}selected{{{ end }}}>[[topic:recently-created]]</option>
117
117
  <option value="most_posts" {{{ if (settings.categoryTopicSort == "most_posts") }}}selected{{{ end }}}>[[topic:most-posts]]</option>
118
118
  <option value="most_votes" {{{ if (settings.categoryTopicSort == "most_votes") }}}selected{{{ end }}}>[[topic:most-votes]]</option>
119
119
  <option value="most_views" {{{ if (settings.categoryTopicSort == "most_views") }}}selected{{{ end }}}>[[topic:most-views]]</option>
@@ -12,6 +12,11 @@
12
12
  <label class="form-check-label" for="enableQuickReply">[[themes/harmony:settings.enableQuickReply]]</label>
13
13
  </div>
14
14
 
15
+ <div class="form-check form-switch mb-3">
16
+ <input type="checkbox" class="form-check-input" id="enableBreadcrumbs" name="enableBreadcrumbs" {{{ if theme.enableBreadcrumbs }}}checked{{{ end }}} />
17
+ <label for="enableBreadcrumbs" class="form-check-label">[[themes/harmony:settings.enableBreadcrumbs]]</label>
18
+ </div>
19
+
15
20
  <div class="form-check form-switch mb-3">
16
21
  <input class="form-check-input" type="checkbox" role="switch" id="centerHeaderElements" name="centerHeaderElements" {{{ if theme.centerHeaderElements }}}checked{{{ end }}}>
17
22
  <label class="form-check-label" for="centerHeaderElements">[[themes/harmony:settings.centerHeaderElements]]</label>
@@ -8,6 +8,10 @@
8
8
  <input type="checkbox" class="form-check-input" id="enableQuickReply" name="enableQuickReply" />
9
9
  <label for="enableQuickReply" class="form-check-label">[[themes/harmony:settings.enableQuickReply]]</label>
10
10
  </div>
11
+ <div class="form-check form-switch">
12
+ <input type="checkbox" class="form-check-input" id="enableBreadcrumbs" name="enableBreadcrumbs" />
13
+ <label for="enableBreadcrumbs" class="form-check-label">[[themes/harmony:settings.enableBreadcrumbs]]</label>
14
+ </div>
11
15
  <div class="form-check form-switch">
12
16
  <input type="checkbox" class="form-check-input" id="centerHeaderElements" name="centerHeaderElements" />
13
17
  <label for="centerHeaderElements" class="form-check-label">[[themes/harmony:settings.centerHeaderElements]]</label>
@@ -1,5 +1,7 @@
1
1
  <!-- IMPORT partials/breadcrumbs-json-ld.tpl -->
2
+ {{{ if config.theme.enableBreadcrumbs }}}
2
3
  <!-- IMPORT partials/breadcrumbs.tpl -->
4
+ {{{ end }}}
3
5
 
4
6
  <div class="category-header d-flex flex-column gap-2">
5
7
  <div class="d-flex gap-2 align-items-center mb-1 {{{ if config.theme.centerHeaderElements }}}justify-content-center{{{ end }}}">
@@ -7,7 +9,7 @@
7
9
  <h1 class="tracking-tight fs-2 fw-semibold mb-0 text-center">{./name}</h1>
8
10
  </div>
9
11
  {{{ if ./descriptionParsed }}}
10
- <div class="description text-muted text-sm w-100 {{{ if config.theme.centerHeaderElements }}}text-center{{{ end }}}">
12
+ <div class="description text-secondary text-sm w-100 {{{ if config.theme.centerHeaderElements }}}text-center{{{ end }}}">
11
13
  {./descriptionParsed}
12
14
  </div>
13
15
  {{{ end }}}
@@ -4,7 +4,7 @@
4
4
  </button>
5
5
  <noscript>
6
6
  <input type="checkbox" class="hidden" id="category-dropdown-check" aria-hidden="true">
7
- <ul component="category/list" class="dropdown-menu p-1 text-sm category-dropdown-menu" role="menu">
7
+ <ul component="category/list" class="dropdown-menu p-1 text-sm category-dropdown-menu ghost-scrollbar" role="menu">
8
8
  {{{each categories}}}
9
9
  <li role="presentation" class="category {{{if categories.disabledClass}}}disabled{{{end}}}">
10
10
  <a role="menu-item" href="{config.relative_path}/compose?cid={categories.cid}">{categories.level}
@@ -8,30 +8,34 @@
8
8
  <i class="fa fa-fw fa-list text-primary"></i>
9
9
  <span class="visible-md-inline visible-lg-inline fw-semibold">[[unread:all-categories]]</span>{{{ end }}}
10
10
  </button>
11
+
11
12
  <div component="category-selector-search" class="hidden position-absolute">
12
13
  <input type="text" class="form-control form-control-sm" placeholder="[[search:type-to-search]]" autocomplete="off">
13
14
  </div>
14
- <ul component="category/list" class="dropdown-menu p-1 text-sm category-dropdown-menu" role="menu">
15
- <li role="presentation" class="category" data-cid="all">
16
- <a class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem" href="{{{ if allCategoriesUrl }}}{config.relative_path}/{allCategoriesUrl}{{{ else }}}#{{{ end }}}">
17
- <div class="flex-grow-1">[[unread:all-categories]]</div>
18
- <i component="category/select/icon" class="flex-shrink-0 fa fa-fw fa-check {{{if selectedCategory}}}invisible{{{end}}}"></i>
19
- </a>
20
- </li>
21
- {{{each categoryItems}}}
22
- <li role="presentation" class="category {{{ if ./disabledClass }}}disabled{{{ end }}}" data-cid="{./cid}" data-parent-cid="{./parentCid}" data-name="{./name}">
23
- <a class="dropdown-item rounded-1 d-flex align-items-center gap-2 {{{ if ./disabledClass }}}disabled{{{ end }}}" role="menuitem" href="#">
24
- {./level}
25
- <span component="category-markup" class="flex-grow-1" style="{{{ if ./match }}}font-weight: bold;{{{end}}}">
26
- <div class="category-item d-inline-flex align-items-center gap-1">
27
- {{{ if ./icon }}}
28
- {buildCategoryIcon(@value, "24px", "rounded-circle")}
29
- {{{ end }}}
30
- {./name}
31
- </div>
32
- </span>
33
- <i component="category/select/icon" class="flex-shrink-0 fa fa-fw fa-check {{{ if !./selected }}}invisible{{{ end }}}"></i>
34
- </a>
35
- </li>
36
- {{{end}}}
37
- </ul>
15
+
16
+ <div class="dropdown-menu p-1">
17
+ <ul component="category/list" class="list-unstyled mb-0 text-sm category-dropdown-menu ghost-scrollbar" role="menu">
18
+ <li role="presentation" class="category" data-cid="all">
19
+ <a class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem" href="{{{ if allCategoriesUrl }}}{config.relative_path}/{allCategoriesUrl}{{{ else }}}#{{{ end }}}">
20
+ <div class="flex-grow-1">[[unread:all-categories]]</div>
21
+ <i component="category/select/icon" class="flex-shrink-0 fa fa-fw fa-check {{{if selectedCategory}}}invisible{{{end}}}"></i>
22
+ </a>
23
+ </li>
24
+ {{{each categoryItems}}}
25
+ <li role="presentation" class="category {{{ if ./disabledClass }}}disabled{{{ end }}}" data-cid="{./cid}" data-parent-cid="{./parentCid}" data-name="{./name}">
26
+ <a class="dropdown-item rounded-1 d-flex align-items-center gap-2 {{{ if ./disabledClass }}}disabled{{{ end }}}" role="menuitem" href="#">
27
+ {./level}
28
+ <span component="category-markup" class="flex-grow-1" style="{{{ if ./match }}}font-weight: bold;{{{end}}}">
29
+ <div class="category-item d-inline-flex align-items-center gap-1">
30
+ {{{ if ./icon }}}
31
+ {buildCategoryIcon(@value, "24px", "rounded-circle")}
32
+ {{{ end }}}
33
+ {./name}
34
+ </div>
35
+ </span>
36
+ <i component="category/select/icon" class="flex-shrink-0 fa fa-fw fa-check {{{ if !./selected }}}invisible{{{ end }}}"></i>
37
+ </a>
38
+ </li>
39
+ {{{end}}}
40
+ </ul>
41
+ </div>
@@ -11,25 +11,29 @@
11
11
  {{{ end }}}
12
12
  </span>
13
13
  </button>
14
+
14
15
  <div component="category-selector-search" class="hidden position-absolute">
15
16
  <input type="text" class="form-control form-control-sm" placeholder="[[search:type-to-search]]" autocomplete="off">
16
17
  </div>
17
- <ul component="category/list" class="dropdown-menu p-1 text-sm category-dropdown-menu" role="menu">
18
- <li component="category/no-matches" role="presentation" class="category hidden">
19
- <a class="dropdown-item rounded-1" role="menuitem">[[search:no-matches]]</a>
20
- </li>
21
- {{{ each categoryItems }}}
22
- <li role="presentation" class="category {{{ if ./disabledClass }}}disabled {{{ end }}}" data-cid="{./cid}" data-name="{./name}" data-parent-cid="{./parentCid}">
23
- <a class="dropdown-item rounded-1 {{{ if ./disabledClass }}}disabled{{{ end }}}" role="menuitem" href="#">{./level}
24
- <span component="category-markup" style="{{{ if ./match }}}font-weight: bold;{{{end}}}">
25
- <div class="category-item d-inline-flex align-items-center gap-1">
26
- {{{ if ./icon }}}
27
- {buildCategoryIcon(@value, "24px", "rounded-circle")}
28
- {{{ end }}}
29
- {./name}
30
- </div>
31
- </span>
32
- </a>
33
- </li>
34
- {{{ end }}}
35
- </ul>
18
+
19
+ <div class="dropdown-menu p-1">
20
+ <ul component="category/list" class="list-unstyled mb-0 text-sm category-dropdown-menu ghost-scrollbar" role="menu">
21
+ <li component="category/no-matches" role="presentation" class="category hidden">
22
+ <a class="dropdown-item rounded-1" role="menuitem">[[search:no-matches]]</a>
23
+ </li>
24
+ {{{ each categoryItems }}}
25
+ <li role="presentation" class="category {{{ if ./disabledClass }}}disabled {{{ end }}}" data-cid="{./cid}" data-name="{./name}" data-parent-cid="{./parentCid}">
26
+ <a class="dropdown-item rounded-1 {{{ if ./disabledClass }}}disabled{{{ end }}}" role="menuitem" href="#">{./level}
27
+ <span component="category-markup" style="{{{ if ./match }}}font-weight: bold;{{{end}}}">
28
+ <div class="category-item d-inline-flex align-items-center gap-1">
29
+ {{{ if ./icon }}}
30
+ {buildCategoryIcon(@value, "24px", "rounded-circle")}
31
+ {{{ end }}}
32
+ {./name}
33
+ </div>
34
+ </span>
35
+ </a>
36
+ </li>
37
+ {{{ end }}}
38
+ </ul>
39
+ </div>
@@ -6,33 +6,33 @@
6
6
 
7
7
  <ul class="dropdown-menu p-1 text-sm" role="menu">
8
8
  <li>
9
- <a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="newest_to_oldest" role="menuitem">
10
- <span class="flex-grow-1">[[topic:newest-to-oldest]]</span>
11
- <i class="flex-shrink-0 fa fa-fw text-muted"></i>
9
+ <a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="recently_replied" role="menuitem">
10
+ <span class="flex-grow-1">[[topic:recently-replied]]</span>
11
+ <i class="flex-shrink-0 fa fa-fw text-secondary"></i>
12
12
  </a>
13
13
  </li>
14
14
  <li>
15
- <a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="oldest_to_newest" role="menuitem">
16
- <span class="flex-grow-1">[[topic:oldest-to-newest]]</span>
17
- <i class="flex-shrink-0 fa fa-fw text-muted"></i>
15
+ <a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="recently_created" role="menuitem">
16
+ <span class="flex-grow-1">[[topic:recently-created]]</span>
17
+ <i class="flex-shrink-0 fa fa-fw text-secondary"></i>
18
18
  </a>
19
19
  </li>
20
20
  <li>
21
21
  <a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="most_posts" role="menuitem">
22
22
  <span class="flex-grow-1">[[topic:most-posts]]</span>
23
- <i class="flex-shrink-0 fa fa-fw text-muted"></i>
23
+ <i class="flex-shrink-0 fa fa-fw text-secondary"></i>
24
24
  </a>
25
25
  </li>
26
26
  <li>
27
27
  <a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="most_votes" role="menuitem">
28
28
  <span class="flex-grow-1">[[topic:most-votes]]</span>
29
- <i class="flex-shrink-0 fa fa-fw text-muted"></i>
29
+ <i class="flex-shrink-0 fa fa-fw text-secondary"></i>
30
30
  </a>
31
31
  </li>
32
32
  <li>
33
33
  <a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="most_views" role="menuitem">
34
34
  <span class="flex-grow-1">[[topic:most-views]]</span>
35
- <i class="flex-shrink-0 fa fa-fw text-muted"></i>
35
+ <i class="flex-shrink-0 fa fa-fw text-secondary"></i>
36
36
  </a>
37
37
  </li>
38
38
  </ul>
@@ -8,28 +8,28 @@
8
8
  <ul class="dropdown-menu p-1 text-sm" role="menu">
9
9
  <li>
10
10
  <a component="topic/mark-unread-for-all" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
11
- <i class="fa fa-fw text-muted fa-inbox"></i> [[topic:thread-tools.markAsUnreadForAll]]
11
+ <i class="fa fa-fw fa-inbox text-secondary"></i> [[topic:thread-tools.markAsUnreadForAll]]
12
12
  </a>
13
13
  </li>
14
14
  <li>
15
15
  <a component="topic/pin" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
16
- <i class="fa fa-fw text-muted fa-thumb-tack"></i> [[topic:thread-tools.pin]]
16
+ <i class="fa fa-fw fa-thumb-tack text-secondary"></i> [[topic:thread-tools.pin]]
17
17
  </a>
18
18
  </li>
19
19
  <li>
20
20
  <a component="topic/unpin" href="#" class="hidden dropdown-item rounded-1" role="menuitem">
21
- <i class="fa fa-fw text-muted fa-thumb-tack fa-rotate-90"></i> [[topic:thread-tools.unpin]]
21
+ <i class="fa fa-fw fa-thumb-tack fa-rotate-90 text-secondary"></i> [[topic:thread-tools.unpin]]
22
22
  </a>
23
23
  </li>
24
24
 
25
25
  <li>
26
26
  <a component="topic/lock" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
27
- <i class="fa fa-fw text-muted fa-lock"></i> [[topic:thread-tools.lock]]
27
+ <i class="fa fa-fw fa-lock text-secondary"></i> [[topic:thread-tools.lock]]
28
28
  </a>
29
29
  </li>
30
30
  <li>
31
31
  <a component="topic/unlock" href="#" class="hidden dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
32
- <i class="fa fa-fw text-muted fa-unlock"></i> [[topic:thread-tools.unlock]]
32
+ <i class="fa fa-fw fa-unlock text-secondary"></i> [[topic:thread-tools.unlock]]
33
33
  </a>
34
34
  </li>
35
35
 
@@ -37,25 +37,25 @@
37
37
 
38
38
  <li>
39
39
  <a component="topic/move" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
40
- <i class="fa fa-fw text-muted fa-arrows"></i> [[topic:thread-tools.move]]
40
+ <i class="fa fa-fw fa-arrows text-secondary"></i> [[topic:thread-tools.move]]
41
41
  </a>
42
42
  </li>
43
43
  {{{if template.category}}}
44
44
  <li>
45
45
  <a component="topic/move-all" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
46
- <i class="fa fa-fw text-muted fa-arrows"></i> [[topic:thread-tools.move-all]]
46
+ <i class="fa fa-fw fa-arrows text-secondary"></i> [[topic:thread-tools.move-all]]
47
47
  </a>
48
48
  </li>
49
49
  {{{end}}}
50
50
  <li>
51
51
  <a component="topic/merge" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
52
- <i class="fa fa-fw text-muted fa-code-fork"></i> [[topic:thread-tools.merge]]
52
+ <i class="fa fa-fw fa-code-fork text-secondary"></i> [[topic:thread-tools.merge]]
53
53
  </a>
54
54
  </li>
55
55
 
56
56
  <li>
57
57
  <a component="topic/tag" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
58
- <i class="fa fa-fw text-muted fa-tag"></i> [[topic:thread-tools.tag]]
58
+ <i class="fa fa-fw fa-tag text-secondary"></i> [[topic:thread-tools.tag]]
59
59
  </a>
60
60
  </li>
61
61
 
@@ -63,24 +63,24 @@
63
63
 
64
64
  <li>
65
65
  <a component="topic/delete" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
66
- <i class="fa fa-fw text-muted fa-trash-o"></i> [[topic:thread-tools.delete]]
66
+ <i class="fa fa-fw fa-trash-o text-secondary"></i> [[topic:thread-tools.delete]]
67
67
  </a>
68
68
  </li>
69
69
  <li>
70
70
  <a component="topic/restore" href="#" class="hidden dropdown-item rounded-1" role="menuitem">
71
- <i class="fa fa-fw text-muted fa-history"></i> [[topic:thread-tools.restore]]
71
+ <i class="fa fa-fw fa-history text-secondary"></i> [[topic:thread-tools.restore]]
72
72
  </a>
73
73
  </li>
74
74
  <li>
75
75
  <a component="topic/purge" href="#" class="hidden dropdown-item rounded-1" role="menuitem">
76
- <i class="fa fa-fw text-muted fa-eraser"></i> [[topic:thread-tools.purge]]
76
+ <i class="fa fa-fw fa-eraser text-secondary"></i> [[topic:thread-tools.purge]]
77
77
  </a>
78
78
  </li>
79
79
 
80
80
  {{{each thread_tools}}}
81
81
  <li>
82
82
  <a href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2 {thread_tools.class}" role="menuitem">
83
- <i class="fa fa-fw {thread_tools.icon}"></i>
83
+ <i class="fa fa-fw {thread_tools.icon} text-secondary"></i>
84
84
  {thread_tools.title}</a>
85
85
  </li>
86
86
  {{{end}}}
@@ -15,10 +15,10 @@
15
15
  <a class="dropdown-item rounded-1 d-flex align-items-center gap-2 p-2" href="#" component="category/watching" data-state="watching" role="menuitem">
16
16
  <div class="flex-grow-1 d-flex flex-column">
17
17
  <span class="d-flex align-items-center gap-2">
18
- <i class="flex-shrink-0 fa fa-fw text-muted fa-bell-o"></i>
18
+ <i class="flex-shrink-0 fa fa-fw fa-bell-o text-secondary"></i>
19
19
  <span class="flex-grow-1 fw-semibold">[[category:watching]]</span>
20
20
  </span>
21
- <div class="help-text text-muted text-xs">[[category:watching.description]]</div>
21
+ <div class="help-text text-secondary text-xs">[[category:watching.description]]</div>
22
22
  </div>
23
23
  <span class="flex-shrink-0"><i component="category/watching/check" class="fa fa-fw {{{ if ./isWatched }}}fa-check{{{ end }}}"></i></span>
24
24
  </a>
@@ -28,10 +28,10 @@
28
28
  <a class="dropdown-item rounded-1 d-flex align-items-center gap-2 p-2" href="#" component="category/tracking" data-state="tracking" role="menuitem">
29
29
  <div class="flex-grow-1 d-flex flex-column">
30
30
  <span class="d-flex align-items-center gap-2">
31
- <i class="flex-shrink-0 fa fa-fw text-muted fa-inbox"></i>
31
+ <i class="flex-shrink-0 fa fa-fw fa-inbox text-secondary"></i>
32
32
  <span class="flex-grow-1 fw-semibold">[[category:tracking]]</span>
33
33
  </span>
34
- <div class="help-text text-muted text-xs">[[category:tracking.description]]</div>
34
+ <div class="help-text text-secondary text-xs">[[category:tracking.description]]</div>
35
35
  </div>
36
36
  <span class="flex-shrink-0"><i component="category/tracking/check" class="fa fa-fw {{{ if ./isTracked }}}fa-check{{{ end }}}"></i></span>
37
37
  </a>
@@ -41,10 +41,10 @@
41
41
  <a class="dropdown-item rounded-1 d-flex align-items-center gap-2 p-2" href="#" component="category/notwatching" data-state="notwatching" role="menuitem">
42
42
  <div class="flex-grow-1 d-flex flex-column">
43
43
  <span class="d-flex align-items-center gap-2">
44
- <i class="flex-shrink-0 fa fa-fw text-muted fa-clock-o"></i>
44
+ <i class="flex-shrink-0 fa fa-fw fa-clock-o text-secondary"></i>
45
45
  <span class="flex-grow-1 fw-semibold">[[category:not-watching]]</span>
46
46
  </span>
47
- <div class="help-text text-muted text-xs">[[category:not-watching.description]]</div>
47
+ <div class="help-text text-secondary text-xs">[[category:not-watching.description]]</div>
48
48
  </div>
49
49
  <span class="flex-shrink-0"><i component="category/notwatching/check" class="fa fa-fw {{{ if ./isNotWatched }}}fa-check{{{ end }}}"></i></span>
50
50
  </a>
@@ -54,10 +54,10 @@
54
54
  <a class="dropdown-item rounded-1 d-flex align-items-center gap-2 p-2" href="#" component="category/ignoring" data-state="ignoring" role="menuitem">
55
55
  <div class="flex-grow-1 d-flex flex-column">
56
56
  <span class="d-flex align-items-center gap-2">
57
- <i class="flex-shrink-0 fa fa-fw text-muted fa-eye-slash"></i>
57
+ <i class="flex-shrink-0 fa fa-fw fa-eye-slash text-secondary"></i>
58
58
  <span class="flex-grow-1 fw-semibold">[[category:ignoring]]</span>
59
59
  </span>
60
- <div class="help-text text-muted text-xs">[[category:ignoring.description]]</div>
60
+ <div class="help-text text-secondary text-xs">[[category:ignoring.description]]</div>
61
61
  </div>
62
62
  <span class="flex-shrink-0"><i component="category/ignoring/check" class="fa fa-fw {{{ if ./isIgnored }}}fa-check{{{ end }}}"></i></span>
63
63
  </a>
@@ -27,24 +27,27 @@
27
27
  <div component="category-selector-search" class="hidden position-absolute">
28
28
  <input type="text" class="form-control form-control-sm" placeholder="[[search:type-to-search]]" autocomplete="off">
29
29
  </div>
30
- <ul component="category/list" class="dropdown-menu p-1 text-sm category-dropdown-menu" role="menu">
31
- {{{each categoryItems}}}
32
- <li role="presentation" class="category {{{ if ../disabledClass }}}disabled{{{ end }}}" data-cid="{../cid}" data-parent-cid="{../parentCid}" data-name="{../name}">
33
- <a class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem" href="#">
34
- {../level}
35
- <span component="category-markup" class="flex-grow-1" style="{{{ if ../match }}}font-weight: bold;{{{end}}}">
36
- <div class="category-item d-inline-flex align-items-center gap-1">
37
- {{{ if ./icon }}}
38
- {buildCategoryIcon(@value, "24px", "rounded-circle")}
39
- {{{ end }}}
40
- {./name}
41
- </div>
42
- </span>
43
- <i component="category/select/icon" class="flex-shrink-0 fa fa-fw fa-check {{{ if !../selected }}}invisible{{{ end }}}"></i>
44
- </a>
45
- </li>
46
- {{{end}}}
47
- </ul>
30
+
31
+ <div class="dropdown-menu p-1">
32
+ <ul component="category/list" class="list-unstyled mb-0 text-sm category-dropdown-menu ghost-scrollbar" role="menu">
33
+ {{{each categoryItems}}}
34
+ <li role="presentation" class="category {{{ if ../disabledClass }}}disabled{{{ end }}}" data-cid="{../cid}" data-parent-cid="{../parentCid}" data-name="{../name}">
35
+ <a class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem" href="#">
36
+ {../level}
37
+ <span component="category-markup" class="flex-grow-1" style="{{{ if ../match }}}font-weight: bold;{{{end}}}">
38
+ <div class="category-item d-inline-flex align-items-center gap-1">
39
+ {{{ if ./icon }}}
40
+ {buildCategoryIcon(@value, "24px", "rounded-circle")}
41
+ {{{ end }}}
42
+ {./name}
43
+ </div>
44
+ </span>
45
+ <i component="category/select/icon" class="flex-shrink-0 fa fa-fw fa-check {{{ if !../selected }}}invisible{{{ end }}}"></i>
46
+ </a>
47
+ </li>
48
+ {{{end}}}
49
+ </ul>
50
+ </div>
48
51
  </div>
49
52
 
50
53
  <div class="btn-group bottom-sheet">
@@ -9,7 +9,7 @@
9
9
  </div>
10
10
  {{{ end }}}
11
11
 
12
- <ul id="quick-search-results" class="quick-search-results list-unstyled mb-0 p-0 pe-1 overflow-auto overscroll-behavior-contain ff-base" style="max-width: 400px; max-height: 500px;">
12
+ <ul id="quick-search-results" class="quick-search-results list-unstyled mb-0 p-0 pe-1 overflow-auto overscroll-behavior-contain ff-base ghost-scrollbar" style="max-width: 400px; max-height: 500px;">
13
13
  <li role="separator" class="dropdown-divider d-none d-md-block"></li>
14
14
  {{{ each posts }}}
15
15
  <li data-tid="{posts.topic.tid}" data-pid="{posts.pid}" class="d-flex flex-column gap-1">
@@ -13,7 +13,7 @@
13
13
  <input type="text" class="form-control" component="category/filter/search" placeholder="[[search:type-a-category]]">
14
14
  </div>
15
15
  </li>
16
- <div component="category/list" class="overflow-auto" style="max-height: 350px;"></div>
16
+ <div component="category/list" class="overflow-auto ghost-scrollbar" style="max-height: 350px;"></div>
17
17
  <div class="px-3 py-1">
18
18
  <div class="form-check">
19
19
  <input id="search-children" class="form-check-input" type="checkbox"/>
@@ -10,7 +10,7 @@
10
10
  </a>
11
11
  <ul class="chats-dropdown dropdown-menu p-1 shadow" role="menu">
12
12
  <li>
13
- <div component="chat/list" class="list-container chats-list overscroll-behavior-contain p-0 pe-1 ff-base">
13
+ <div component="chat/list" class="list-container chats-list overscroll-behavior-contain p-0 pe-1 ff-base ghost-scrollbar">
14
14
  <div class="rounded-1">
15
15
  <div class="d-flex gap-1 justify-content-between">
16
16
  <div class="dropdown-item p-2 d-flex gap-2 placeholder-wave">
@@ -10,7 +10,7 @@
10
10
  </a>
11
11
  <ul class="drafts-dropdown dropdown-menu p-1 shadow" role="menu">
12
12
  <li>
13
- <div component="drafts/list" class="list-container draft-list list-unstyled d-flex flex-column overscroll-behavior-contain gap-1 pe-1">
13
+ <div component="drafts/list" class="list-container draft-list list-unstyled d-flex flex-column overscroll-behavior-contain gap-1 pe-1 ghost-scrollbar">
14
14
  <div class="dropdown-item rounded-1 p-2 d-flex gap-2 placeholder-wave">
15
15
  <div class="d-flex flex-grow-1 flex-column w-100">
16
16
  <div class="text-xs placeholder col-3">&nbsp;</div>
@@ -10,7 +10,7 @@
10
10
  </a>
11
11
  <ul class="notifications-dropdown dropdown-menu p-1 shadow" role="menu">
12
12
  <li>
13
- <div component="notifications/list" class="list-container notification-list overscroll-behavior-contain pe-1 ff-base">
13
+ <div component="notifications/list" class="list-container notification-list overscroll-behavior-contain pe-1 ff-base ghost-scrollbar">
14
14
  <div class="mb-2 p-1">
15
15
  <div class="d-flex gap-1 justify-content-between">
16
16
  <div class="d-flex gap-2 flex-grow-1 placeholder-wave">