From c4b9cca165c230a6d37689febb4bcbfcc192e917 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 4 Jan 2011 23:20:59 +0100 Subject: [PATCH] #283: Fix literal block display issues on Chrome browsers. --- CHANGES | 2 ++ sphinx/themes/basic/static/basic.css | 1 + sphinx/themes/epub/static/epub.css | 1 + 3 files changed, 4 insertions(+) diff --git a/CHANGES b/CHANGES index 96c131f59..ac50bd910 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ Release 1.0.6 (in development) ============================== +* #283: Fix literal block display issues on Chrome browsers. + * #383, #148: Support sorting a limited range of accented characters in the general index and the glossary. diff --git a/sphinx/themes/basic/static/basic.css b/sphinx/themes/basic/static/basic.css index af1f49c41..6882a5830 100644 --- a/sphinx/themes/basic/static/basic.css +++ b/sphinx/themes/basic/static/basic.css @@ -444,6 +444,7 @@ dl.glossary dt { pre { overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ } td.linenos pre { diff --git a/sphinx/themes/epub/static/epub.css b/sphinx/themes/epub/static/epub.css index 356da0559..d2c51751a 100644 --- a/sphinx/themes/epub/static/epub.css +++ b/sphinx/themes/epub/static/epub.css @@ -343,6 +343,7 @@ dl.glossary dt { pre { font-family: "LiberationNarrow", monospace; overflow: auto; + overflow-y: hidden; } td.linenos pre {