File tree Expand file tree Collapse file tree 2 files changed +11
-12
lines changed
libs/remix-ui/run-tab/src/lib/components Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -205,6 +205,12 @@ export function AccountUI(props: AccountProps) {
205205 < i id = "remixRunPlus" className = { `fas fa-plus-circle udapp_icon ${ plusOpt . classList } ` } aria-hidden = "true" onClick = { newAccount } > </ i >
206206 </ span >
207207 </ CustomTooltip >
208+ < CustomTooltip placement = { 'top-start' } tooltipClasses = "text-nowrap" tooltipId = "remixSignMsgTooltip" tooltipText = { < FormattedMessage id = "udapp.signMsgUsingAccount" /> } >
209+ < i id = "remixRunSignMsg" data-id = "settingsRemixRunSignMsg" className = "ml-2 fas fa-edit udapp_icon" aria-hidden = "true" onClick = { signMessage } > </ i >
210+ </ CustomTooltip >
211+ < span >
212+ < CopyToClipboard className = "far fa-copy ml-2 p-0" tip = { intl . formatMessage ( { id : 'udapp.copyAccount' } ) } content = { selectedAccount } direction = "top" />
213+ </ span >
208214 { props . accounts . isRequesting && < i className = "fa fa-spinner fa-pulse ml-2" aria-hidden = "true" > </ i > }
209215 </ label >
210216 < div className = "udapp_account" >
@@ -224,12 +230,6 @@ export function AccountUI(props: AccountProps) {
224230 </ option >
225231 ) ) }
226232 </ select >
227- < div style = { { marginLeft : - 5 } } >
228- < CopyToClipboard tip = { intl . formatMessage ( { id : 'udapp.copyAccount' } ) } content = { selectedAccount } direction = "top" />
229- </ div >
230- < CustomTooltip placement = { 'top-start' } tooltipClasses = "text-nowrap" tooltipId = "remixSignMsgTooltip" tooltipText = { < FormattedMessage id = "udapp.signMsgUsingAccount" /> } >
231- < i id = "remixRunSignMsg" data-id = "settingsRemixRunSignMsg" className = "mx-1 fas fa-edit udapp_icon" aria-hidden = "true" onClick = { signMessage } > </ i >
232- </ CustomTooltip >
233233 </ div >
234234 </ div >
235235 )
Original file line number Diff line number Diff line change @@ -29,6 +29,11 @@ export function EnvironmentUI(props: EnvironmentProps) {
2929 < i style = { { fontSize : 'medium' } } className = { 'ml-2 fad fa-plug' } aria-hidden = "true" > </ i >
3030 </ a >
3131 </ CustomTooltip >
32+ < CustomTooltip placement = { 'right-start' } tooltipClasses = "text-wrap" tooltipId = "runAndDeployAddresstooltip" tooltipText = { < FormattedMessage id = "udapp.environmentDocs" /> } >
33+ < a href = "https://remix-ide.readthedocs.io/en/latest/run.html#environment" target = "_blank" rel = "noreferrer" >
34+ < i className = "udapp_infoDeployAction ml-2 fad fa-info" > </ i >
35+ </ a >
36+ </ CustomTooltip >
3237 </ label >
3338 < div className = "udapp_environment" >
3439 < Dropdown id = "selectExEnvOptions" data-id = "settingsSelectEnvOptions" className = "udapp_selectExEnvOptions" >
@@ -65,12 +70,6 @@ export function EnvironmentUI(props: EnvironmentProps) {
6570 ) ) }
6671 </ Dropdown . Menu >
6772 </ Dropdown >
68-
69- < CustomTooltip placement = { 'right-start' } tooltipClasses = "text-wrap" tooltipId = "runAndDeployAddresstooltip" tooltipText = { < FormattedMessage id = "udapp.environmentDocs" /> } >
70- < a href = "https://remix-ide.readthedocs.io/en/latest/run.html#environment" target = "_blank" rel = "noreferrer" >
71- < i className = "udapp_infoDeployAction ml-2 fas fa-info" > </ i >
72- </ a >
73- </ CustomTooltip >
7473 </ div >
7574 </ div >
7675 )
You can’t perform that action at this time.
0 commit comments