Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Geier <Matthias.Geier@gmail.com>2020-07-19 21:42:46 +0300
committerMatthias Geier <Matthias.Geier@gmail.com>2020-08-01 21:15:32 +0300
commitc5180a6d3f5aa79c22106176b6405c7b18cc4a88 (patch)
tree7e6e7972fa6a59b2de91db24e12891d85619a6b3 /sphinx/themes
parent5e6da19f0e44a0ae83944fb6ce18f18f781e1a6e (diff)
basic CSS: fix "highlight-" selector
Diffstat (limited to 'sphinx/themes')
-rw-r--r--sphinx/themes/basic/static/basic.css_t4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t
index a22ef80d4..0a71a7a91 100644
--- a/sphinx/themes/basic/static/basic.css_t
+++ b/sphinx/themes/basic/static/basic.css_t
@@ -693,7 +693,7 @@ pre {
overflow-y: hidden; /* fixes display issues on Chrome browsers */
}
-pre, div[class|="highlight"] {
+pre, div[class*="highlight-"] {
clear: both;
}
@@ -704,7 +704,7 @@ span.pre {
hyphens: none;
}
-div[class^="highlight-"] {
+div[class*="highlight-"] {
margin: 1em 0;
}