Add styling for clickable transaction IDs in transaction details
This commit is contained in:
parent
4f9aecf817
commit
bebea1584a
18
style.css
18
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%;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user