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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-10-08 01:37:45 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-10-09 04:37:28 +0300
commitf735491b9f8d9bcfccd0f33f9523e655fc2ef3d5 (patch)
treed1fa94e6b7dbf58f8e86cf173e9bfdf50c945faa /doc
parentdecb3b10aadc312aac8c15c66deb4f9f1822ab11 (diff)
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
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/static/css/theme_overrides.css4
1 files changed, 4 insertions, 0 deletions
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;
+}