mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
42 lines
1.4 KiB
CSS
42 lines
1.4 KiB
CSS
/* Anymail modifications to sphinx-rtd-theme styles */
|
|
|
|
/* List item spacing: https://github.com/rtfd/sphinx_rtd_theme/issues/590 */
|
|
.rst-content .section ol li p:last-child,
|
|
.rst-content .section ul li p:last-child {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
|
|
/* Pygments shell/console prompt: */
|
|
.highlight .gp {
|
|
/* The RTD theme shows prompts the same color as other code.
|
|
We want to distinguish them (like most Pygments themes do). */
|
|
color: #d14;
|
|
|
|
/* Exclude prompt characters when copying from highlighted code. */
|
|
user-select: none;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
}
|
|
|
|
|
|
/* Sticky table first column (used for ESP feature matrix) */
|
|
table.sticky-left td:first-of-type,
|
|
table.sticky-left th:first-of-type {
|
|
position: -webkit-sticky; /* Safari */
|
|
position: sticky;
|
|
left: 0;
|
|
background-color: #fcfcfc; /* override transparent from .wy-table td */
|
|
}
|
|
table.sticky-left td:first-of-type[colspan] > p,
|
|
table.sticky-left th:first-of-type[colspan] > p {
|
|
/* Hack: the full-width <td colspan=N> section headers can't stick left;
|
|
since those always wrap a rubric <p> (in the specific table that uses this),
|
|
just make the <p> sticky within the <td>. */
|
|
display: inline-block;
|
|
position: -webkit-sticky; /* Safari */
|
|
position: sticky;
|
|
left: 17px; /* (.wy-table $table-padding-size) + (docutils border="1" in html) */
|
|
}
|