We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 928871a commit 2554e18Copy full SHA for 2554e18
src/viewer.js
@@ -1793,8 +1793,13 @@ class VolumeImageViewer {
1793
c => c.type === 'button'
1794
)
1795
if (buttonElement) {
1796
+ buttonElement.title = 'Overview'
1797
buttonElement.style.border = '0.25px solid black'
1798
buttonElement.style.backgroundColor = 'white'
1799
+ buttonElement.style.cursor = 'pointer'
1800
+ const spanElement = buttonElement.children[0]
1801
+ spanElement.style.color = 'black'
1802
+ spanElement.style.backgroundColor = 'white'
1803
}
1804
overviewmapElement.style.border = '1px solid black'
1805
overviewmapElement.style.color = 'black'
0 commit comments