Welcome to mirror list, hosted at ThFree Co, Russian Federation.

theme_overrides.css « css « static « python_api « doc - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0fea27a8ebd6b7b04284e2f4de14b6d316a111f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* T76453: Prevent Long enum lists */
.field-list > dd p {
   max-height: 245px;
   overflow-y: auto !important;
   word-break: break-word;
}

/* Hide home icon in search area */
.wy-side-nav-search > a:hover {background: none; opacity: 0.9}
.wy-side-nav-search > a.icon::before {content: none}

.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}