style: Make line numbers grey
When using pygments, make the line numbers grey. This was the intention all along, but the <a> style overrides the <div> style and the grey colour does not take effect. This patch fixes the problem by setting the style specifically to <a> within the line numbers div.
This commit is contained in:
parent
9c8a6d2408
commit
c96d0dbea6
@ -183,9 +183,11 @@ table.blob-binary tr.etc {
|
||||
/* Pygments overrides. */
|
||||
div.linenodiv {
|
||||
padding-right: 0.5em;
|
||||
color: gray;
|
||||
font-size: medium;
|
||||
}
|
||||
div.linenodiv a {
|
||||
color: gray;
|
||||
}
|
||||
div.source_code {
|
||||
background: inherit;
|
||||
font-size: medium;
|
||||
|
Loading…
Reference in New Issue
Block a user