Help talk:Reference display customization: Difference between revisions

Content deleted Content added
remove off-topic non-English message – Undid revision 1186209617 by 213.230.102.184 (talk)
Customization: dumb solution with ::before and ::after showing Box-drawing characters
Line 13:
 
-[[User:Yoosef Pooranvary|Yoosef]] ([[User talk:Yoosef Pooranvary|talk]]) 19:46, 20 July 2021 (UTC)
: [[User:Yoosef Pooranvary|Yoosef Pooranvary]], this is super dumb, will probably break something, but it seems to work, relatively speaking: <syntaxhighlight lang="css">
.reference > a {
position: relative;
}
.reference > a::after,
.reference > a::before {
color: white;
position: absolute;
}
.reference > a::before {
content: "▍";
left: 0;
top: 0.3em;
}
.reference > a::after {
content: "▐";
right: -0.20em;
top: 0.3em;
}
</syntaxhighlight>
: The <code>content</code> are two of the [[Box-drawing characters]]. —⁠[[User:Andrybak|andrybak]] ([[User talk:Andrybak|talk]]) 00:29, 23 July 2024 (UTC)