From df374637892b22e3f7199c69845aa935485def13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Weber?= Date: Mon, 5 Jun 2023 08:43:51 +0200 Subject: [PATCH] expand: avoid superflous margin at start and end of content #558 --- static/css/theme.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/css/theme.css b/static/css/theme.css index e953f164c6..23ee6151a4 100644 --- a/static/css/theme.css +++ b/static/css/theme.css @@ -505,6 +505,8 @@ div.box > .box-content { #body table td > :first-child :first-child, #body div.box > .box-content > :first-child, #body div.box > .box-content > :first-child :first-child, +#body div.expand > .expand-content-text > :first-child, +#body div.expand > .expand-content-text > :first-child :first-child, #body div.tab-content > .tab-content-text > :first-child, #body div.tab-content > .tab-content-text > :first-child :first-child { margin-top: 0; @@ -516,6 +518,8 @@ div.box > .box-content { #body table td > :last-child :last-child, #body div.box > .box-content > :last-child, #body div.box > .box-content > :last-child :last-child, +#body div.expand > .expand-content-text > :last-child, +#body div.expand > .expand-content-text > :last-child :last-child, #body div.tab-content > .tab-content-text > :last-child, #body div.tab-content > .tab-content-text > :last-child :last-child { margin-bottom: 0;