pull/1/head
yann300 7 years ago
parent 8be16b1fa0
commit a44366b3c9
  1. 7
      assets/css/browser-solidity.css
  2. 4
      src/app.js

@ -297,6 +297,13 @@ input[type="file"] {
opacity: 0.7 opacity: 0.7
} }
.highlightreferenceline {
position:absolute;
z-index:20;
background-color: hsla(229, 75%, 87%, .5); /* lightBlue in style-guide.js*/
opacity: 0.7
}
.highlightcode { .highlightcode {
position:absolute; position:absolute;
z-index:20; z-index:20;

@ -397,7 +397,9 @@ function run () {
highlight: (position, node) => { highlight: (position, node) => {
if (compiler.lastCompilationResult && compiler.lastCompilationResult.source && compiler.lastCompilationResult.source.target === config.get('currentFile')) { if (compiler.lastCompilationResult && compiler.lastCompilationResult.source && compiler.lastCompilationResult.source.target === config.get('currentFile')) {
position = offsetToLineColumnConverter.offsetToLineColumn(position, position.file, compiler.lastCompilationResult) position = offsetToLineColumnConverter.offsetToLineColumn(position, position.file, compiler.lastCompilationResult)
var css = 'highlightreference'
if (node.children && node.children.length) { if (node.children && node.children.length) {
css = 'highlightreferenceline'
position = { position = {
start: { start: {
line: position.start.line, line: position.start.line,
@ -409,7 +411,7 @@ function run () {
} }
} }
} }
return editor.addMarker(position, config.get('currentFile'), 'highlightreference') return editor.addMarker(position, config.get('currentFile'), css)
} }
return null return null
}, },

Loading…
Cancel
Save