From f735491b9f8d9bcfccd0f33f9523e655fc2ef3d5 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Wed, 7 Oct 2020 18:37:45 -0400 Subject: [PATCH] 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 --- doc/python_api/static/css/theme_overrides.css | 4 ++++ 1 file changed, 4 insertions(+) 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; +}