Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions djangoproject/scss/_style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2633,6 +2633,30 @@ table.foundation td {
padding: 0 5px;
}

table.docutils {
margin-bottom: 1.5em;

td,
th {
border-bottom: 1px solid var(--hairline-color);
padding: 8px 12px;
}

thead th {
border-bottom: 2px solid $gray-medium;
font-weight: bold;
}

tr:nth-child(even) {
background-color: var(--sidebar-bg);
background-color: color-mix(in oklab, currentColor 5%, transparent);
}

tr:hover {
background-color: color-mix(in oklab, currentColor 10%, transparent);
}
}

table.django-supported-versions,
table.django-unsupported-versions {
border: 1px solid var(--hairline-color);
Expand Down