From 37a91a22bdb6eba7f0d5d44aa9ed416355907a1e Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 23 Jun 2008 11:46:23 +0000 Subject: [PATCH] CSS fix for field lists. --- sphinx/static/default.css | 13 +++++++++++++ sphinx/static/sphinxdoc.css | 9 +++++++++ 2 files changed, 22 insertions(+) diff --git a/sphinx/static/default.css b/sphinx/static/default.css index ae6535c31..ed177c595 100644 --- a/sphinx/static/default.css +++ b/sphinx/static/default.css @@ -570,6 +570,10 @@ ul.fakelist { padding: 0; } +.field-list ul { + padding-left: 1em; +} + .first { margin-top: 0 !important; } @@ -665,6 +669,15 @@ table.footnote td, table.footnote th { border: 0 !important; } +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + dl { margin-bottom: 15px; clear: both; diff --git a/sphinx/static/sphinxdoc.css b/sphinx/static/sphinxdoc.css index 477920548..2c6317836 100644 --- a/sphinx/static/sphinxdoc.css +++ b/sphinx/static/sphinxdoc.css @@ -98,6 +98,15 @@ a tt:hover { color: #2491CF; } +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + dl { margin-bottom: 15px; }