pixl-xyapp 2.1.9 → 2.1.11
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/css/base.css +2 -2
- package/js/page.js +2 -2
- package/package.json +1 -1
package/css/base.css
CHANGED
|
@@ -1553,7 +1553,7 @@ div.info_value:last-child {
|
|
|
1553
1553
|
}
|
|
1554
1554
|
|
|
1555
1555
|
div.info_caption {
|
|
1556
|
-
margin-top:
|
|
1556
|
+
margin-top: 5px;
|
|
1557
1557
|
font-size: 11px;
|
|
1558
1558
|
color: var(--label-color);
|
|
1559
1559
|
}
|
|
@@ -2536,7 +2536,7 @@ div.dropzone.drag > div.dz_bar {
|
|
|
2536
2536
|
text-overflow: ellipsis;
|
|
2537
2537
|
}
|
|
2538
2538
|
.data_grid_pagination i.mdi:before {
|
|
2539
|
-
transform: scale(1.
|
|
2539
|
+
transform: scale(1.5);
|
|
2540
2540
|
}
|
|
2541
2541
|
|
|
2542
2542
|
.data_grid {
|
package/js/page.js
CHANGED
|
@@ -717,7 +717,7 @@ window.Page = class Page {
|
|
|
717
717
|
// html += 'Page: ';
|
|
718
718
|
if (current_page > 1) {
|
|
719
719
|
if (cpl) {
|
|
720
|
-
html += '<span class="link" onClick="'+cpl+'('+Math.floor((current_page - 2) * results.limit)+')">&
|
|
720
|
+
html += '<span class="link" onClick="'+cpl+'('+Math.floor((current_page - 2) * results.limit)+')"><i class="mdi mdi-chevron-left"></i> Prev</span>';
|
|
721
721
|
}
|
|
722
722
|
else {
|
|
723
723
|
html += '<a href="#' + this.ID + compose_query_string(merge_objects(this.args, {
|
|
@@ -763,7 +763,7 @@ window.Page = class Page {
|
|
|
763
763
|
|
|
764
764
|
if (current_page < num_pages) {
|
|
765
765
|
if (cpl) {
|
|
766
|
-
html += '<span class="link" onClick="'+cpl+'('+Math.floor((current_page + 0) * results.limit)+')">Next
|
|
766
|
+
html += '<span class="link" onClick="'+cpl+'('+Math.floor((current_page + 0) * results.limit)+')">Next <i class="mdi mdi-chevron-right"></i></span>';
|
|
767
767
|
}
|
|
768
768
|
else {
|
|
769
769
|
html += '<a href="#' + this.ID + compose_query_string(merge_objects(this.args, {
|