[Bf-blender-cvs] [f735491b9f8] master: PyDoc: Set max width to 1000px

Aaron Carlisle noreply at git.blender.org
Fri Oct 9 03:37:51 CEST 2020


Commit: f735491b9f8d9bcfccd0f33f9523e655fc2ef3d5
Author: Aaron Carlisle
Date:   Wed Oct 7 18:37:45 2020 -0400
Branches: master
https://developer.blender.org/rBf735491b9f8d9bcfccd0f33f9523e655fc2ef3d5

PyDoc: Set max width to 1000px

While not full width this gives a nice trade off between improved screen 
use space and readibility.
The old value was 80 so this gives 25% more screen space.

See T73223

===================================================================

M	doc/python_api/static/css/theme_overrides.css

===================================================================

diff --git a/doc/python_api/static/css/theme_overrides.css b/doc/python_api/static/css/theme_overrides.css
index 8aa6f70adb0..85f65e95b2c 100644
--- a/doc/python_api/static/css/theme_overrides.css
+++ b/doc/python_api/static/css/theme_overrides.css
@@ -9,3 +9,7 @@
 /* Hide home icon in search area */
 .wy-side-nav-search > a:hover {background: none; opacity: 0.9}
 .wy-side-nav-search > a.icon::before {content: none}
+
+.wy-nav-content {
+    max-width: 1000px !important;
+}



More information about the Bf-blender-cvs mailing list