Skip to content

Commit

Permalink
Fixed background color for tt.* elements
Browse files Browse the repository at this point in the history
  • Loading branch information
maximilionus committed Nov 10, 2020
1 parent 96ad0ed commit 1074edc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Python Docs - Dark Theme: Changelog

## **1.0.1** - 2020.11.11
### Fixed
- Background color for `tt.*` elements now gray. White artifacts removed.

## **1.0.0** - 2020.10.22
- First release of this `usercss` theme
6 changes: 5 additions & 1 deletion python_docs_dark.user.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@homepageURL https://github.com/maximilionus/python_docs_dark
@updateURL https://github.com/maximilionus/python_docs_dark/raw/master/python_docs_dark.user.css
@license MIT
@version 1.0.0
@version 1.0.1
@description Dark theme for docs.python.org
@author maximilionus <[email protected]>
==/UserStyle== */
Expand Down Expand Up @@ -147,6 +147,10 @@
background: var(--background-gray);
}

tt {
background-color: var(--background-gray)
}

.highlight .go {
color: var(--text-light);
}
Expand Down

0 comments on commit 1074edc

Please sign in to comment.