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-04-29 01:27:47 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-04-29 01:27:47 +0300
commit14f59a03498b30cc905abfc59b501a13ecff63fd (patch)
tree6538fc46dc64f6417b32c292b0054aa8eb9f1828 /doc
parent38ebac86cc28e53d7640dcc8ce3bc4edbb8f2a1b (diff)
parent48bbeaf38304c7b84c67fbd575086593b628cf96 (diff)
Merge branch 'blender-v2.93-release'
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/static/css/theme_overrides.css15
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/python_api/static/css/theme_overrides.css b/doc/python_api/static/css/theme_overrides.css
index c237a958f5f..38436510655 100644
--- a/doc/python_api/static/css/theme_overrides.css
+++ b/doc/python_api/static/css/theme_overrides.css
@@ -1,7 +1,8 @@
/* T76453: Prevent Long enum lists */
-.field-list li {
+.field-list > dd > p {
max-height: 245px;
overflow-y: auto !important;
+ word-break: break-word;
}
/* Hide home icon in search area */
@@ -11,3 +12,15 @@
.wy-nav-content {
max-width: 1000px !important;
}
+
+/* Fix long titles on mobile */
+h1, h2, h3, h4, h5, h6 {word-break: break-all}
+
+/* Temp fix for https://github.com/readthedocs/sphinx_rtd_theme/pull/1109 */
+.hlist tr {
+ display: -ms-flexbox;
+ display: flex;
+ flex-flow: row wrap;
+ }
+
+.hlist td {margin-right: auto}