lnlink-server 1.1.1 → 1.1.2

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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lnlink-server",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "private": false,
5
5
  "main": "index.js",
6
6
  "electron": "lnlink.js",
@@ -322,7 +322,14 @@ input:-webkit-autofill:active {
322
322
  padding: 12px;
323
323
  transition: transform 0.1s;
324
324
  }
325
-
325
+ .btn-secondary {
326
+ border: none;
327
+ border-radius: 8px;
328
+ font-weight: 600;
329
+ font-size: 1rem;
330
+ padding: 12px;
331
+ transition: transform 0.1s;
332
+ }
326
333
  .btn-lime:hover {
327
334
  background-color: #bce600; /* Slightly darker lime */
328
335
  color: #000;
@@ -61,6 +61,27 @@
61
61
  </div>
62
62
  </div>
63
63
 
64
+ <!-- Confirm Modal -->
65
+ <div class="modal fade" id="confirmModal" tabindex="-1" aria-labelledby="confirmModalLabel" aria-hidden="true">
66
+ <div class="modal-dialog">
67
+ <div class="modal-content">
68
+ <div class="modal-header">
69
+ <h5 class="modal-title" id="confirmModalLabel">
70
+ <i class="fas fa-question-circle text-lime"></i> Confirm
71
+ </h5>
72
+ <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
73
+ </div>
74
+ <div class="modal-body" id="confirmModalBody">
75
+ <!-- Confirm message will be inserted here -->
76
+ </div>
77
+ <div class="modal-footer">
78
+ <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
79
+ <button type="button" class="btn btn-lime" id="confirmModalBtn">Confirm</button>
80
+ </div>
81
+ </div>
82
+ </div>
83
+ </div>
84
+
64
85
  <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
65
86
  integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
66
87
  crossorigin="anonymous"></script>