From bebea1584a3179d97f710849d02454efa4119bcc Mon Sep 17 00:00:00 2001 From: void-57 Date: Tue, 30 Sep 2025 19:37:02 +0530 Subject: [PATCH] Add styling for clickable transaction IDs in transaction details --- style.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/style.css b/style.css index 07206cb..3717dc1 100644 --- a/style.css +++ b/style.css @@ -3686,3 +3686,21 @@ h4 { margin-bottom: 0.25rem; } } + +.txid-link { + color: white; + text-decoration: none; + transition: color 0.2s ease; +} + +.txid-link:hover { + color: var(--primary-color-dark, #3b82f6); + text-decoration: underline; +} + +.tx-detail-value .txid-link { + overflow: hidden; + text-overflow: ellipsis; + display: inline-block; + max-width: 100%; +}