diff options
author | Simon McVittie <http://smcv.pseudorandom.co.uk/> | 2008-07-13 15:16:41 +0100 |
---|---|---|
committer | Simon McVittie <http://smcv.pseudorandom.co.uk/> | 2008-07-13 15:16:41 +0100 |
commit | f6e6d561e9d0269d8b52bf926adb3f782e777bde (patch) | |
tree | 438f3654117326ed5dc8496c92cb81e0e31a8784 /doc | |
parent | 879d7806032bb673e3fb5459e67de90a8ad8c72b (diff) | |
download | ikiwiki-f6e6d561e9d0269d8b52bf926adb3f782e777bde.tar ikiwiki-f6e6d561e9d0269d8b52bf926adb3f782e777bde.tar.gz |
Don't set clear:both on .pagedate etc., only on .pagefooter
This removes clear:both from the trailing metadata of inlined entries as
requested by tschwinge, but if you want that feature back, you can set
.inlinefooter { clear: both; } in local.css.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/style.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/style.css b/doc/style.css index 246da1ffc..0e3bfb3e6 100644 --- a/doc/style.css +++ b/doc/style.css @@ -35,12 +35,14 @@ padding: .2em .4em; } -.tags { +.pagefooter { clear: both; } +.tags { +} + #pageinfo { - clear: both; margin: 1em 0; border-top: 1px solid #000; } @@ -140,7 +142,6 @@ div.recentchanges { .pagedate, .pagelicense, .pagecopyright { - clear: both; font-style: italic; display: block; margin-top: 1em; |