From 72b26db1ef892b763cdde231f52cff88b3417a22 Mon Sep 17 00:00:00 2001 From: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com> Date: Tue, 25 Sep 2018 02:46:55 +0200 Subject: [PATCH] Fix CSS for module-level data --- doc/_static/mpl.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/_static/mpl.css b/doc/_static/mpl.css index a083bb5ab208..940db45d4e9c 100644 --- a/doc/_static/mpl.css +++ b/doc/_static/mpl.css @@ -731,7 +731,7 @@ td.field-body table.property-table tr:last-of-type td { /*** function and class description ***/ /* top-level definitions */ -dl.class, dl.function { +dl.class, dl.function, dl.data { border-top: 1px solid #888; padding-top: 0px; margin-top: 20px; @@ -744,7 +744,7 @@ dl.method, dl.classmethod, dl.staticmethod, dl.attribute { dl.class > dt, dl.classmethod > dt, dl.method > dt, dl.function > dt, -dl.attribute > dt, dl.staticmethod > dt { +dl.attribute > dt, dl.staticmethod > dt, dl.data > dt { background-color: #eff3f4; padding-left: 6px; padding-right: 6px; @@ -771,7 +771,7 @@ dl.class big, dl.function big { font-family: monospace; } -dl.class dd, dl.function dd { +dl.class dd, dl.function dd, dl.data dd { padding: 10px; }