nodebb-theme-harmony 1.0.0-beta.69 → 1.0.0-beta.70
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
package/scss/sidebar.scss
CHANGED
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
.chats-dropdown, .notifications-dropdown, .drafts-dropdown {
|
|
77
77
|
min-width: 300px;
|
|
78
78
|
width: 300px;
|
|
79
|
-
.
|
|
79
|
+
.list-container {
|
|
80
80
|
max-height: 400px;
|
|
81
81
|
overflow-y: auto;
|
|
82
82
|
}
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
border-bottom: 0;
|
|
147
147
|
border-radius: 0;
|
|
148
148
|
|
|
149
|
-
|
|
149
|
+
.list-container {
|
|
150
150
|
max-height: 60vh!important;
|
|
151
151
|
overflow-y: auto!important;
|
|
152
152
|
}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</a>
|
|
11
11
|
<ul class="chats-dropdown dropdown-menu p-1 shadow">
|
|
12
12
|
<li>
|
|
13
|
-
<div component="chat/list" class="
|
|
13
|
+
<div component="chat/list" class="list-container chats-list overscroll-behavior-contain p-0 pe-1 ff-base">
|
|
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">
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
</div>
|
|
34
34
|
</li>
|
|
35
35
|
<li class="dropdown-divider"></li>
|
|
36
|
-
<li
|
|
36
|
+
<li>
|
|
37
37
|
<div class="d-flex justify-content-center gap-1 flex-wrap">
|
|
38
38
|
<a component="chats/mark-all-read" role="button" href="#" class="btn btn-sm btn-light mark-all-read flex-fill text-nowrap text-truncate ff-secondary"><i class="fa fa-check-double"></i> [[modules:chat.mark_all_read]]</a>
|
|
39
39
|
<!-- on md and up see all chats button goes to last room -->
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</a>
|
|
11
11
|
<ul class="drafts-dropdown dropdown-menu p-1 shadow">
|
|
12
12
|
<li>
|
|
13
|
-
<div component="drafts/list" class="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">
|
|
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"> </div>
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</a>
|
|
11
11
|
<ul class="notifications-dropdown dropdown-menu p-1 shadow">
|
|
12
12
|
<li>
|
|
13
|
-
<ul component="notifications/list" class="notification-list list-unstyled overscroll-behavior-contain ff-base">
|
|
13
|
+
<ul component="notifications/list" class="list-container notification-list list-unstyled overscroll-behavior-contain ff-base">
|
|
14
14
|
<li 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">
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
</ul>
|
|
41
41
|
</li>
|
|
42
42
|
<li class="dropdown-divider"></li>
|
|
43
|
-
<li
|
|
43
|
+
<li>
|
|
44
44
|
<div class="d-flex justify-content-center gap-1 flex-wrap">
|
|
45
45
|
<a role="button" href="#" class="btn btn-sm btn-light mark-all-read flex-fill text-nowrap text-truncate ff-secondary"><i class="fa fa-check-double"></i> [[notifications:mark_all_read]]</a>
|
|
46
46
|
<a class="btn btn-sm btn-primary flex-fill text-nowrap text-truncate ff-secondary" href="{relative_path}/notifications"><i class="fa fa-list"></i> [[notifications:see_all]]</a>
|