nodebb-theme-harmony 1.0.0-beta.87 → 1.0.0-beta.89
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
|
@@ -15,7 +15,7 @@ ul.topics-list {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
&.selected {
|
|
18
|
-
|
|
18
|
+
border-color: $primary;
|
|
19
19
|
|
|
20
20
|
[component="topic/select"] {
|
|
21
21
|
color: $primary!important;
|
|
@@ -75,7 +75,7 @@ ul.topics-list {
|
|
|
75
75
|
align-items: start;
|
|
76
76
|
grid-auto-rows: min-content;
|
|
77
77
|
@include media-breakpoint-up(md) { display: grid; }
|
|
78
|
-
@include media-breakpoint-up(xl) {
|
|
78
|
+
@include media-breakpoint-up(xl) {
|
|
79
79
|
grid-auto-columns: minmax(0, 1fr);
|
|
80
80
|
grid-auto-flow: column;
|
|
81
81
|
}
|
|
@@ -123,7 +123,7 @@ ul.topics-list {
|
|
|
123
123
|
@include media-breakpoint-up(xl) {
|
|
124
124
|
width:12rem;
|
|
125
125
|
}
|
|
126
|
-
|
|
126
|
+
|
|
127
127
|
> .lastpost {
|
|
128
128
|
@include media-breakpoint-up(xl) {
|
|
129
129
|
min-height: 3.4rem;
|
package/templates/flags/list.tpl
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<div class="btn-group float-end" component="flags/bulk-actions">
|
|
2
|
+
<button class="filter-btn btn btn-light btn-sm border" data-bs-toggle="dropdown" autocomplete="off" aria-haspopup="true" aria-expanded="false" disabled="disabled">
|
|
3
|
+
<span class="filter-label">[[flags:bulk-actions]]</span>
|
|
4
|
+
</button>
|
|
5
|
+
<ul class="dropdown-menu p-1 text-sm">
|
|
6
|
+
<li><a href="#" class="dropdown-item rounded-1" data-action="bulk-assign">[[flags:assign-to-me]]</a></li>
|
|
7
|
+
<li><a href="#" class="dropdown-item rounded-1" data-action="bulk-mark-resolved">[[flags:bulk-resolve]]</a></li>
|
|
8
|
+
</ul>
|
|
9
|
+
</div>
|
|
@@ -176,16 +176,6 @@
|
|
|
176
176
|
</a>
|
|
177
177
|
</div>
|
|
178
178
|
|
|
179
|
-
<div class="btn-group float-end" component="flags/bulk-actions">
|
|
180
|
-
<button class="filter-btn btn btn-light btn-sm border" data-bs-toggle="dropdown" autocomplete="off" aria-haspopup="true" aria-expanded="false" disabled="disabled">
|
|
181
|
-
<span class="filter-label">[[flags:bulk-actions]]</span>
|
|
182
|
-
</button>
|
|
183
|
-
<ul class="dropdown-menu p-1 text-sm">
|
|
184
|
-
<li><a href="#" class="dropdown-item rounded-1" data-action="bulk-assign">[[flags:assign-to-me]]</a></li>
|
|
185
|
-
<li><a href="#" class="dropdown-item rounded-1" data-action="bulk-mark-resolved">[[flags:bulk-resolve]]</a></li>
|
|
186
|
-
</ul>
|
|
187
|
-
</div>
|
|
188
|
-
|
|
189
179
|
<form role="form">
|
|
190
180
|
<input type="hidden" name="sort" value="{./sort}" />
|
|
191
181
|
<input type="hidden" name="state" value="{./filters.state}" />
|