nodebb-theme-persona 12.1.0 → 12.1.2

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/less/chats.less CHANGED
@@ -156,10 +156,6 @@
156
156
  margin-top: 10px;
157
157
  }
158
158
 
159
- .chat-list {
160
- margin-top: -5px;
161
- }
162
-
163
159
  .chats-list {
164
160
  padding: 0;
165
161
  overflow-x: hidden;
package/less/header.less CHANGED
@@ -205,7 +205,9 @@
205
205
 
206
206
  .notif-dropdown-link {
207
207
  border-top: 1px solid rgba(163, 163, 163, 0.5);
208
-
208
+ .btn-group-justified {
209
+ table-layout: auto;
210
+ }
209
211
  a {
210
212
  text-align: center;
211
213
  padding: 0.5em 0.5em;
package/less/mixins.less CHANGED
@@ -58,7 +58,7 @@
58
58
  margin-left: -2.5rem;
59
59
  }
60
60
 
61
- .avatar, .timeline-badge {
61
+ .icon .avatar, .timeline-badge {
62
62
  // Opaque ring
63
63
  position: relative;
64
64
  z-index: 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-theme-persona",
3
- "version": "12.1.0",
3
+ "version": "12.1.2",
4
4
  "nbbpm": {
5
5
  "compatibility": "^2.0.0"
6
6
  },
@@ -1,30 +0,0 @@
1
- <div class="account">
2
- <!-- IMPORT partials/account/header.tpl -->
3
-
4
- <form class="form-horizontal edit-form">
5
- <div class="control-group">
6
- <label class="control-label" for="inputNewEmail">[[user:email]]</label>
7
- <div class="controls">
8
- <input class="form-control" type="text" id="inputNewEmail" placeholder="[[user:email]]" value="{email}">
9
- </div>
10
- </div>
11
-
12
- <!-- disables autocomplete on FF --><input type="password" style="display:none">
13
-
14
- <!-- IF isSelf -->
15
- <div class="control-group">
16
- <label class="control-label" for="inputCurrentPassword">[[user:current_password]]</label>
17
- <div class="controls">
18
- <input autocomplete="off" class="form-control" type="password" id="inputCurrentPassword" placeholder="[[user:current_password]]" value=""<!-- IF !hasPassword --> disabled<!-- ENDIF !hasPassword -->>
19
- </div>
20
- </div>
21
- <!-- ENDIF isSelf -->
22
-
23
- <input type="hidden" name="uid" id="inputUID" value="{uid}" />
24
-
25
- <br/>
26
- <div class="form-actions">
27
- <button id="submitBtn" class="btn btn-primary btn-block"><i class="hide fa fa-spinner fa-spin"></i> [[user:change_email]]</button>
28
- </div>
29
- </form>
30
- </div>