diff options
author | Kevin Serrano <kevin.serrano@consensys.net> | 2017-09-13 07:15:56 +0800 |
---|---|---|
committer | Kevin Serrano <kevin.serrano@consensys.net> | 2017-09-13 07:15:56 +0800 |
commit | 962794d0257da705b2424351b7a187ccd4ec76ea (patch) | |
tree | 9867942f44f7cdf8cf735748a96768cf83cc0e20 | |
parent | 1d3cd9768cdd372d02e7e34674dde9d86af536f5 (diff) | |
download | tangerine-wallet-browser-962794d0257da705b2424351b7a187ccd4ec76ea.tar tangerine-wallet-browser-962794d0257da705b2424351b7a187ccd4ec76ea.tar.gz tangerine-wallet-browser-962794d0257da705b2424351b7a187ccd4ec76ea.tar.bz2 tangerine-wallet-browser-962794d0257da705b2424351b7a187ccd4ec76ea.tar.lz tangerine-wallet-browser-962794d0257da705b2424351b7a187ccd4ec76ea.tar.xz tangerine-wallet-browser-962794d0257da705b2424351b7a187ccd4ec76ea.tar.zst tangerine-wallet-browser-962794d0257da705b2424351b7a187ccd4ec76ea.zip |
fixed position of tooltips to avoid overflow.
-rw-r--r-- | ui/app/components/tooltip.js | 2 | ||||
-rw-r--r-- | ui/app/components/transaction-list-item-icon.js | 2 | ||||
-rw-r--r-- | ui/app/components/transaction-list-item.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/tooltip.js b/ui/app/components/tooltip.js index edbc074bb..efab2c497 100644 --- a/ui/app/components/tooltip.js +++ b/ui/app/components/tooltip.js @@ -17,6 +17,6 @@ Tooltip.prototype.render = function () { return h(ReactTooltip, { position: position || 'left', title, - fixed: false, + fixed: true, }, children) } diff --git a/ui/app/components/transaction-list-item-icon.js b/ui/app/components/transaction-list-item-icon.js index 431054340..f442b05af 100644 --- a/ui/app/components/transaction-list-item-icon.js +++ b/ui/app/components/transaction-list-item-icon.js @@ -35,7 +35,7 @@ TransactionIcon.prototype.render = function () { case 'submitted': return h(Tooltip, { title: 'Pending', - position: 'bottom', + position: 'right', }, [ h('i.fa.fa-ellipsis-h', { style: { diff --git a/ui/app/components/transaction-list-item.js b/ui/app/components/transaction-list-item.js index 5d5d0bcc5..0e5c0b5a3 100644 --- a/ui/app/components/transaction-list-item.js +++ b/ui/app/components/transaction-list-item.js @@ -65,7 +65,7 @@ TransactionListItem.prototype.render = function () { h(Tooltip, { title: 'Transaction Number', - position: 'bottom', + position: 'right', }, [ h('span', { style: { |