nodebb-plugin-composer-default 10.2.20 → 10.2.21
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
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
.composer {
|
|
2
|
-
user-select: none;
|
|
3
2
|
background-color: var(--bs-body-bg);
|
|
4
3
|
color: var(--bs-body-color);
|
|
5
4
|
z-index: $zindex-dropdown;
|
|
@@ -47,8 +46,6 @@
|
|
|
47
46
|
.category-list-container {
|
|
48
47
|
|
|
49
48
|
[component="category-selector"] {
|
|
50
|
-
margin-right: 0.5em;
|
|
51
|
-
|
|
52
49
|
.category-dropdown-menu {
|
|
53
50
|
max-height: 300px;
|
|
54
51
|
}
|
|
@@ -69,8 +66,6 @@
|
|
|
69
66
|
}
|
|
70
67
|
|
|
71
68
|
.formatting-bar {
|
|
72
|
-
margin: 0;
|
|
73
|
-
|
|
74
69
|
.spacer {
|
|
75
70
|
&:before {
|
|
76
71
|
content: ' | ';
|
|
@@ -232,6 +227,14 @@
|
|
|
232
227
|
animation: draft-saved 3s ease;
|
|
233
228
|
}
|
|
234
229
|
}
|
|
230
|
+
|
|
231
|
+
textarea {
|
|
232
|
+
resize: none;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.preview {
|
|
236
|
+
padding: $input-padding-y $input-padding-x;
|
|
237
|
+
}
|
|
235
238
|
}
|
|
236
239
|
|
|
237
240
|
.datetime-picker {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div class="d-flex justify-content-between gap-2 align-items-center formatting-bar">
|
|
1
|
+
<div class="d-flex justify-content-between gap-2 align-items-center formatting-bar m-0">
|
|
2
2
|
<ul class="list-unstyled mb-0 d-flex formatting-group gap-2 overflow-auto">
|
|
3
3
|
{{{ each formatting }}}
|
|
4
4
|
{{{ if ./spacer }}}
|
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
<textarea class="write shadow-none rounded-1 w-100 form-control" tabindex="4" placeholder="[[modules:composer.textarea.placeholder]]">{body}</textarea>
|
|
6
6
|
</div>
|
|
7
7
|
<div class="preview-container d-none d-md-flex w-50">
|
|
8
|
-
<div class="preview
|
|
8
|
+
<div class="preview w-100 overflow-auto"></div>
|
|
9
9
|
</div>
|
|
10
10
|
</div>
|