aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/app.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-06-30 07:21:38 +0800
committerDan Finlay <dan@danfinlay.com>2016-06-30 07:21:38 +0800
commit2880f8631c4de09860b2be01c90b4b30d08c8415 (patch)
tree29833bc540d8f30378e82deaae842a21aecb2ab6 /ui/app/app.js
parent2b5c42d27f49a642a2441ad77f3cfba5ada071cb (diff)
downloadtangerine-wallet-browser-2880f8631c4de09860b2be01c90b4b30d08c8415.tar.gz
tangerine-wallet-browser-2880f8631c4de09860b2be01c90b4b30d08c8415.tar.zst
tangerine-wallet-browser-2880f8631c4de09860b2be01c90b4b30d08c8415.zip
Unify tooltip styles
Made a local tooltip component for replicating our tooltip styles wherever we use tooltips. Applied that tooltip to other items that had tooltips.
Diffstat (limited to 'ui/app/app.js')
-rw-r--r--ui/app/app.js26
1 files changed, 14 insertions, 12 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index 8297ed796..525681166 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -26,6 +26,7 @@ const SandwichExpando = require('sandwich-expando')
const MenuDroppo = require('menu-droppo')
const DropMenuItem = require('./components/drop-menu-item')
const NetworkIndicator = require('./components/network')
+const Tooltip = require('./components/tooltip')
module.exports = connect(mapStateToProps)(App)
@@ -152,18 +153,19 @@ App.prototype.renderAppBar = function () {
}, [
// small accounts nav
- h('img.cursor-pointer.color-orange', {
- src: 'images/switch_acc.svg',
- style: {
- width: '23.5px',
- marginRight: '8px',
- },
- title: 'Switch Accounts',
- onClick: (event) => {
- event.stopPropagation()
- this.props.dispatch(actions.showAccountsPage())
- },
- }),
+ h(Tooltip, { title: 'Switch Accounts' }, [
+ h('img.cursor-pointer.color-orange', {
+ src: 'images/switch_acc.svg',
+ style: {
+ width: '23.5px',
+ marginRight: '8px',
+ },
+ onClick: (event) => {
+ event.stopPropagation()
+ this.props.dispatch(actions.showAccountsPage())
+ },
+ }),
+ ]),
// hamburger
h(SandwichExpando, {