nodebb-theme-harmony 1.0.0-beta.106 → 1.0.0-beta.107

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": "1.0.0-beta.106",
3
+ "version": "1.0.0-beta.107",
4
4
  "nbbpm": {
5
5
  "compatibility": "^3.0.0"
6
6
  },
package/scss/modals.scss CHANGED
@@ -1,9 +1,6 @@
1
1
  .tool-modal {
2
- bottom: $spacer * 3;
3
- right: $spacer * 4;
4
-
5
- @include media-breakpoint-down(md) {
6
- right: $spacer;
7
- left: $spacer;
2
+ @include media-breakpoint-up(md) {
3
+ bottom: $spacer * 3;
4
+ right: $spacer * 4;
8
5
  }
9
6
  }
@@ -1,6 +1,6 @@
1
1
  <li component="categories/category" data-cid="{./cid}" class="w-100 border-bottom py-3 py-lg-4 gap-1 d-flex flex-column flex-lg-row align-items-start category-{./cid}">
2
2
  <meta itemprop="name" content="{./name}">
3
-
3
+
4
4
  <div class="d-flex col-lg-7 gap-2 gap-lg-3">
5
5
  <div class="flex-shrink-0">
6
6
  {buildCategoryIcon(@value, "40px", "rounded-1")}
@@ -10,7 +10,7 @@
10
10
  <!-- IMPORT partials/categories/link.tpl -->
11
11
  </h2>
12
12
  {{{ if ./descriptionParsed }}}
13
- <div class="description text-muted text-xs w-100">
13
+ <div class="description text-muted text-sm w-100">
14
14
  {./descriptionParsed}
15
15
  </div>
16
16
  {{{ end }}}
@@ -10,7 +10,7 @@
10
10
  <div class="icon py-1 bg-body d-none d-sm-block">
11
11
  <a class="d-inline-block position-relative text-decoration-none" href="{{{ if ./user.userslug }}}{config.relative_path}/user/{./user.userslug}{{{ else }}}#{{{ end }}}">
12
12
  {buildAvatar(posts.user, "48px", true, "", "user/picture")}
13
- <span component="user/status" class="position-absolute translate-middle-y badge border border-white border-2 rounded-circle status {posts.user.status}"><span class="visually-hidden">[[global:{posts.user.status}]]</span></span>
13
+ <span component="user/status" class="position-absolute translate-middle-y border border-white border-2 rounded-circle status {posts.user.status}"><span class="visually-hidden">[[global:{posts.user.status}]]</span></span>
14
14
  </a>
15
15
  </div>
16
16
 
@@ -19,7 +19,7 @@
19
19
  <div class="icon bg-body d-sm-none">
20
20
  <a class="d-inline-block position-relative text-decoration-none" href="{{{ if ./user.userslug }}}{config.relative_path}/user/{./user.userslug}{{{ else }}}#{{{ end }}}">
21
21
  {buildAvatar(posts.user, "20px", true, "", "user/picture")}
22
- <span component="user/status" class="position-absolute translate-middle-y badge border border-white border-2 rounded-circle status {posts.user.status}"><span class="visually-hidden">[[global:{posts.user.status}]]</span></span>
22
+ <span component="user/status" class="position-absolute translate-middle-y border border-white border-2 rounded-circle status {posts.user.status}"><span class="visually-hidden">[[global:{posts.user.status}]]</span></span>
23
23
  </a>
24
24
  </div>
25
25