diff options
author | Dan Finlay <flyswatter@users.noreply.github.com> | 2017-09-19 02:44:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-19 02:44:58 +0800 |
commit | c463647ad7a825eb954a56599ec205a3ba6cd3e6 (patch) | |
tree | 4ab3069f59d6935c3d4d9d7b33e43bbe5514309e /ui/app | |
parent | 99856189ed463d5ff140b36399313993ffd5541c (diff) | |
parent | 545cbbebb950f8740f66f35755f558cd495e850b (diff) | |
download | tangerine-wallet-browser-c463647ad7a825eb954a56599ec205a3ba6cd3e6.tar tangerine-wallet-browser-c463647ad7a825eb954a56599ec205a3ba6cd3e6.tar.gz tangerine-wallet-browser-c463647ad7a825eb954a56599ec205a3ba6cd3e6.tar.bz2 tangerine-wallet-browser-c463647ad7a825eb954a56599ec205a3ba6cd3e6.tar.lz tangerine-wallet-browser-c463647ad7a825eb954a56599ec205a3ba6cd3e6.tar.xz tangerine-wallet-browser-c463647ad7a825eb954a56599ec205a3ba6cd3e6.tar.zst tangerine-wallet-browser-c463647ad7a825eb954a56599ec205a3ba6cd3e6.zip |
Merge pull request #2080 from MetaMask/fix-tooltip
Fix position of tooltip to avoid overflow cutoff
Diffstat (limited to 'ui/app')
-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: { |