From e1b2388a18e08d4627a4092350adae7edc4800f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Weber?= Date: Fri, 16 Jun 2023 22:53:18 +0200 Subject: [PATCH] syntaxhighlight: fix table background on overflow #569 --- static/css/theme.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/css/theme.css b/static/css/theme.css index 29d4c7bb70..72d8a6e5fa 100644 --- a/static/css/theme.css +++ b/static/css/theme.css @@ -671,6 +671,10 @@ div.highlight > div{ border-style: solid; border-width: 1px; } +/* remove default style for usual markdown tables */ +div.highlight > div table{ + background-color: transparent; +} /* disable selection for lineno cells */ div.highlight > div td:first-child:not(:last-child){ user-select: none;