diff --git a/assets/css/universal-dapp.css b/assets/css/universal-dapp.css index ef363cff4a..4454b0bd35 100644 --- a/assets/css/universal-dapp.css +++ b/assets/css/universal-dapp.css @@ -216,8 +216,8 @@ } #runTabView .contractProperty.payable .call { - background-color: hsla(0, 82%, 82%, .5); /* lightRed in style-guide.js */ - border-color: hsla(0, 82%, 82%, .5); /* lightRed in style-guide.js */ + background-color: hsla(0, 82%, 82%, 1); /* red in style-guide.js */ + border-color: hsla(0, 82%, 82%, 1); /* red in style-guide.js */ width: 25%; } diff --git a/src/app.js b/src/app.js index 8c60d0ea55..7069bef3c6 100644 --- a/src/app.js +++ b/src/app.js @@ -12,7 +12,7 @@ var OffsetToLineColumnConverter = require('./lib/offsetToLineColumnConverter') var QueryParams = require('./lib/query-params') var GistHandler = require('./lib/gist-handler') -var helpers = require('./lib/helper') +var helper = require('./lib/helper') var Storage = require('./storage') var Browserfiles = require('./app/files/browser-files') var chromeCloudStorageSync = require('./app/files/chromeCloudStorageSync') @@ -219,7 +219,7 @@ function run () { // Add files received from remote instance (i.e. another browser-solidity) function loadFiles (filesSet) { for (var f in filesSet) { - filesProviders['browser'].set(helpers.createNonClashingName(f, filesProviders['browser']), filesSet[f].content) + filesProviders['browser'].set(helper.createNonClashingName(f, filesProviders['browser']), filesSet[f].content) } fileManager.switchFile() } diff --git a/src/app/panels/file-panel.js b/src/app/panels/file-panel.js index fd70568464..2694341238 100644 --- a/src/app/panels/file-panel.js +++ b/src/app/panels/file-panel.js @@ -10,7 +10,7 @@ var modalDialog = require('../ui/modaldialog') var modalDialogCustom = require('../ui/modal-dialog-custom') var QueryParams = require('../../lib/query-params') var queryParams = new QueryParams() -var helpers = require('../../lib/helper') +var helper = require('../../lib/helper') var remix = require('ethereum-remix') var styleGuide = remix.ui.styleGuide @@ -246,7 +246,7 @@ function filepanel (appAPI, filesProvider) { } function createNewFile () { - var newName = filesProvider['browser'].type + '/' + helpers.createNonClashingName('Untitled.sol', filesProvider['browser']) + var newName = filesProvider['browser'].type + '/' + helper.createNonClashingName('Untitled.sol', filesProvider['browser']) if (!filesProvider['browser'].set(newName, '')) { modalDialogCustom.alert('Failed to create file ' + newName) } else { diff --git a/src/app/tabs/run-tab.js b/src/app/tabs/run-tab.js index ea3e8a9b18..c4113e9a9e 100644 --- a/src/app/tabs/run-tab.js +++ b/src/app/tabs/run-tab.js @@ -69,6 +69,15 @@ var css = csjs` margin-top: 2%; border: none; } + .pendingTxsContainer { + ${styles.displayBox} + display: flex; + flex-direction: column; + background-color: ${styles.colors.transparent}; + margin-top: 2%; + border: none; + padding-bottom: 0; + } .container { ${styles.displayBox} margin-top: 2%; @@ -76,6 +85,11 @@ var css = csjs` .contractNames { ${styles.dropdown} } + .subcontainer { + display: flex; + flex-direction: row; + align-items: baseline; + } .buttons { display: flex; cursor: pointer; @@ -115,11 +129,11 @@ var css = csjs` color: ${styles.colors.lightGrey}; font-style: italic; } - .legend { - float: right; - display: flex; - word-break: normal; - margin-left: auto; + .pendingTxsText { + ${styles.displayBox} + text-align: center; + color: ${styles.colors.lightGrey}; + font-style: italic; } .item { margin-right: 1em; @@ -138,13 +152,21 @@ var css = csjs` color: ${styles.colors.lightBlue}; margin-right: .3em; } + .pendingContainer { + display: flex; + align-items: baseline; + } .pending { - background-color: ${styles.colors.lightRed}; - width: 75px; height: 25px; text-align: center; padding-left: 10px; border-radius: 3px; + margin-left: 5px; + } + .icon { + font-size: 12px; + color: ${styles.colors.orange}; + margin-left: 10%; } ` console.log(styles.displayBox.toString()) @@ -155,16 +177,26 @@ module.exports = runTab var instanceContainer = yo`
` var noInstancesText = yo`