Archived
1
0

add fagarrows

This commit is contained in:
Jeff 2017-07-10 08:20:22 -04:00
parent d241137ded
commit 31a1109372
3 changed files with 12 additions and 0 deletions

View File

@ -80,6 +80,10 @@ func formatline(line, prefix string) (markup string) {
markup += "<span class='memearrows'>"
markup += escapeline(line)
markup += "</span>"
} else if strings.HasPrefix(line_nospace, "<") {
markup += "<span class='fagarrows'>"
markup += escapeline(line)
markup += "</span>"
} else {
// regular line
// for each word

View File

@ -425,3 +425,7 @@ background-image: url('/static/blackface.png');
background-size: 25%;
background-repeat: repeat;
}
.fagarrows {
color: #E0727F;
}

View File

@ -819,3 +819,7 @@ th > label {
opacity:0.66;
font-size:80%;
}
.fagarrows {
color: #E0727F;
}