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
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2019-07-06 22:53:39 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2019-07-07 00:01:10 +0300
commitf702830a7976812813e2be15c80ade2a88fb790a (patch)
tree37c6800c5ba34287dd2824d2ee6ad70a6b917ace /doc/python_api/static
parent6fad70d5513814ad17c045c3d24da86f7f796005 (diff)
API Docs: Theme: Prevent Super Long Enums
Diffstat (limited to 'doc/python_api/static')
-rw-r--r--doc/python_api/static/css/theme_overides.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/python_api/static/css/theme_overides.css b/doc/python_api/static/css/theme_overides.css
new file mode 100644
index 00000000000..6b6e35a90ae
--- /dev/null
+++ b/doc/python_api/static/css/theme_overides.css
@@ -0,0 +1,7 @@
+/* Prevent Long enum lists */
+.field-body {
+ display: block;
+ width: 100%;
+ max-height: 245px;
+ overflow-y: auto !important;
+}