nodebb-theme-harmony 1.0.63 → 1.0.65
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 +1 -1
- package/scss/common.scss +14 -1
- package/scss/modules/topic-navigator.scss +18 -0
- package/scss/topic.scss +1 -10
package/package.json
CHANGED
package/scss/common.scss
CHANGED
|
@@ -15,7 +15,7 @@ body * {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
hr {
|
|
18
|
-
|
|
18
|
+
border-top-color: var(--bs-border-color);
|
|
19
19
|
opacity: 1;
|
|
20
20
|
}
|
|
21
21
|
|
|
@@ -165,4 +165,17 @@ body:not(.page-user) {
|
|
|
165
165
|
.markdown-highlight {
|
|
166
166
|
@extend .shadow-sm;
|
|
167
167
|
@extend .border;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
[component="chat/message/body"], [component="post/content"] {
|
|
171
|
+
.img-fluid {
|
|
172
|
+
@extend .shadow-sm;
|
|
173
|
+
padding: $spacer * 0.5;
|
|
174
|
+
margin: $spacer * 0.5 0;
|
|
175
|
+
border: 1px solid $border-color;
|
|
176
|
+
background-color: $light;
|
|
177
|
+
border-radius: $border-radius-sm;
|
|
178
|
+
max-height: 500px;
|
|
179
|
+
width: auto;
|
|
180
|
+
}
|
|
168
181
|
}
|
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
.pagination-block { display: none; }
|
|
2
|
+
|
|
3
|
+
.page-topic {
|
|
4
|
+
// used for both sidebar and bottom bar pagination-block
|
|
5
|
+
.pagination-block {
|
|
6
|
+
display: block;
|
|
7
|
+
transition: opacity 250ms ease-in;
|
|
8
|
+
opacity: 0;
|
|
9
|
+
&.ready {
|
|
10
|
+
opacity: 1;
|
|
11
|
+
}
|
|
12
|
+
&.noreplies {
|
|
13
|
+
pointer-events: none;
|
|
14
|
+
opacity: 0.5;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
1
19
|
.topic .pagination-block {
|
|
2
20
|
.scroller-content {
|
|
3
21
|
min-width: 170px;
|
package/scss/topic.scss
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
.pagination-block { display: none; }
|
|
2
|
-
|
|
3
1
|
.page-topic {
|
|
4
2
|
[component="topic/reply"], [component="topic/reply/locked"], [component="topic/reply/guest"] {
|
|
5
3
|
font-size: 14px;
|
|
@@ -116,14 +114,7 @@
|
|
|
116
114
|
}
|
|
117
115
|
}
|
|
118
116
|
|
|
119
|
-
|
|
120
|
-
display: block;
|
|
121
|
-
transition: opacity 250ms ease-in;
|
|
122
|
-
opacity: 0;
|
|
123
|
-
&.ready {
|
|
124
|
-
opacity: 1;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
117
|
+
|
|
127
118
|
[component="topic/thumb/list"] {
|
|
128
119
|
height: calc($font-size-base * 4);
|
|
129
120
|
}
|