nodebb-theme-harmony 1.0.0-beta.77 → 1.0.0-beta.79
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/groups.scss
CHANGED
package/scss/overrides.scss
CHANGED
|
@@ -39,7 +39,7 @@ $text-muted: $gray-600 !default;
|
|
|
39
39
|
$border-color: $gray-200 !default;
|
|
40
40
|
$link-color: shade-color($blue, 20%) !default;
|
|
41
41
|
|
|
42
|
-
$btn-ghost-hover-color: mix($light, $dark, 90);
|
|
42
|
+
$btn-ghost-hover-color: mix($light, $dark, 90%);
|
|
43
43
|
|
|
44
44
|
// no caret on dropdown-toggle
|
|
45
45
|
$enable-caret: false;
|
package/scss/sidebar.scss
CHANGED
|
@@ -104,6 +104,30 @@
|
|
|
104
104
|
</div>
|
|
105
105
|
</div>
|
|
106
106
|
|
|
107
|
+
<hr/>
|
|
108
|
+
|
|
109
|
+
<h6 class="fw-bold">[[global:sort]]</h6>
|
|
110
|
+
<div class="">
|
|
111
|
+
<div class="mb-2">
|
|
112
|
+
<label class="form-label">[[user:category-topic-sort]]</label>
|
|
113
|
+
<select class="form-select form-select-sm" data-property="categoryTopicSort">
|
|
114
|
+
<option value="newest_to_oldest" {{{ if (settings.categoryTopicSort == "newest_to_oldest") }}}selected{{{ end }}}>[[topic:newest_to_oldest]]</option>
|
|
115
|
+
<option value="oldest_to_newest" {{{ if (settings.categoryTopicSort == "oldest_to_newest") }}}selected{{{ end }}}>[[topic:oldest_to_newest]]</option>
|
|
116
|
+
<option value="most_posts" {{{ if (settings.categoryTopicSort == "most_posts") }}}selected{{{ end }}}>[[topic:most_posts]]</option>
|
|
117
|
+
<option value="most_votes" {{{ if (settings.categoryTopicSort == "most_votes") }}}selected{{{ end }}}>[[topic:most_votes]]</option>
|
|
118
|
+
<option value="most_views" {{{ if (settings.categoryTopicSort == "most_views") }}}selected{{{ end }}}>[[topic:most_views]]</option>
|
|
119
|
+
</select>
|
|
120
|
+
</div>
|
|
121
|
+
<div class="">
|
|
122
|
+
<label class="form-label">[[user:topic-post-sort]]</label>
|
|
123
|
+
<select class="form-select form-select-sm" data-property="topicPostSort">
|
|
124
|
+
<option value="oldest_to_newest" {{{ if (settings.topicPostSort == "oldest_to_newest") }}}selected{{{ end }}}>[[topic:oldest_to_newest]]</option>
|
|
125
|
+
<option value="newest_to_oldest" {{{ if (settings.topicPostSort == "newest_to_oldest") }}}selected{{{ end }}}>[[topic:newest_to_oldest]]</option>
|
|
126
|
+
<option value="most_votes" {{{ if (settings.topicPostSort == "most_votes") }}}selected{{{ end }}}>[[topic:most_votes]]</option>
|
|
127
|
+
</select>
|
|
128
|
+
</div>
|
|
129
|
+
</div>
|
|
130
|
+
|
|
107
131
|
{{{ if !disableEmailSubscriptions }}}
|
|
108
132
|
<hr/>
|
|
109
133
|
<h6 class="fw-bold">[[global:email]]</h6>
|
|
@@ -22,13 +22,11 @@
|
|
|
22
22
|
<!-- IMPORT partials/chats/messages.tpl -->
|
|
23
23
|
</ul>
|
|
24
24
|
<div component="chat/composer" class="d-flex flex-column flex-md-row gap-2 border-top pt-2 align-items-start align-items-md-end">
|
|
25
|
-
<div class="w-100 flex-grow-1 position-relative">
|
|
25
|
+
<div class="w-100 flex-grow-1 position-relative input-group">
|
|
26
|
+
<button component="chat/upload/button" class="btn btn-outline-primary btn-sm align-self-stretch px-3 px-md-2" type="button"><i class="fa fa-fw fa-upload"></i></button>
|
|
26
27
|
<textarea component="chat/input" placeholder="[[modules:chat.placeholder.mobile]]" class="form-control chat-input mousetrap" style="height:0;resize:none;"></textarea>
|
|
27
|
-
<span component="chat/message/remaining" class="text-xs text-muted position-absolute me-
|
|
28
|
-
|
|
29
|
-
<div class="d-flex justify-content-between align-self-stretch gap-2">
|
|
30
|
-
<button component="chat/upload/button" class="btn btn-light btn-sm align-self-end px-3 px-md-2" type="button"><i class="fa fa-fw fa-upload"></i></button>
|
|
31
|
-
<button class="btn btn-primary btn-sm align-self-end px-3 px-md-2" type="button" data-action="send"><i class="fa fa-fw fa-paper-plane"></i></button>
|
|
28
|
+
<span component="chat/message/remaining" class="text-xs text-muted position-absolute me-5 mb-1 end-0 bottom-0">{maximumChatMessageLength}</span>
|
|
29
|
+
<button class="btn btn-primary btn-sm align-self-stretch px-3 px-md-2" type="button" data-action="send"><i class="fa fa-fw fa-paper-plane"></i></button>
|
|
32
30
|
</div>
|
|
33
31
|
<form class="hidden" component="chat/upload" method="post" enctype="multipart/form-data">
|
|
34
32
|
<input type="file" name="files[]" multiple class="hidden"/>
|
package/scss/search.scss
DELETED
|
File without changes
|