[Bf-blender-cvs] [1e8f2665916] master: API Docs: CSS: Fix long enum list

Aaron Carlisle noreply at git.blender.org
Sun Jan 3 02:04:31 CET 2021


Commit: 1e8f2665916c049748a3985a2fce736701925095
Author: Aaron Carlisle
Date:   Sat Jan 2 20:04:25 2021 -0500
Branches: master
https://developer.blender.org/rB1e8f2665916c049748a3985a2fce736701925095

API Docs: CSS: Fix long enum list

This commit makes some adjustments to a previous fix which broke with 
new versions of sphinx/theme.

Fixes T76453

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

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 85f65e95b2c..c237a958f5f 100644
--- a/doc/python_api/static/css/theme_overrides.css
+++ b/doc/python_api/static/css/theme_overrides.css
@@ -1,7 +1,5 @@
-/* Prevent Long enum lists */
-.field-body {
-   display: block;
-   width: 100%;
+/* T76453: Prevent Long enum lists */
+.field-list li {
    max-height: 245px;
    overflow-y: auto !important;
 }



More information about the Bf-blender-cvs mailing list