diff --git a/signet-dashboard/public/hash-list.html b/signet-dashboard/public/hash-list.html index 106b322..bd480e9 100644 --- a/signet-dashboard/public/hash-list.html +++ b/signet-dashboard/public/hash-list.html @@ -105,6 +105,59 @@ background: #6c757d; cursor: not-allowed; } + .search-section { + margin-bottom: 20px; + padding: 15px; + background: #f8f9fa; + border-radius: 5px; + } + .search-input { + width: 100%; + max-width: 500px; + padding: 10px; + font-size: 1em; + border: 1px solid #ddd; + border-radius: 5px; + font-family: monospace; + } + .pagination { + display: flex; + justify-content: center; + align-items: center; + gap: 10px; + margin-top: 20px; + padding: 15px; + } + .pagination button { + background: #007bff; + color: white; + border: none; + padding: 8px 15px; + border-radius: 5px; + cursor: pointer; + font-size: 0.9em; + } + .pagination button:hover:not(:disabled) { + background: #0056b3; + } + .pagination button:disabled { + background: #6c757d; + cursor: not-allowed; + } + .pagination-info { + padding: 0 15px; + color: #666; + } + .confirmed-check { + text-align: center; + font-size: 1.2em; + } + .confirmed-check.yes { + color: #28a745; + } + .confirmed-check.no { + color: #dc3545; + }
@@ -121,14 +174,25 @@ +