#293: line blocks are styled properly in HTML output.

This commit is contained in:
Georg Brandl 2010-01-02 00:47:57 +01:00
parent 297b2c7663
commit f7b0d4c9c3
2 changed files with 14 additions and 0 deletions

View File

@ -1,6 +1,8 @@
Release 0.6.4 (in development) Release 0.6.4 (in development)
============================== ==============================
* #293: line blocks are styled properly in HTML output.
* #285: make the ``locale_dirs`` config value work again. * #285: make the ``locale_dirs`` config value work again.
* #303: ``html_context`` values given on the command line via ``-A`` * #303: ``html_context`` values given on the command line via ``-A``

View File

@ -332,6 +332,18 @@ dl.glossary dt {
background-color: #ffa background-color: #ffa
} }
.line-block {
display: block;
margin-top: 1em;
margin-bottom: 1em;
}
.line-block .line-block {
margin-top: 0;
margin-bottom: 0;
margin-left: 1.5em;
}
/* -- code displays --------------------------------------------------------- */ /* -- code displays --------------------------------------------------------- */
pre { pre {