nodebb-theme-persona 13.0.5 → 13.0.7

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 CHANGED
@@ -5,6 +5,10 @@ The Persona theme is the default theme for NodeBB for versions spanning v0.7.1 t
5
5
 
6
6
  For the v3.x release line, Persona will be a supported theme bundled with NodeBB, but will not be active by default.
7
7
 
8
+ ## Issues
9
+
10
+ Issues are now tracked in [the main project issue tracker](https://github.com/NodeBB/NodeBB/issues?q=is%3Aopen+is%3Aissue+label%3Athemes).
11
+
8
12
  ## Addons
9
13
 
10
14
  [Recent Cards](https://github.com/psychobunny/nodebb-plugin-recent-cards)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-theme-persona",
3
- "version": "13.0.5",
3
+ "version": "13.0.7",
4
4
  "nbbpm": {
5
5
  "compatibility": "^3.0.0"
6
6
  },
package/public/persona.js CHANGED
@@ -155,7 +155,7 @@ $(document).ready(function () {
155
155
  } else {
156
156
  el.css('background-color', user['icon:bgColor'])
157
157
  .text(user['icon:text'])
158
- .addClass('user-icon');
158
+ .addClass('avatar');
159
159
  }
160
160
  }
161
161
  });
@@ -72,7 +72,7 @@
72
72
  padding: 3px 15px;
73
73
  font-size: 20px;
74
74
 
75
- &.user-icon {
75
+ &.avatar {
76
76
  overflow: visible;
77
77
  }
78
78
 
@@ -114,6 +114,7 @@
114
114
  &.taskbar-composer {
115
115
  a, a:hover, a:focus, a:active {
116
116
  background-color: $danger;
117
+ color: white;
117
118
  background-size: cover;
118
119
  }
119
120
  }
@@ -152,7 +153,6 @@
152
153
  i {
153
154
  font-size: 18px;
154
155
  line-height: 42px;
155
- color: $body-color;
156
156
  }
157
157
  }
158
158
  }
package/scss/topic.scss CHANGED
@@ -618,16 +618,6 @@
618
618
  }
619
619
  }
620
620
 
621
- .selection-tooltip-container {
622
- position: absolute;
623
- padding: 5px;
624
- border: 1px solid $card-border-color;
625
- background-color: $card-bg;
626
- border-radius: 3px;
627
- margin: 10px 0px 0px 0px;
628
- z-index: 1;
629
- }
630
-
631
621
  [component="post"] {
632
622
  >.post-header [component="user/picture"], >.post-header [component="user/status"] {
633
623
  opacity: 1;
@@ -1,15 +1,15 @@
1
1
  {{{ if config.loggedIn }}}
2
2
  <ul class="nav nav-pills">
3
3
  <li class="nav-item">
4
- <a class="nav-link" href="#notifications" data-bs-toggle="tab"><span class="counter unread-count" component="notifications/icon" data-content="{unreadCount.notification}"></span> <i class="fa fa-fw fa-bell"></i></a>
4
+ <a class="nav-link" href="#" data-bs-target="#notifications" data-bs-toggle="tab"><span class="counter unread-count" component="notifications/icon" data-content="{unreadCount.notification}"></span> <i class="fa fa-fw fa-bell"></i></a>
5
5
  </li>
6
6
  {{{ if !config.disableChat }}}
7
7
  <li class="nav-item">
8
- <a class="nav-link" href="#chats" data-bs-toggle="tab"><i class="counter unread-count" component="chat/icon" data-content="{unreadCount.chat}"></i> <i class="fa fa-fw fa-comment"></i></a>
8
+ <a class="nav-link" href="#" data-bs-target="#chats" data-bs-toggle="tab"><i class="counter unread-count" component="chat/icon" data-content="{unreadCount.chat}"></i> <i class="fa fa-fw fa-comment"></i></a>
9
9
  </li>
10
10
  {{{ end }}}
11
11
  <li class="nav-item">
12
- <a class="nav-link active" href="#profile" data-bs-toggle="tab">
12
+ <a class="nav-link active" href="#" data-bs-target="#profile" data-bs-toggle="tab">
13
13
  {buildAvatar(user, "24px", true, "user-icon")}
14
14
  <i component="user/status" class="fa fa-fw fa-circle status {user.status}"></i>
15
15
  </a>
@@ -1,3 +1,3 @@
1
- <div component="selection/tooltip" class="selection-tooltip-container">
1
+ <div component="selection/tooltip" class="selection-tooltip-container position-absolute card card-body p-1 rounded-1 mt-2" style="z-index: 1;">
2
2
  <button component="selection/tooltip/quote" class="btn btn-sm btn-primary quote-tooltip-btn">[[topic:quote]]</button>
3
3
  </div>