2014-08-03 19:52:23 +02:00
|
|
|
/* Import the Sphinx theme style. */
|
|
|
|
@import url("default.css");
|
|
|
|
|
|
|
|
/* Wrap sidebar content even within words so that long
|
|
|
|
document names do not escape sidebar borders. */
|
|
|
|
div.sphinxsidebarwrapper {
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2018-08-09 18:06:22 +02:00
|
|
|
|
|
|
|
/* Make links inside parsed-literal blocks more obvious
|
|
|
|
by using a background color and increased line spacing
|
|
|
|
to make them look boxed. */
|
|
|
|
.literal-block {
|
|
|
|
line-height: 1.4;
|
|
|
|
}
|
|
|
|
.literal-block a.reference.internal {
|
|
|
|
background-color: #dfdfdf;
|
|
|
|
}
|
2021-09-14 00:13:48 +02:00
|
|
|
|
|
|
|
/* Remove unwanted margin in case list item contains a div-wrapping
|
|
|
|
directive like `.. versionadded` or `.. deprecated`. */
|
|
|
|
dd > :first-child > p {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
2022-04-13 00:32:21 +02:00
|
|
|
|
|
|
|
div.outdated {
|
|
|
|
background-color: #f0f0c0;
|
|
|
|
color: black;
|
|
|
|
font-size: 90%;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
padding-left: 2px;
|
|
|
|
padding-right: 2px;
|
|
|
|
padding-top: 5px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|