issue #180: make target function clearer with highlighting

This commit is contained in:
Steve Donovan 2014-10-01 16:05:03 +02:00
parent 2778e043ed
commit 416b541a5c
2 changed files with 10 additions and 0 deletions

View File

@ -287,6 +287,11 @@ ol ul { margin-top: 0px; }
ol ol { margin-top: 0px; } ol ol { margin-top: 0px; }
ul ol { margin-top: 0px; } ul ol { margin-top: 0px; }
/* make the target distinct; helps when we're navigating to a function */
a:target + * {
background-color: #FF9;
}
/* styles for prettification of source */ /* styles for prettification of source */
pre .comment { color: #558817; } pre .comment { color: #558817; }
pre .constant { color: #a8660d; } pre .constant { color: #a8660d; }

View File

@ -286,6 +286,11 @@ ol ul { margin-top: 0px; }
ol ol { margin-top: 0px; } ol ol { margin-top: 0px; }
ul ol { margin-top: 0px; } ul ol { margin-top: 0px; }
/* make the target distinct; helps when we're navigating to a function */
a:target + * {
background-color: #FF9;
}
/* styles for prettification of source */ /* styles for prettification of source */
pre .comment { color: #558817; } pre .comment { color: #558817; }
pre .constant { color: #a8660d; } pre .constant { color: #a8660d; }