nodebb-theme-harmony 1.1.23 → 1.1.25
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/overrides.scss +1 -0
- package/templates/partials/toast.tpl +16 -11
package/package.json
CHANGED
package/scss/overrides.scss
CHANGED
|
@@ -1,14 +1,19 @@
|
|
|
1
|
-
<div id="{alert_id}" role="alert" class="alert alert-dismissible alert-{type}" component="toaster/toast">
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
<div id="{alert_id}" role="alert" class="alert alert-dismissible alert-{type} fade show" component="toaster/toast">
|
|
2
|
+
<div class="alert-progress position-absolute top-0 start-0 bottom-0 h-100 z-0" style=" opacity:0.1;"></div>
|
|
3
|
+
<div class="d-flex flex-wrap gap-2 position-relative">
|
|
4
|
+
{{{ if image }}}
|
|
5
|
+
<img src="{image}" height="80" style="width: auto;" />
|
|
6
|
+
{{{ end }}}
|
|
7
|
+
<div class="d-flex flex-column gap-2">
|
|
8
|
+
{{{ if title }}}
|
|
9
|
+
<strong>{title}</strong>
|
|
10
|
+
{{{ end }}}
|
|
6
11
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
12
|
+
{{{ if message }}}
|
|
13
|
+
<p class="m-0">{message}</p>
|
|
14
|
+
{{{ end }}}
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
10
17
|
|
|
11
|
-
|
|
12
|
-
<p>{message}</p>
|
|
13
|
-
{{{ end }}}
|
|
18
|
+
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="close"></button>
|
|
14
19
|
</div>
|