# HG changeset patch # User Steve Kemp # Date 1197539913 0 # Node ID e8bbce75885514587c8c4a184354b26efa94127e # Parent 7a7c3faf317116157be3de3d47f3e2dedafb1ea4 Added 'pre' handling. diff -r 7a7c3faf3171 -r e8bbce758855 debian/changelog --- a/debian/changelog Wed Dec 12 17:54:59 2007 +0000 +++ b/debian/changelog Thu Dec 13 09:58:33 2007 +0000 @@ -1,3 +1,10 @@ +chronicle (1.3-1) unstable; urgency=low + + * Pre-release. + - Support for comments. + + -- Steve Kemp Wed, 12 Dec 2007 11:58:11 +0000 + chronicle (1.2-1) unstable; urgency=low * Initial upload to Debian. diff -r 7a7c3faf3171 -r e8bbce758855 themes/blocky/style.css --- a/themes/blocky/style.css Wed Dec 12 17:54:59 2007 +0000 +++ b/themes/blocky/style.css Thu Dec 13 09:58:33 2007 +0000 @@ -43,3 +43,11 @@ legend { font-weight: bold; } + +pre { + overflow: auto; + background: rgb(230,230,230); + border: solid; + border-width: thin; + padding: 5px 10px; +} diff -r 7a7c3faf3171 -r e8bbce758855 themes/blog.steve.org.uk/style.css --- a/themes/blog.steve.org.uk/style.css Wed Dec 12 17:54:59 2007 +0000 +++ b/themes/blog.steve.org.uk/style.css Thu Dec 13 09:58:33 2007 +0000 @@ -100,4 +100,12 @@ border: 1px solid black; background-color: #eee; font-size: 80%; -} \ No newline at end of file +} + +pre { + overflow: auto; + background: rgb(230,230,230); + border: solid; + border-width: thin; + padding: 5px 10px; +} diff -r 7a7c3faf3171 -r e8bbce758855 themes/copyrighteous/style.css --- a/themes/copyrighteous/style.css Wed Dec 12 17:54:59 2007 +0000 +++ b/themes/copyrighteous/style.css Thu Dec 13 09:58:33 2007 +0000 @@ -51,4 +51,11 @@ img { margin: 2px; } +pre { + overflow: auto; + background: rgb(230,230,230); + border: solid; + border-width: thin; + padding: 5px 10px; +} diff -r 7a7c3faf3171 -r e8bbce758855 themes/default/style.css --- a/themes/default/style.css Wed Dec 12 17:54:59 2007 +0000 +++ b/themes/default/style.css Thu Dec 13 09:58:33 2007 +0000 @@ -101,4 +101,12 @@ background-color: white; border-left: 1px solid rgb(128, 128, 128); margin: 0; -} \ No newline at end of file +} + +pre { + overflow: auto; + background: rgb(230,230,230); + border: solid; + border-width: thin; + padding: 5px 10px; +}