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:25:47 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-04-29 01:25:47 +0300
commit48bbeaf38304c7b84c67fbd575086593b628cf96 (patch)
tree279311bfab66ced2bcfd6b4d63c8d8725dc1322e /doc
parenta71d8ecb69ec83de0e4128980ffc4095fc12c7ff (diff)
Docs: PyAPI: Improve website responsiveness on narrow displays
- Allow long enums to break early - Allow long titles to wrap - Colloapse hlist to few collumns if needed This fixes a few of the bigger issues, some more tweaks are still needed in some places
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/static/css/theme_overrides.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/python_api/static/css/theme_overrides.css b/doc/python_api/static/css/theme_overrides.css
index 61c62ad21b6..38436510655 100644
--- a/doc/python_api/static/css/theme_overrides.css
+++ b/doc/python_api/static/css/theme_overrides.css
@@ -2,6 +2,7 @@
.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}