Skip to content

Commit

Permalink
Merge pull request #188 from hugovk/refcount-return-borrowed-ref
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Apr 26, 2024
2 parents 9cda3a5 + 8b3ec0b commit 97952b5
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 14 deletions.
34 changes: 27 additions & 7 deletions python_docs_theme/static/pydoctheme.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
@import url('classic.css');

/* Common colours */
:root {
--good-color: rgb(41 100 51);
--good-border: rgb(79 196 100);
--middle-color: rgb(133 72 38);
--middle-border: rgb(244, 227, 76);
--bad-color: rgb(159 49 51);
--bad-border: rgb(244, 76, 78);
}

/* unset some styles from the classic stylesheet */
div.document,
div.body,
Expand Down Expand Up @@ -323,8 +333,18 @@ div.footer a:hover {
color: #0095c4;
}

/* C API return value annotations */
:root {
--refcount: var(--good-color);
--refcount-return-borrowed-ref: var(--middle-color);
}

.refcount {
color: #060;
color: var(--refcount);
}

.refcount.return_borrowed_ref {
color: var(--refcount-return-borrowed-ref)
}

.stableabi {
Expand Down Expand Up @@ -625,13 +645,13 @@ div.genindex-jumpbox a {

/* Version change directives */
:root {
--versionadded: rgb(41 100 51);
--versionchanged: rgb(133 72 38);
--deprecated: rgb(159 49 51);
--versionadded: var(--good-color);
--versionchanged: var(--middle-color);
--deprecated: var(--bad-color);

--versionadded-border: rgb(79 196 100);
--versionchanged-border: rgb(244, 227, 76);
--deprecated-border: rgb(244, 76, 78);
--versionadded-border: var(--good-border);
--versionchanged-border: var(--middle-border);
--deprecated-border: var(--bad-border);
}

div.versionadded,
Expand Down
20 changes: 13 additions & 7 deletions python_docs_theme/static/pydoctheme_dark.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/* Common colours */
:root {
--good-color: rgb(79 196 100);
--good-border: var(--good-color);
--middle-color: rgb(244, 227, 76);
--middle-border: var(--middle-color);
--bad-color: rgb(244, 76, 78);
--bad-border: var(--bad-color);
}


/* Browser elements */
:root {
Expand Down Expand Up @@ -79,10 +89,6 @@ table.docutils th {
background-color: #424242;
}

.refcount {
color: #afa;
}

.stableabi {
color: #bbf;
}
Expand Down Expand Up @@ -143,7 +149,7 @@ img.invert-in-dark-mode {

/* Version change directives */
:root {
--versionadded: rgb(79 196 100);
--versionchanged: rgb(244, 227, 76);
--deprecated: rgb(244, 76, 78);
--versionadded: var(--good-color);
--versionchanged: var(--middle-color);
--deprecated: var(--bad-color);
}

0 comments on commit 97952b5

Please sign in to comment.