Add visual cue to highlighted code when exception is thrown

This commit is contained in:
Adrian D. Alvarez 2019-10-02 15:11:48 -04:00
parent cd2983bf41
commit d053361151
2 changed files with 12 additions and 0 deletions

View File

@ -96,6 +96,12 @@ body .location {
background-color: #fbfbfb;
}
#stackpage .frame .source .highlight {
border-left: 3px solid red;
margin-left: -3px;
font-weight: bold;
}
#stackpage .frame .source .highlight li span {
color: #FF0000;
}

View File

@ -98,6 +98,12 @@ body .location {
background-color: #fbfbfb;
}
#stackpage .frame .source .highlight {
border-left: 3px solid red;
margin-left: -3px;
font-weight: bold;
}
#stackpage .frame .source .highlight li span {
color: #FF0000;
}