Merge pull request #1572 from ethereum/compieTabUI

Don't highlight when content changed
pull/3094/head
yann300 6 years ago committed by GitHub
commit 8d96c5ab45
  1. 7
      src/app/tabs/compile-tab.js

@ -84,8 +84,6 @@ module.exports = class CompileTab {
})
self._deps.editor.event.register('contentChanged', function changedFile () {
if (!self._view.compileIcon) return
const compileTab = document.querySelector('.compileView') // @TODO: compileView tab
compileTab.style.color = styles.colors.red // @TODO: compileView tab
self._view.compileIcon.classList.add(`${css.bouncingIcon}`) // @TODO: compileView tab
})
self._deps.compiler.event.register('loadingCompiler', function start () {
@ -454,6 +452,11 @@ module.exports = class CompileTab {
}
const css = csjs`
.title {
font-size: 1.1em;
font-weight: bold;
margin-bottom: 1em;
}
.panicError {
color: red;
font-size: 20px;

Loading…
Cancel
Save