Update BitcoinProgressBar.js

This commit is contained in:
DJObleezy 2025-04-10 16:52:07 -07:00 committed by GitHub
parent 05033f12ad
commit 6cb74188b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -228,6 +228,13 @@ const BitcoinMinuteRefresh = (function () {
border-bottom: 1px solid #f7931a;
padding-bottom: 5px;
margin-bottom: 8px;
cursor: pointer; /* Add pointer (hand) cursor on hover */
}
/* Apply grabbing cursor during active drag */
.terminal-header:active,
.bitcoin-terminal.dragging .terminal-header {
cursor: grabbing;
}
.terminal-title {
@ -767,4 +774,4 @@ document.addEventListener('DOMContentLoaded', function () {
} else {
console.log("BitcoinMinuteRefresh: No refresh function found, will need to be initialized manually");
}
});
});