#4246: Limit width of text body for all themes

This commit is contained in:
Tim Hoffmann
2018-01-04 20:13:29 +01:00
parent c892fe98f7
commit bf29ffb284
17 changed files with 68 additions and 16 deletions

View File

@@ -49,7 +49,7 @@ div.sphinxsidebarwrapper {
div.sphinxsidebar {
float: left;
width: {{ theme_sidebarwidth|toint }}px;
width: {{ theme_sidebarwidth|todim }};
margin-left: -100%;
font-size: 90%;
word-wrap: break-word;
@@ -199,6 +199,11 @@ table.modindextable td {
/* -- general body styles --------------------------------------------------- */
div.body {
min-width: {{ theme_body_min_width|todim }};
max-width: {{ theme_body_max_width|todim }};
}
div.body p, div.body dd, div.body li, div.body blockquote {
-moz-hyphens: auto;
-ms-hyphens: auto;