From 6a20b36700b81680acfd928f54d3092f4d182625 Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Tue, 13 Dec 2011 00:32:11 +0100 Subject: [PATCH] Instead of breaking for every paragraph (which makes our toc look really broken, break after the first element after a resource container. This also means that resource containers cannot be "chained" together to all float left or right, but we have to draw a line somewhere. --- www/media/idf/css/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www/media/idf/css/style.css b/www/media/idf/css/style.css index 8058ee0..e3fc6de 100644 --- a/www/media/idf/css/style.css +++ b/www/media/idf/css/style.css @@ -799,10 +799,6 @@ table.download { /** * Wiki */ -#wiki-content p { - clear: both; -} - p.desc { background-color: #eeeeec; -moz-border-radius: 3px; @@ -937,6 +933,10 @@ ol > li { padding: 5px; } +.resource-container:after { + clear: both; +} + .resource-container .preview { margin-bottom: 5px; }