summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--sphinx/themes/basic/static/basic.css1
-rw-r--r--sphinx/themes/epub/static/epub.css1
3 files changed, 4 insertions, 0 deletions
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 {