From 9e2c93d2f5a683d3c3705246c6aff49564bbe292 Mon Sep 17 00:00:00 2001 From: Aaron Date: Tue, 7 Mar 2017 22:52:20 -0500 Subject: [PATCH 1/2] line-block: set the left margin to 0px --- sass/_theme_rst.sass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sass/_theme_rst.sass b/sass/_theme_rst.sass index 524f9ddc..c3aee449 100644 --- a/sass/_theme_rst.sass +++ b/sass/_theme_rst.sass @@ -85,7 +85,7 @@ .section ol p, .section ul p margin-bottom: $base-line-height / 2 .line-block - margin-left: $base-line-height + margin-left: 0px // Generics handling of headings and toc stuff. .topic-title From dcc93ab61055608c10894f6396baf5ac621ad88e Mon Sep 17 00:00:00 2001 From: David Fischer Date: Mon, 15 Jan 2018 11:24:03 -0800 Subject: [PATCH 2/2] Adjust margins on top level and nested line-blocks - top level have no left margin and a bottom margin - nested have a left margin and no bottom margin --- sass/_theme_rst.sass | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sass/_theme_rst.sass b/sass/_theme_rst.sass index c3aee449..e330068a 100644 --- a/sass/_theme_rst.sass +++ b/sass/_theme_rst.sass @@ -86,6 +86,10 @@ margin-bottom: $base-line-height / 2 .line-block margin-left: 0px + margin-bottom: $base-line-height + .line-block .line-block + margin-left: $base-line-height + margin-bottom: 0px // Generics handling of headings and toc stuff. .topic-title