From 9c3ae5ffd8698631d2d4affaee00d124ba97cf5a Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 16 May 2019 17:39:48 +0200 Subject: [PATCH] Update contextualListener.js --- src/app/editor/contextualListener.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/editor/contextualListener.js b/src/app/editor/contextualListener.js index 24027d9ae4..3134353696 100644 --- a/src/app/editor/contextualListener.js +++ b/src/app/editor/contextualListener.js @@ -119,7 +119,7 @@ class ContextualListener { const css = csjs` .highlightref_fullLine { position:absolute; - z-index:20; + z-index:2; opacity: 0.4; background-color: var(--info); } @@ -139,7 +139,7 @@ class ContextualListener { } const fileName = lastCompilationResult.getSourceName(position.file) if (fileName) { - return this.editor.addMarker(lineColumn, fileName, css.highlightref_fullLine.className) + return this.editor.addMarker(lineColumn, fileName, css.highlightref_fullLine) } } return null