nodebb-theme-harmony 1.0.13 → 1.0.15
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
|
@@ -103,6 +103,23 @@
|
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
+
/*rtl:begin:ignore*/
|
|
107
|
+
html[data-dir="rtl"] {
|
|
108
|
+
.sidebar {
|
|
109
|
+
&.open {
|
|
110
|
+
.sidebar-toggle {
|
|
111
|
+
.fa-angles-right { display: none; }
|
|
112
|
+
.fa-angles-left { display: inline-block; }
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
.sidebar-toggle {
|
|
116
|
+
.fa-angles-right { display: inline-block; }
|
|
117
|
+
.fa-angles-left { display: none; }
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
/*rtl:end:ignore*/
|
|
122
|
+
|
|
106
123
|
.bottombar {
|
|
107
124
|
transition: bottom 150ms linear;
|
|
108
125
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<li component="categories/category" data-cid="{./cid}" class="w-100 border-bottom py-3 py-lg-4 gap-1 d-flex flex-column flex-lg-row align-items-start category-{./cid}">
|
|
1
|
+
<li component="categories/category" data-cid="{./cid}" class="w-100 border-bottom py-3 py-lg-4 gap-1 d-flex flex-column flex-lg-row align-items-start category-{./cid} {./unread-class}">
|
|
2
2
|
<meta itemprop="name" content="{./name}">
|
|
3
3
|
|
|
4
4
|
<div class="d-flex col-lg-7 gap-2 gap-lg-3">
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
<div class="d-flex col-lg-5 align-content-stretch">
|
|
44
44
|
<div class="meta stats d-none d-lg-grid col-6 gap-1 pe-2 text-muted" style="grid-template-columns: 1fr 1fr;">
|
|
45
45
|
<div class="card card-header border-0 p-2 overflow-hidden rounded-1 d-flex flex-column align-items-center">
|
|
46
|
-
<span class="
|
|
46
|
+
<span class="human-readable-number fs-5 ff-secondary lh-1" title="{./totalTopicCount}" data-toFixed="0">{./totalTopicCount}</span>
|
|
47
47
|
<span class="d-none d-xl-flex text-lowercase text-xs">[[global:topics]]</span>
|
|
48
48
|
<i class="d-xl-none fa fa-fw text-xs text-muted opacity-75 fa-list"></i>
|
|
49
49
|
</div>
|
|
50
50
|
<div class="card card-header border-0 p-2 overflow-hidden rounded-1 d-flex flex-column align-items-center">
|
|
51
|
-
<span class="
|
|
51
|
+
<span class="human-readable-number fs-5 ff-secondary lh-1" title="{./totalPostCount}" data-toFixed="0">{./totalPostCount}</span>
|
|
52
52
|
<span class="d-none d-xl-flex text-lowercase text-xs">[[global:posts]]</span>
|
|
53
53
|
<i class="d-xl-none fa fa-fw text-xs text-muted opacity-75 fa-message"></i>
|
|
54
54
|
</div>
|