mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
#283: Fix literal block display issues on Chrome browsers.
This commit is contained in:
parent
5fce89aa52
commit
c4b9cca165
2
CHANGES
2
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.
|
||||
|
||||
|
@ -444,6 +444,7 @@ dl.glossary dt {
|
||||
|
||||
pre {
|
||||
overflow: auto;
|
||||
overflow-y: hidden; /* fixes display issues on Chrome browsers */
|
||||
}
|
||||
|
||||
td.linenos pre {
|
||||
|
@ -343,6 +343,7 @@ dl.glossary dt {
|
||||
pre {
|
||||
font-family: "LiberationNarrow", monospace;
|
||||
overflow: auto;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
td.linenos pre {
|
||||
|
Loading…
Reference in New Issue
Block a user