nodebb-theme-harmony 2.2.16 → 2.2.18

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-theme-harmony",
3
- "version": "2.2.16",
3
+ "version": "2.2.18",
4
4
  "nbbpm": {
5
5
  "compatibility": "^4.0.0"
6
6
  },
package/scss/chats.scss CHANGED
@@ -2,11 +2,6 @@
2
2
  body.page-user-chats {
3
3
  > .layout-container {
4
4
  height: 100%;
5
- > #panel {
6
- height: 100%;
7
- > .container {
8
- height: 100%;
9
- }
10
- }
5
+ height: 100dvh;
11
6
  }
12
7
  }
@@ -1,6 +1,22 @@
1
1
  .tag-list {
2
2
  .tag {
3
+ position: relative;
3
4
  background-color: $gray-200!important;
4
5
  color: $gray-700!important;
6
+ border-radius: 12px var(--bs-badge-border-radius) var(--bs-badge-border-radius) 12px!important;
7
+ padding-left: 1.125rem;
8
+ &:before {
9
+ content: "";
10
+ position: absolute;
11
+ left: 4px;
12
+ top: 50%;
13
+ transform: translateY(-50%);
14
+ width: 10px;
15
+ height: 10px;
16
+ border-radius: 50%;
17
+ background-color: var(--bs-body-bg);
18
+ box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.4);
19
+ border: 1px solid $gray-300;
20
+ }
5
21
  }
6
22
  }
@@ -1,5 +1,5 @@
1
1
  <div component="topic/reply/container" class="btn-group {{{ if !privileges.topics:reply }}}hidden{{{ end }}}">
2
- <a href="{config.relative_path}/compose?tid={tid}" class="d-flex {{{ if !config.theme.topicSidebarTools}}}px-3{{{ end }}} gap-2 align-items-center btn btn-sm btn-primary fw-semibold" component="topic/reply" data-ajaxify="false" role="button"><i class="fa fa-fw fa-reply {{{ if !config.theme.topicSidebarTools}}} d-sm-block d-md-none {{{ end }}}"></i><span class="d-none d-md-block text-truncate text-nowrap">[[topic:reply]]</span></a>
2
+ <a href="{config.relative_path}/compose?tid={tid}" class="d-flex {{{ if !config.theme.topicSidebarTools}}}px-3{{{ end }}} gap-2 align-items-center btn btn-sm btn-primary fw-semibold" component="topic/reply" data-ajaxify="false" role="button"><i class="fa fa-fw fa-reply d-none {{{ if config.theme.topicSidebarTools}}} d-md-block{{{ end }}}"></i><span class="text-truncate text-nowrap">[[topic:reply]]</span></a>
3
3
  <button type="button" class="btn btn-sm btn-primary dropdown-toggle flex-0" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" aria-label="[[topic:reply-options]]">
4
4
  <span class="caret"></span>
5
5
  </button>