nodebb-theme-persona 13.2.4 → 13.2.5
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/topic.scss
CHANGED
|
@@ -454,7 +454,6 @@
|
|
|
454
454
|
|
|
455
455
|
.pagination-block {
|
|
456
456
|
position: fixed;
|
|
457
|
-
background-color: $gray-200;
|
|
458
457
|
bottom: 0px;
|
|
459
458
|
right: 0px;
|
|
460
459
|
z-index: 100;
|
|
@@ -462,7 +461,6 @@
|
|
|
462
461
|
opacity: 0;
|
|
463
462
|
|
|
464
463
|
.pagination-text {
|
|
465
|
-
color: $text-muted;
|
|
466
464
|
position: relative;
|
|
467
465
|
top: -3px;
|
|
468
466
|
font-weight: bolder;
|
|
@@ -527,7 +525,6 @@
|
|
|
527
525
|
}
|
|
528
526
|
}
|
|
529
527
|
.progress-bar {
|
|
530
|
-
background-color: $info;
|
|
531
528
|
display:block;
|
|
532
529
|
z-index: -1;
|
|
533
530
|
position: absolute;
|
package/templates/login.tpl
CHANGED
|
@@ -34,10 +34,9 @@
|
|
|
34
34
|
</div>
|
|
35
35
|
<div class="row mb-2">
|
|
36
36
|
<div class="col-lg-10 offset-lg-2">
|
|
37
|
-
<div class="
|
|
38
|
-
<
|
|
39
|
-
|
|
40
|
-
</label>
|
|
37
|
+
<div class="form-check">
|
|
38
|
+
<input class="form-check-input" type="checkbox" name="remember" id="remember" checked />
|
|
39
|
+
<label class="form-check-label" for="remember">[[login:remember_me]]</label>
|
|
41
40
|
</div>
|
|
42
41
|
</div>
|
|
43
42
|
</div>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<div class="pagination-block text-center">
|
|
2
|
-
<div class="progress-bar"></div>
|
|
1
|
+
<div class="pagination-block border border-1 text-bg-light text-center">
|
|
2
|
+
<div class="progress-bar bg-info"></div>
|
|
3
3
|
<div class="wrapper dropup">
|
|
4
4
|
<i class="fa fa-2x fa-angle-double-up pointer fa-fw pagetop"></i>
|
|
5
5
|
|
|
6
|
-
<a href="#" class="dropdown-toggle d-inline-block" data-bs-toggle="dropdown" data-bs-reference="parent">
|
|
6
|
+
<a href="#" class="dropdown-toggle d-inline-block text-decoration-none" data-bs-toggle="dropdown" data-bs-reference="parent">
|
|
7
7
|
<span class="pagination-text"></span>
|
|
8
8
|
</a>
|
|
9
9
|
|