From: Joey Hess Date: Wed, 25 Mar 2009 22:04:45 +0000 (-0400) Subject: css: Add clear: both to inlinefooter. X-Git-Tag: 3.09~49 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/9e4adba63a769f164c2a6818e58070680c3e0eed?ds=sidebyside css: Add clear: both to inlinefooter. If an inlined page contains a floating element, this ensures that the footer appears beneath it, and prevents the floating element from possibly leaking down to the next inlined page. --- diff --git a/debian/changelog b/debian/changelog index e54c08ba5..01404a2b4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ ikiwiki (3.09) UNRELEASED; urgency=low * git, mercurial: Fix --getctime to return file creation time, not last commit time. * Updated French translation (Jean-Luc Coulon). Closes: #521072 + * css: Add clear: both to inlinefooter. -- Joey Hess Thu, 19 Mar 2009 15:32:49 -0400 diff --git a/doc/style.css b/doc/style.css index a6e6734e3..98a28f347 100644 --- a/doc/style.css +++ b/doc/style.css @@ -44,6 +44,9 @@ div.inlinecontent { .pagefooter { clear: both; } +.inlinefooter { + clear: both; +} .tags { }