mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #2080 from MetaMask/fix-tooltip
Fix position of tooltip to avoid overflow cutoff
This commit is contained in:
commit
c463647ad7
@ -7,6 +7,7 @@
|
|||||||
- Changed state logs to a file download than a clipboard copy.
|
- Changed state logs to a file download than a clipboard copy.
|
||||||
- Fixed a long standing memory leak associated with filters installed by dapps
|
- Fixed a long standing memory leak associated with filters installed by dapps
|
||||||
- Fix link to support center.
|
- Fix link to support center.
|
||||||
|
- Fixed tooltip icon locations to avoid overflow.
|
||||||
- Warn users when a dapp proposes a high gas limit (90% of blockGasLimit or higher)
|
- Warn users when a dapp proposes a high gas limit (90% of blockGasLimit or higher)
|
||||||
|
|
||||||
## 3.10.0 2017-9-11
|
## 3.10.0 2017-9-11
|
||||||
|
@ -17,6 +17,6 @@ Tooltip.prototype.render = function () {
|
|||||||
return h(ReactTooltip, {
|
return h(ReactTooltip, {
|
||||||
position: position || 'left',
|
position: position || 'left',
|
||||||
title,
|
title,
|
||||||
fixed: false,
|
fixed: true,
|
||||||
}, children)
|
}, children)
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@ TransactionIcon.prototype.render = function () {
|
|||||||
case 'submitted':
|
case 'submitted':
|
||||||
return h(Tooltip, {
|
return h(Tooltip, {
|
||||||
title: 'Pending',
|
title: 'Pending',
|
||||||
position: 'bottom',
|
position: 'right',
|
||||||
}, [
|
}, [
|
||||||
h('i.fa.fa-ellipsis-h', {
|
h('i.fa.fa-ellipsis-h', {
|
||||||
style: {
|
style: {
|
||||||
|
@ -65,7 +65,7 @@ TransactionListItem.prototype.render = function () {
|
|||||||
|
|
||||||
h(Tooltip, {
|
h(Tooltip, {
|
||||||
title: 'Transaction Number',
|
title: 'Transaction Number',
|
||||||
position: 'bottom',
|
position: 'right',
|
||||||
}, [
|
}, [
|
||||||
h('span', {
|
h('span', {
|
||||||
style: {
|
style: {
|
||||||
|
Loading…
Reference in New Issue
Block a user