diff --git a/src/ui/ButtonNavigator.js b/src/ui/ButtonNavigator.js index 1033f71418..afc0984256 100644 --- a/src/ui/ButtonNavigator.js +++ b/src/ui/ButtonNavigator.js @@ -25,11 +25,14 @@ var css = csjs` justify-content: center } .jumpButton { - ${styles.button} + ${styles.button} } - .navigator:hover { + .navigator { color: ${styles.colors.black} } + .navigator:hover { + color: ${styles.colors.orange} + } ` function ButtonNavigator (_parent, _traceManager) { diff --git a/src/ui/TxBrowser.js b/src/ui/TxBrowser.js index 44698105b3..2ab86bf1e1 100644 --- a/src/ui/TxBrowser.js +++ b/src/ui/TxBrowser.js @@ -36,9 +36,10 @@ var css = csjs` } .txbutton { ${styles.button} + color: ${styles.colors.black}; } .txbutton:hover { - color: ${styles.colors.black}; + color: ${styles.colors.orange}; } ` function TxBrowser (_parent) {