From mboxrd@z Thu Jan 1 00:00:00 1970 From: petr.vorel at gmail.com (Petr Vorel) Date: Sun, 26 Aug 2018 14:59:36 +0200 Subject: [PATCH 1/1] css: Change #git font-size to 13px Message-ID: <20180826125936.14370-1-petr.vorel@gmail.com> Previous size font-size 10pt (which is 13.3333px) hide underscore, when used with highlight with background-color on modified lines. Here underscore of crypto_blkcipher is hidden on by background color of newly added line. struct p8_aes_ctr_ctx { - struct crypto_blkcipher *fallback; + struct crypto_skcipher *fallback; struct aes_key enc_key; }; Signed-off-by: Petr Vorel --- This found on kernel cgit, tested locally. See: https://git.kernel.org/pub/scm/linux/kernel/git/stable/stable-queue.git/tree/queue-4.14/crypto-vmx-use-skcipher-for-ctr-fallback.patch Kind regards, Petr --- cgit.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgit.css b/cgit.css index d4aadbf..be4011a 100644 --- a/cgit.css +++ b/cgit.css @@ -2,7 +2,7 @@ div#cgit { padding: 0em; margin: 0em; font-family: sans-serif; - font-size: 10pt; + font-size: 13px; color: #333; background: white; padding: 4px; -- 2.18.0