From 69476ee5781d461519bef12297d807fbf4091cbf Mon Sep 17 00:00:00 2001 From: "Jonathan S. Katz" Date: Tue, 16 Oct 2018 20:16:29 -0400 Subject: [PATCH] Allow for blue section headers for tables in older documentation. Some of the loaded documentation uses "" tags instead of "

" tags, so this accounts for those documents. --- media/css/main.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/media/css/main.css b/media/css/main.css index 7c40659e..4f3e15ab 100644 --- a/media/css/main.css +++ b/media/css/main.css @@ -710,7 +710,8 @@ code, * Documentation Tables */ #docContent .table .title > strong, -#docContent .TABLE { +#docContent .TABLE, +#docContent .TABLE b { color: #336791 !important; font-weight: 900; }