2021-02-17 07:58:56 +00:00
|
|
|
#release-notes .badge {
|
2021-07-26 23:00:27 +00:00
|
|
|
margin-right: 5px;
|
|
|
|
opacity: 0.7;
|
2021-02-17 07:58:56 +00:00
|
|
|
}
|
2021-04-09 18:30:40 +00:00
|
|
|
|
2023-01-04 09:51:09 +00:00
|
|
|
/* Don't make code smaller than other text it looks ugly */
|
2021-04-09 18:30:40 +00:00
|
|
|
code {
|
2021-07-26 23:00:27 +00:00
|
|
|
font-size: 100% !important;
|
2021-04-09 18:30:40 +00:00
|
|
|
}
|
2021-04-20 15:32:15 +00:00
|
|
|
|
|
|
|
.section > h3 {
|
2021-07-26 23:00:27 +00:00
|
|
|
/* shrink h3 a bit, was ~1.8em */
|
|
|
|
font-size: 1.65em;
|
2021-04-20 15:32:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.section > h4 {
|
2021-07-26 23:00:27 +00:00
|
|
|
/* shrink h4 a bit, was 1.44em */
|
|
|
|
font-size: 1.3em;
|
2021-04-20 15:32:15 +00:00
|
|
|
}
|
2021-04-20 21:28:33 +00:00
|
|
|
|
|
|
|
/* Remove "captions" in text table of contents, keep subsections in sidebar */
|
|
|
|
.toctree-wrapper > .caption {
|
2021-07-26 23:00:27 +00:00
|
|
|
display: none;
|
2021-04-20 21:28:33 +00:00
|
|
|
}
|
2023-01-04 09:51:09 +00:00
|
|
|
|
|
|
|
/* Display "async", "class" prefixes and parameters in upright style not italic */
|
|
|
|
.sig-param,
|
|
|
|
.property {
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For some reason autodoc messes up the rendering of return value annotations:
|
|
|
|
it displays it as a bulleted list with the last bullet italicized.
|
|
|
|
|
|
|
|
We monkeypatch autodoc in conf.py to add some extra css classes so we can
|
|
|
|
locate the return value bullets.
|
|
|
|
*/
|
|
|
|
.returnvalue ul {
|
|
|
|
list-style-type: none;
|
|
|
|
margin-left: -15px; /* bullet takes up 15px */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't italicize last bullet. */
|
|
|
|
.returnvalue li > p > em {
|
|
|
|
font-style: normal;
|
|
|
|
}
|