pull/5370/head
lianahus 3 years ago
parent 4a4af1d739
commit e99cae305a
  1. 2
      apps/remix-ide-e2e/src/tests/plugin_api.ts
  2. 2
      libs/remix-ui/run-tab/src/lib/components/instanceContainerUI.tsx
  3. 2
      libs/remix-ui/run-tab/src/lib/components/universalDappUI.tsx
  4. 1
      libs/remix-ui/run-tab/src/lib/css/run-tab.css

@ -188,7 +188,7 @@ module.exports = {
.frameParent()
.useCss()
.clickLaunchIcon('udapp')
.waitForElementContainsText('#selectExEnvOptions option:checked', 'JavaScript VM (Berlin)')
.waitForElementContainsText('#selectExEnvOptions option:checked', 'Local VM (Berlin)')
.clickLaunchIcon('localPlugin')
.useXpath()
// @ts-ignore

@ -12,7 +12,7 @@ export function InstanceContainerUI (props: InstanceContainerProps) {
return (
<div className="udapp_instanceContainer mt-3 border-0 list-group-item">
<label className="udapp_deployedContracts d-flex justify-content-between align-items-center pl-2 mb-1"
<label className="udapp_deployedContracts d-flex justify-content-between align-items-center pl-2 mb-2"
title="Autogenerated generic user interfaces for interaction with deployed contracts">
Deployed Contracts
{ instanceList.length > 0

@ -204,7 +204,7 @@ export function UniversalDappUI (props: UdappProps) {
return (
<div className={`instance udapp_instance udapp_run-instance border-dark ${toggleExpander ? 'udapp_hidesub' : 'bg-light'}`} id={`instance${address}`} data-shared="universalDappUiInstance">
<div className="udapp_title alert alert-secondary">
<div className="udapp_title pb-0 alert alert-secondary">
<span data-id={`universalDappUiTitleExpander${props.index}`} className="btn udapp_titleExpander" onClick={toggleClass}>
<i className={`fas ${toggleExpander ? 'fa-angle-right' : 'fa-angle-down'}`} aria-hidden="true"></i>
</span>

@ -286,7 +286,6 @@
.udapp_instance {
display: block;
flex-direction: column;
margin-bottom: 12px;
background: none;
border-radius: 2px;
}

Loading…
Cancel
Save