mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
highlight only the executing statement
This commit is contained in:
parent
d16d024782
commit
b0d571c7ad
2 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@
|
|||
.executing, .executed, .problem-marker-info, .problem-marker-warning, .problem-marker-error
|
||||
position: absolute
|
||||
.executing
|
||||
background-color: rgba(0, 255, 0, 0.15)
|
||||
background-color: rgba(0, 255, 0, 0.20)
|
||||
@include gradient-striped()
|
||||
.executed
|
||||
background-color: rgba(110, 110, 110, 0.12)
|
||||
|
|
|
@ -480,7 +480,7 @@ module.exports = class SpellView extends View
|
|||
else
|
||||
@debugView.setVariableStates state.variables
|
||||
gotVariableStates = true
|
||||
markerType = "fullLine"
|
||||
markerType = "text"
|
||||
markerRange = new Range start.row, start.col, end.row, end.col
|
||||
markerRange.start = @aceDoc.createAnchor markerRange.start
|
||||
markerRange.end = @aceDoc.createAnchor markerRange.end
|
||||
|
|
Loading…
Reference in a new issue