Skip to content

Commit 46e7c42

Browse files
author
Vladimir Kotal
committed
Merge pull request #707 from vladak/highlighter
highlight line number with anchor
2 parents ba6f201 + 8ab5809 commit 46e7c42

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

web/default/style.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,12 @@ table#dirlist { /* the "Name" column */
475475
color: #000;
476476
}
477477

478+
/* highlight line number with anchor */
479+
#src a.l:target, #src a.hl:target {
480+
background: orange;
481+
color:yellow;
482+
}
483+
478484
.blame .r { /* revision number "column" (annotation) */
479485
text-align: right;
480486
}

web/offwhite/style.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,12 @@ table#dirlist { /* the "Name" column */
520520
color: #000;
521521
}
522522

523+
/* highlight line number with anchor */
524+
#src a.l:target, #src a.hl:target {
525+
background: orange;
526+
color:yellow;
527+
}
528+
523529
.blame .r { /* revision number "column" (annotation) */
524530
text-align: right;
525531
}

web/polished/style.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,12 @@ table#dirlist { /* the "Name" column */
574574
color: #000;
575575
}
576576

577+
/* highlight line number with anchor */
578+
#src a.l:target, #src a.hl:target {
579+
background: orange;
580+
color:yellow;
581+
}
582+
577583
.blame .r { /* revision number "column" (annotation) */
578584
text-align: right;
579585
}

0 commit comments

Comments
 (0)