Skip to content

Commit 1074edc

Browse files
committed
Fixed background color for tt.* elements
1 parent 96ad0ed commit 1074edc

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Python Docs - Dark Theme: Changelog
22

3+
## **1.0.1** - 2020.11.11
4+
### Fixed
5+
- Background color for `tt.*` elements now gray. White artifacts removed.
6+
37
## **1.0.0** - 2020.10.22
48
- First release of this `usercss` theme

python_docs_dark.user.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@homepageURL https://github.com/maximilionus/python_docs_dark
55
@updateURL https://github.com/maximilionus/python_docs_dark/raw/master/python_docs_dark.user.css
66
@license MIT
7-
@version 1.0.0
7+
@version 1.0.1
88
@description Dark theme for docs.python.org
99
@author maximilionus <[email protected]>
1010
==/UserStyle== */
@@ -147,6 +147,10 @@
147147
background: var(--background-gray);
148148
}
149149

150+
tt {
151+
background-color: var(--background-gray)
152+
}
153+
150154
.highlight .go {
151155
color: var(--text-light);
152156
}

0 commit comments

Comments
 (0)