diff --git a/packages/neuron-ui/src/components/MultisigAddress/index.tsx b/packages/neuron-ui/src/components/MultisigAddress/index.tsx index afdfb15b8b..03be73c04e 100644 --- a/packages/neuron-ui/src/components/MultisigAddress/index.tsx +++ b/packages/neuron-ui/src/components/MultisigAddress/index.tsx @@ -29,6 +29,7 @@ import { Edit, Confirming, Question, + LineDownArrow, } from 'widgets/Icons/icon' import AttentionCloseDialog from 'widgets/Icons/Attention.png' import { HIDE_BALANCE, NetworkType } from 'utils/const' @@ -400,6 +401,7 @@ const MultisigAddress = () => {
{(!multisigBanlances[item.fullPayload] || multisigBanlances[item.fullPayload] === '0' @@ -422,7 +424,10 @@ const MultisigAddress = () => { trigger="click" showTriangle > -
{t('multisig-address.table.more')}
+
+ {t('multisig-address.table.more')} + +
) diff --git a/packages/neuron-ui/src/components/MultisigAddress/multisigAddress.module.scss b/packages/neuron-ui/src/components/MultisigAddress/multisigAddress.module.scss index f93d2bea0d..ad6cb1e83b 100644 --- a/packages/neuron-ui/src/components/MultisigAddress/multisigAddress.module.scss +++ b/packages/neuron-ui/src/components/MultisigAddress/multisigAddress.module.scss @@ -144,8 +144,36 @@ padding-right: 30px; &:hover { color: var(--primary-color); + .expand { + path { + stroke: var(--primary-color); + } + } + } + } + + .expand { + margin-left: 2px; + width: 12px; + path { + stroke: var(--secondary-text-color); } } + + .tipContent { + &[data-tip-show='true'] { + .hoverBtn { + color: var(--primary-color); + } + .expand { + transform: rotate(180deg); + path { + stroke: var(--primary-color); + } + } + } + } + .action { padding-right: 20px; .tip {