From 0a74f8022ebdd52ed7f299062a5b508ee168e00a Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 21 May 2020 18:25:01 +0100 Subject: [PATCH] docs: tweak rendering of tables to match the new theme --- docs/static/css/custom.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/static/css/custom.css b/docs/static/css/custom.css index 051d44119..3f70b36ec 100644 --- a/docs/static/css/custom.css +++ b/docs/static/css/custom.css @@ -16,22 +16,22 @@ a:hover { } table { - background-color:#e0e0ff + background-color:#f0f0f0; } tbody td, th { - border: 1px solid black; + border: 1px solid #c0c0c0; padding: 3px 7px 2px 7px; } thead td, th { - border: 1px solid black; padding: 3px 7px 2px 7px; font-weight: bold; + background-color:#e0e0e0; } -tbody tr:nth-child(odd) { - background-color:#d0d0ff +tbody tr:nth-child(even) { + background-color:#e8e8e8; } /* Preserve whitespace. Wrap text only at line breaks. */