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>2021-01-03 04:04:25 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-01-03 04:04:25 +0300
commit1e8f2665916c049748a3985a2fce736701925095 (patch)
tree768ccdcaee3b58b8cd49117c67e753e26c6ed21c /doc
parentc7e92e379d624e1187832392ef3e40309415762a (diff)
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
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/static/css/theme_overrides.css6
1 files changed, 2 insertions, 4 deletions
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;
}