From 84ee2b08dafb70e3ebd38a057bb44b98fb718d25 Mon Sep 17 00:00:00 2001 From: Edwin Kempin Date: Wed, 19 Feb 2014 09:22:11 +0100 Subject: [PATCH] Add border for tables in documentation Without border the tables (e.g. in the REST API documentation) are hard to read. Change-Id: If750c09c8518bac3575ada606e918bf18ccc57bf Signed-off-by: Edwin Kempin --- Documentation/doc.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Documentation/doc.css b/Documentation/doc.css index b414a28d46..6b2cacdbe3 100644 --- a/Documentation/doc.css +++ b/Documentation/doc.css @@ -41,3 +41,13 @@ li p { dl dt { margin-top: 1em; } + +table.tableblock { + border-collapse: collapse; +} + +table.tableblock, +th.tableblock, +td.tableblock { + border: 1px solid #EEE; +}