python-docs-theme 2026.4__py3-none-any.whl → 2026.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- python_docs_theme/__init__.py +1 -1
- python_docs_theme/layout.html +3 -3
- python_docs_theme/locale/ar/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/fa/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/fr/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/pt/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/ro/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/ru/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/ta/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/vi/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/static/pydoctheme.css +129 -37
- python_docs_theme/static/pydoctheme_dark.css +1 -1
- python_docs_theme/theme.toml +1 -0
- {python_docs_theme-2026.4.dist-info → python_docs_theme-2026.9.dist-info}/METADATA +11 -10
- python_docs_theme-2026.9.dist-info/RECORD +36 -0
- {python_docs_theme-2026.4.dist-info → python_docs_theme-2026.9.dist-info}/WHEEL +1 -1
- python_docs_theme-2026.9.dist-info/entry_points.txt +2 -0
- python_docs_theme/locale/ar/LC_MESSAGES/python-docs-theme.po +0 -127
- python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.po +0 -132
- python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.po +0 -126
- python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.po +0 -127
- python_docs_theme/locale/fr/LC_MESSAGES/python-docs-theme.po +0 -120
- python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.po +0 -129
- python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.po +0 -123
- python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.po +0 -124
- python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.po +0 -127
- python_docs_theme/locale/pt/LC_MESSAGES/python-docs-theme.po +0 -129
- python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.po +0 -130
- python_docs_theme/locale/ro/LC_MESSAGES/python-docs-theme.po +0 -130
- python_docs_theme/locale/ru/LC_MESSAGES/python-docs-theme.po +0 -129
- python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.po +0 -128
- python_docs_theme/locale/ta/LC_MESSAGES/python-docs-theme.po +0 -129
- python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.po +0 -129
- python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.po +0 -122
- python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.po +0 -122
- python_docs_theme-2026.4.dist-info/RECORD +0 -51
- python_docs_theme-2026.4.dist-info/entry_points.txt +0 -3
- {python_docs_theme-2026.4.dist-info → python_docs_theme-2026.9.dist-info}/licenses/LICENSE +0 -0
python_docs_theme/__init__.py
CHANGED
python_docs_theme/layout.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<h3>{{ _('Navigation') }}</h3>
|
|
7
7
|
<ul>
|
|
8
8
|
{%- for rellink in rellinks %}
|
|
9
|
-
<li class="right" {% if loop.first %}style="margin-
|
|
9
|
+
<li class="right" {% if loop.first %}style="margin-inline-end: 10px"{% endif %}>
|
|
10
10
|
<a href="{{ pathto(rellink[0])|e }}" title="{{ rellink[1]|striptags|e }}"
|
|
11
11
|
{{ accesskey(rellink[2]) }}>{{ rellink[3] }}
|
|
12
12
|
</a>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
</li>
|
|
15
15
|
{%- endfor %}
|
|
16
16
|
{%- block rootrellink %}
|
|
17
|
-
<li><img src="{{ pathto('_static/' ~ theme_root_icon, 1) }}" alt="{{ theme_root_icon_alt_text }}" style="vertical-align: middle; margin-top: -1px"></li>
|
|
17
|
+
<li class="root-icon"><img src="{{ pathto('_static/' ~ theme_root_icon, 1) }}" alt="{{ theme_root_icon_alt_text }}" style="vertical-align: middle; margin-top: -1px"></li>
|
|
18
18
|
<li><a href="{{theme_root_url}}">{{theme_root_name}}</a>{{ reldelim1 }}</li>
|
|
19
19
|
<li class="switchers">
|
|
20
20
|
<div class="language_switcher_placeholder"></div>
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
{%- endblock -%}
|
|
90
90
|
|
|
91
91
|
{%- block body_tag %}
|
|
92
|
-
{{
|
|
92
|
+
<body{% if theme_is_rtl|tobool %} dir="rtl"{% endif %}>
|
|
93
93
|
{%- if builder != 'htmlhelp' %}
|
|
94
94
|
<div class="mobile-nav">
|
|
95
95
|
<input type="checkbox" id="menuToggler" class="toggler__input" aria-controls="navigation"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -108,7 +108,7 @@ div.related a:hover {
|
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
.switchers > div {
|
|
111
|
-
margin-
|
|
111
|
+
margin-inline-end: 5px;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
div.related ul::after {
|
|
@@ -117,6 +117,17 @@ div.related ul::after {
|
|
|
117
117
|
display: block;
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
+
div.related ul {
|
|
121
|
+
padding: 0;
|
|
122
|
+
padding-inline-start: 10px;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
body[dir='rtl'] div.related ul li.right {
|
|
126
|
+
float: left;
|
|
127
|
+
margin-right: 0;
|
|
128
|
+
margin-left: 5px;
|
|
129
|
+
}
|
|
130
|
+
|
|
120
131
|
.inline-search,
|
|
121
132
|
form.inline-search input {
|
|
122
133
|
display: inline;
|
|
@@ -142,6 +153,9 @@ span.pre {
|
|
|
142
153
|
div.sphinxsidebar {
|
|
143
154
|
display: flex;
|
|
144
155
|
width: min(25vw, 350px);
|
|
156
|
+
flex-shrink: 0;
|
|
157
|
+
margin: 0;
|
|
158
|
+
order: 0;
|
|
145
159
|
float: none;
|
|
146
160
|
position: sticky;
|
|
147
161
|
top: 0;
|
|
@@ -158,8 +172,14 @@ div.sphinxsidebar h4 {
|
|
|
158
172
|
margin-top: 1.5em;
|
|
159
173
|
}
|
|
160
174
|
|
|
161
|
-
div.bodywrapper {
|
|
162
|
-
margin
|
|
175
|
+
div.document div.bodywrapper {
|
|
176
|
+
margin: 0;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
div.documentwrapper {
|
|
180
|
+
flex: 1;
|
|
181
|
+
min-width: 0;
|
|
182
|
+
order: 1;
|
|
163
183
|
}
|
|
164
184
|
|
|
165
185
|
div.sphinxsidebarwrapper {
|
|
@@ -179,6 +199,11 @@ div.sphinxsidebarwrapper > ul > li > ul > li {
|
|
|
179
199
|
margin-bottom: 0.4em;
|
|
180
200
|
}
|
|
181
201
|
|
|
202
|
+
div.sphinxsidebar ul ul {
|
|
203
|
+
margin-left: 0;
|
|
204
|
+
margin-inline-start: 20px;
|
|
205
|
+
}
|
|
206
|
+
|
|
182
207
|
div.sphinxsidebar a:hover {
|
|
183
208
|
color: #0095c4;
|
|
184
209
|
}
|
|
@@ -206,16 +231,23 @@ div.sphinxsidebar input[type='text'] {
|
|
|
206
231
|
border-left: none;
|
|
207
232
|
}
|
|
208
233
|
|
|
234
|
+
body[dir='rtl'] #sidebarbutton {
|
|
235
|
+
border-radius: 5px 0 0 5px;
|
|
236
|
+
border-right: none;
|
|
237
|
+
border-left: none;
|
|
238
|
+
}
|
|
239
|
+
|
|
209
240
|
#sidebarbutton:hover {
|
|
210
241
|
background-color: #AAAAAA;
|
|
211
242
|
}
|
|
212
243
|
|
|
213
244
|
div.body {
|
|
214
|
-
padding: 0
|
|
245
|
+
padding: 0;
|
|
246
|
+
padding-inline-start: 1.2em;
|
|
215
247
|
}
|
|
216
248
|
|
|
217
249
|
div.body p, div.body dd, div.body li, div.body blockquote {
|
|
218
|
-
text-align:
|
|
250
|
+
text-align: start;
|
|
219
251
|
line-height: 1.6;
|
|
220
252
|
}
|
|
221
253
|
div.body h1, div.body h2, div.body h3, div.body h4, div.body h5, div.body h6 {
|
|
@@ -225,6 +257,10 @@ div.body h1, div.body h2, div.body h3, div.body h4, div.body h5, div.body h6 {
|
|
|
225
257
|
}
|
|
226
258
|
div.body dl.field-list > dt {
|
|
227
259
|
line-height: 1.6;
|
|
260
|
+
padding-left: 0;
|
|
261
|
+
padding-right: 0;
|
|
262
|
+
padding-inline-start: 0.5em;
|
|
263
|
+
padding-inline-end: 5px;
|
|
228
264
|
}
|
|
229
265
|
|
|
230
266
|
div.body hr {
|
|
@@ -233,6 +269,22 @@ div.body hr {
|
|
|
233
269
|
height: 1px;
|
|
234
270
|
}
|
|
235
271
|
|
|
272
|
+
body[dir='rtl'] {
|
|
273
|
+
& pre,
|
|
274
|
+
& code,
|
|
275
|
+
& div.highlight,
|
|
276
|
+
& dl > dt span ~ em,
|
|
277
|
+
& .sig,
|
|
278
|
+
& .sig-param {
|
|
279
|
+
direction: ltr;
|
|
280
|
+
unicode-bidi: isolate;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
body[dir='rtl'] .sig {
|
|
285
|
+
text-align: right;
|
|
286
|
+
}
|
|
287
|
+
|
|
236
288
|
div.body pre {
|
|
237
289
|
border-radius: 3px;
|
|
238
290
|
border: 1px solid #ac9;
|
|
@@ -402,7 +454,7 @@ table.docutils th {
|
|
|
402
454
|
|
|
403
455
|
table p,
|
|
404
456
|
table li {
|
|
405
|
-
text-align:
|
|
457
|
+
text-align: start !important;
|
|
406
458
|
}
|
|
407
459
|
|
|
408
460
|
table.docutils th {
|
|
@@ -414,11 +466,37 @@ table.footnote td {
|
|
|
414
466
|
border: 0 !important;
|
|
415
467
|
}
|
|
416
468
|
|
|
469
|
+
body[dir='rtl'] div#search-results,
|
|
470
|
+
body[dir='rtl'] div#search-results ul.search li {
|
|
471
|
+
direction: rtl;
|
|
472
|
+
text-align: right;
|
|
473
|
+
unicode-bidi: isolate;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
body[dir='rtl'] div#search-results ul.search li p {
|
|
477
|
+
text-align: right;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
body[dir='rtl'] div.citation > span {
|
|
481
|
+
float: right;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
body[dir='rtl'] aside.footnote > span {
|
|
485
|
+
float: right;
|
|
486
|
+
padding-right: 0;
|
|
487
|
+
padding-left: 0.5rem;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
body[dir='rtl'] aside.footnote > p {
|
|
491
|
+
margin-left: 0;
|
|
492
|
+
margin-right: 2rem;
|
|
493
|
+
}
|
|
494
|
+
|
|
417
495
|
div.footer {
|
|
418
496
|
line-height: 150%;
|
|
419
|
-
text-align:
|
|
497
|
+
text-align: end;
|
|
420
498
|
width: auto;
|
|
421
|
-
margin-
|
|
499
|
+
margin-inline-end: 10px;
|
|
422
500
|
}
|
|
423
501
|
|
|
424
502
|
div.footer a {
|
|
@@ -476,18 +554,17 @@ div.footer a:hover {
|
|
|
476
554
|
color: var(--threadsafety-atomic);
|
|
477
555
|
}
|
|
478
556
|
|
|
479
|
-
|
|
480
557
|
dl > dt span ~ em,
|
|
481
558
|
.sig {
|
|
482
559
|
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
|
|
483
560
|
}
|
|
484
561
|
|
|
485
562
|
.toctree-wrapper ul {
|
|
486
|
-
padding-
|
|
563
|
+
padding-inline-start: 20px;
|
|
487
564
|
}
|
|
488
565
|
|
|
489
566
|
.theme-selector {
|
|
490
|
-
margin-
|
|
567
|
+
margin-inline-start: .5em;
|
|
491
568
|
}
|
|
492
569
|
|
|
493
570
|
div.genindex-jumpbox,
|
|
@@ -506,17 +583,17 @@ div.genindex-jumpbox a {
|
|
|
506
583
|
cursor: pointer;
|
|
507
584
|
position: absolute;
|
|
508
585
|
top: 0;
|
|
509
|
-
right: 0;
|
|
586
|
+
right: 0; /* physical right; always, even in RTL, since code is LTR */
|
|
510
587
|
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
|
|
511
588
|
font-size: 80%;
|
|
512
589
|
padding-left: .5em;
|
|
513
590
|
padding-right: .5em;
|
|
514
591
|
height: 100%;
|
|
515
592
|
max-height: min(100%, 2.4em);
|
|
516
|
-
border-radius: 0 3px 0 0;
|
|
593
|
+
border-radius: 0 3px 0 0; /* physical — top-right corner, always */
|
|
517
594
|
color: #000;
|
|
518
595
|
background-color: #fff;
|
|
519
|
-
border: 1px solid #ac9;
|
|
596
|
+
border: 1px solid #ac9;
|
|
520
597
|
display: none;
|
|
521
598
|
}
|
|
522
599
|
|
|
@@ -564,10 +641,16 @@ div.genindex-jumpbox a {
|
|
|
564
641
|
margin-inline-start: 1rem;
|
|
565
642
|
margin-inline-end: 0;
|
|
566
643
|
}
|
|
567
|
-
/* Remove sidebar and
|
|
568
|
-
div.related, div.sphinxsidebar {
|
|
644
|
+
/* Remove sidebar and desktop-only related controls */
|
|
645
|
+
div.related li.right, div.related li.switchers, div.sphinxsidebar {
|
|
646
|
+
display: none;
|
|
647
|
+
}
|
|
648
|
+
div.related .root-icon, div.related .root-icon + li {
|
|
569
649
|
display: none;
|
|
570
650
|
}
|
|
651
|
+
div.related {
|
|
652
|
+
line-height: 1.3;
|
|
653
|
+
}
|
|
571
654
|
/* Anchorlinks are not hidden by fixed-positioned navbar when scrolled to */
|
|
572
655
|
html {
|
|
573
656
|
scroll-padding-top: 40px;
|
|
@@ -583,7 +666,7 @@ div.genindex-jumpbox a {
|
|
|
583
666
|
width: 100%;
|
|
584
667
|
position: fixed;
|
|
585
668
|
top: 0;
|
|
586
|
-
|
|
669
|
+
inset-inline-start: 0;
|
|
587
670
|
box-shadow: rgba(0, 0, 0, 0.25) 0 0 2px 0;
|
|
588
671
|
z-index: 1;
|
|
589
672
|
}
|
|
@@ -605,7 +688,7 @@ div.genindex-jumpbox a {
|
|
|
605
688
|
align-items: stretch;
|
|
606
689
|
}
|
|
607
690
|
.nav-logo {
|
|
608
|
-
margin-
|
|
691
|
+
margin-inline-end: 1rem;
|
|
609
692
|
flex-shrink: 0;
|
|
610
693
|
align-self: center;
|
|
611
694
|
}
|
|
@@ -614,7 +697,7 @@ div.genindex-jumpbox a {
|
|
|
614
697
|
width: 20px;
|
|
615
698
|
}
|
|
616
699
|
.version_switcher_placeholder {
|
|
617
|
-
margin-
|
|
700
|
+
margin-inline-end: 1rem;
|
|
618
701
|
}
|
|
619
702
|
.version_switcher_placeholder > select {
|
|
620
703
|
height: 100%;
|
|
@@ -624,10 +707,11 @@ div.genindex-jumpbox a {
|
|
|
624
707
|
flex: auto;
|
|
625
708
|
border: 1px solid #a9a9a9;
|
|
626
709
|
align-items: stretch;
|
|
710
|
+
position: relative;
|
|
627
711
|
}
|
|
628
712
|
.nav-content .search input[type=search] {
|
|
629
713
|
border: 0;
|
|
630
|
-
padding-
|
|
714
|
+
padding-inline-start: 24px;
|
|
631
715
|
width: 100%;
|
|
632
716
|
flex: 1;
|
|
633
717
|
}
|
|
@@ -635,14 +719,15 @@ div.genindex-jumpbox a {
|
|
|
635
719
|
height: 100%;
|
|
636
720
|
box-shadow: none;
|
|
637
721
|
border: 0;
|
|
638
|
-
border-
|
|
722
|
+
border-inline-start: 1px solid #a9a9a9;
|
|
639
723
|
cursor: pointer;
|
|
640
|
-
margin-
|
|
724
|
+
margin-inline-end: 0;
|
|
641
725
|
}
|
|
642
726
|
.nav-content .search svg {
|
|
643
727
|
position: absolute;
|
|
644
|
-
|
|
645
|
-
|
|
728
|
+
top: 50%;
|
|
729
|
+
transform: translateY(-50%);
|
|
730
|
+
inset-inline-start: 4px;
|
|
646
731
|
}
|
|
647
732
|
.toggler__input {
|
|
648
733
|
display: none;
|
|
@@ -674,7 +759,7 @@ div.genindex-jumpbox a {
|
|
|
674
759
|
width: 100%;
|
|
675
760
|
background: inherit;
|
|
676
761
|
position: absolute;
|
|
677
|
-
|
|
762
|
+
inset-inline-start: 0;
|
|
678
763
|
top: -8px;
|
|
679
764
|
}
|
|
680
765
|
.toggler__label > span::after {
|
|
@@ -695,7 +780,7 @@ div.genindex-jumpbox a {
|
|
|
695
780
|
}
|
|
696
781
|
.toggler__input:checked ~ .menu-wrapper {
|
|
697
782
|
visibility: visible;
|
|
698
|
-
|
|
783
|
+
transform: translateX(0);
|
|
699
784
|
}
|
|
700
785
|
|
|
701
786
|
/* Sliding side menu */
|
|
@@ -703,8 +788,9 @@ div.genindex-jumpbox a {
|
|
|
703
788
|
display: block;
|
|
704
789
|
position: fixed;
|
|
705
790
|
top: 0;
|
|
706
|
-
|
|
707
|
-
|
|
791
|
+
inset-inline-start: 0;
|
|
792
|
+
transition: transform 400ms ease;
|
|
793
|
+
transform: translateX(calc(-100% - 10px));
|
|
708
794
|
width: 300px;
|
|
709
795
|
height: 100%;
|
|
710
796
|
background-color: #eee;
|
|
@@ -712,12 +798,18 @@ div.genindex-jumpbox a {
|
|
|
712
798
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
713
799
|
overflow-y: auto;
|
|
714
800
|
}
|
|
801
|
+
body[dir='rtl'] .menu-wrapper {
|
|
802
|
+
transform: translateX(100%);
|
|
803
|
+
}
|
|
715
804
|
.menu-wrapper.open {
|
|
716
805
|
visibility: visible;
|
|
717
|
-
|
|
806
|
+
transform: translateX(0);
|
|
718
807
|
}
|
|
719
808
|
.menu {
|
|
720
|
-
padding: 40px
|
|
809
|
+
padding-block-start: 40px;
|
|
810
|
+
padding-inline-end: 10px;
|
|
811
|
+
padding-block-end: 30px;
|
|
812
|
+
padding-inline-start: 20px;
|
|
721
813
|
}
|
|
722
814
|
.menu-wrapper h3,
|
|
723
815
|
.menu-wrapper h4 {
|
|
@@ -742,10 +834,10 @@ div.genindex-jumpbox a {
|
|
|
742
834
|
list-style: none;
|
|
743
835
|
line-height: 1.4;
|
|
744
836
|
overflow-wrap: break-word;
|
|
745
|
-
padding-
|
|
837
|
+
padding-inline-start: 0;
|
|
746
838
|
}
|
|
747
839
|
.menu ul ul {
|
|
748
|
-
margin-
|
|
840
|
+
margin-inline-start: 20px;
|
|
749
841
|
list-style: square;
|
|
750
842
|
}
|
|
751
843
|
.menu ul li {
|
|
@@ -801,26 +893,26 @@ div.versionadded,
|
|
|
801
893
|
div.versionchanged,
|
|
802
894
|
div.deprecated,
|
|
803
895
|
div.deprecated-removed {
|
|
804
|
-
border-
|
|
896
|
+
border-inline-start: 3px solid;
|
|
805
897
|
padding: 0 1rem;
|
|
806
898
|
}
|
|
807
899
|
|
|
808
900
|
div.versionadded {
|
|
809
|
-
border-
|
|
901
|
+
border-inline-start-color: var(--versionadded-border);
|
|
810
902
|
}
|
|
811
903
|
|
|
812
904
|
div.versionchanged {
|
|
813
|
-
border-
|
|
905
|
+
border-inline-start-color: var(--versionchanged-border);
|
|
814
906
|
}
|
|
815
907
|
|
|
816
908
|
div.deprecated,
|
|
817
909
|
div.deprecated-removed,
|
|
818
910
|
div.versionremoved {
|
|
819
|
-
border-
|
|
911
|
+
border-inline-start-color: var(--deprecated-border);
|
|
820
912
|
}
|
|
821
913
|
|
|
822
914
|
div.soft-deprecated {
|
|
823
|
-
border-
|
|
915
|
+
border-inline-start-color: var(--soft-deprecated-border);
|
|
824
916
|
}
|
|
825
917
|
|
|
826
918
|
div.versionadded .versionmodified {
|
python_docs_theme/theme.toml
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
2
|
Name: python-docs-theme
|
|
3
|
-
Version: 2026.
|
|
3
|
+
Version: 2026.9
|
|
4
4
|
Summary: The Sphinx theme for the CPython docs and related projects
|
|
5
|
+
Project-URL: Issue tracker, https://github.com/python/python-docs-theme/issues
|
|
6
|
+
Project-URL: Code, https://github.com/python/python-docs-theme
|
|
7
|
+
Project-URL: Download, https://pypi.org/project/python-docs-theme/
|
|
8
|
+
Project-URL: Homepage, https://github.com/python/python-docs-theme/
|
|
5
9
|
Author: Python Docs Sphinx Theme maintainers
|
|
6
|
-
Requires-Python: >=3.12
|
|
7
|
-
Description-Content-Type: text/markdown
|
|
8
10
|
License-Expression: PSF-2.0
|
|
11
|
+
License-File: LICENSE
|
|
9
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
10
13
|
Classifier: Framework :: Sphinx :: Theme
|
|
11
14
|
Classifier: Intended Audience :: Developers
|
|
@@ -18,12 +21,9 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
18
21
|
Classifier: Programming Language :: Python :: 3.15
|
|
19
22
|
Classifier: Topic :: Documentation
|
|
20
23
|
Classifier: Topic :: Software Development :: Documentation
|
|
21
|
-
|
|
24
|
+
Requires-Python: >=3.12
|
|
22
25
|
Requires-Dist: sphinx>=7.3
|
|
23
|
-
|
|
24
|
-
Project-URL: Download, https://pypi.org/project/python-docs-theme/
|
|
25
|
-
Project-URL: Homepage, https://github.com/python/python-docs-theme/
|
|
26
|
-
Project-URL: Issue tracker, https://github.com/python/python-docs-theme/issues
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
27
|
|
|
28
28
|
# Python Docs Sphinx Theme
|
|
29
29
|
|
|
@@ -49,6 +49,8 @@ To use this theme, add the following to `conf.py`:
|
|
|
49
49
|
|
|
50
50
|
- `html_sidebars`, defaults taken from https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_sidebars
|
|
51
51
|
|
|
52
|
+
- To lay pages out right-to-left for languages such as Persian, Arabic, or Hebrew,
|
|
53
|
+
set `html_theme_options = {"is_rtl": True}`. Defaults to `false`.
|
|
52
54
|
|
|
53
55
|
## Translation
|
|
54
56
|
|
|
@@ -65,4 +67,3 @@ See a demo of the CPython docs using this theme:
|
|
|
65
67
|
The kitchen sink is a showcase of every Sphinx feature:
|
|
66
68
|
|
|
67
69
|
- https://sphinx-themes.org/sample-sites/python-docs-theme/kitchen-sink/
|
|
68
|
-
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
python_docs_theme/__init__.py,sha256=kIzoCeuTl6CAmVzpATjcSlZs2R01UpQeVJH1lhXXDHo,1326
|
|
2
|
+
python_docs_theme/footerdonate.html,sha256=-FO52fS7x4iqjtMD9un5b--rPED2BPlcug9gkUMW2Uk,182
|
|
3
|
+
python_docs_theme/layout.html,sha256=dmipCz6BRLV44wtej6tiSAVBq5iyJ_3Qrpla3L6Ra9o,7932
|
|
4
|
+
python_docs_theme/theme.toml,sha256=mx4MnUZ9Pdqu-SzLd87nCj9PuJKztrT9b3XNu0lPQZA,1156
|
|
5
|
+
python_docs_theme/locale/ar/LC_MESSAGES/python-docs-theme.mo,sha256=c_k3YW3inWCIF__WWNMYimYSw_CP16FwXnsHxYUKM7Y,2567
|
|
6
|
+
python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.mo,sha256=9Q1Iy5JFDYRFHbuJrIk9sNKZ2RgnQqzylnLc-e7rK9k,2188
|
|
7
|
+
python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.mo,sha256=ORoaqG_pJti8YPMoIVA8g9ch5BNGaYabuwgKj5fo8XE,2704
|
|
8
|
+
python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.mo,sha256=B6zSMsN_E7CZ98ZFWIMktiwQEEipSANYGuJpYBh8X9A,2221
|
|
9
|
+
python_docs_theme/locale/fa/LC_MESSAGES/python-docs-theme.mo,sha256=f-aiyBCL2ALVBHTKlnMVQpoPmbcdPZRpUEjkv7gG8E8,2479
|
|
10
|
+
python_docs_theme/locale/fr/LC_MESSAGES/python-docs-theme.mo,sha256=mrMmUdxXgZ9MORb30-WXkhDs2dLkta0HPeq9K4AKDv8,2199
|
|
11
|
+
python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.mo,sha256=QrIphqs76GNfsuNZlQ9HTk04qwWtFK-zrwx4Ml2D5hA,2161
|
|
12
|
+
python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.mo,sha256=-juCRDY-2V12ek14AFFW23ZQ-Ybm8YMuENmwavlZhw0,2359
|
|
13
|
+
python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.mo,sha256=BmsubzJAc343mKBrmU1EIcjs7Dpf_ECjpsQQOVqYS9w,2451
|
|
14
|
+
python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.mo,sha256=d68WBu3wOABlfIKWrfSpfH3HJPEKK828I9uPr6tIILY,2321
|
|
15
|
+
python_docs_theme/locale/pt/LC_MESSAGES/python-docs-theme.mo,sha256=Seb0DXDl84oti1HRRWdwyLL25JIkL3LkcxyvcDbGYxE,2316
|
|
16
|
+
python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.mo,sha256=t-EK0qUq-OeDqOR7-V0V7v8UREeuoHkzkWdlNSzmTUI,2345
|
|
17
|
+
python_docs_theme/locale/ro/LC_MESSAGES/python-docs-theme.mo,sha256=NRCuM3hLVtrJNeCsgM71YP0RL1aVRgtkIiTS4funhDA,2409
|
|
18
|
+
python_docs_theme/locale/ru/LC_MESSAGES/python-docs-theme.mo,sha256=4RjT31dBscizf4IHZmWv9PuoaKWfzHWKmlBsw_b80Uw,2706
|
|
19
|
+
python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.mo,sha256=wMtfsR9EUPSb919JaqAhSDTVMnirvZ0UeuM-IPGq5Gg,2109
|
|
20
|
+
python_docs_theme/locale/ta/LC_MESSAGES/python-docs-theme.mo,sha256=bpjuW5SkRP0PcYRH7eyzQUxyAneD3u5tEGgoswP-mWQ,3099
|
|
21
|
+
python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.mo,sha256=vyjYbb83kUnPN8FE8V--1QdTO4R8hahn5OYe5XGaPh0,2238
|
|
22
|
+
python_docs_theme/locale/vi/LC_MESSAGES/python-docs-theme.mo,sha256=HVD-7EII2apqTPHm9jonKKn3sBYQSLVQLjAGR4wncp4,2327
|
|
23
|
+
python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.mo,sha256=FmRfTlxCeA-ZN0XcZlzkjaTFe4OmMdLJCdDzGVR5OKM,2146
|
|
24
|
+
python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.mo,sha256=QxGiKPBnRjEyoxgA3PsY8PjZFdaO1ix-RfVWvKjAtUg,2144
|
|
25
|
+
python_docs_theme/static/copybutton.js,sha256=Fg9_Xc0kpFuFilfWpBQa7cDmXEsybvrmnawdf3Gskyo,3055
|
|
26
|
+
python_docs_theme/static/menu.js,sha256=JmrKD08_6CiCgQH32As9AgiSiV-th1fZInVrmTCihzA,2137
|
|
27
|
+
python_docs_theme/static/py.svg,sha256=WGW-i8wK-IhZSQPqARL2yNkjxXJsQIHoyFYRDMcznO8,2041
|
|
28
|
+
python_docs_theme/static/pydoctheme.css,sha256=aU4ahVqcnIJdqlWQyIfGxkHNxVPyIGtLMa7UL7bnEsw,19116
|
|
29
|
+
python_docs_theme/static/pydoctheme_dark.css,sha256=k4Rf3aGG6HjceEVludr-VkOjTgzKxog3htAbasfKV9A,3669
|
|
30
|
+
python_docs_theme/static/search-focus.js,sha256=DwWV71ssKvrzagPenP7yLvFQCdyqFJirbBk1PFRvVoA,559
|
|
31
|
+
python_docs_theme/static/themetoggle.js,sha256=6D1LE0wg8DjPP776_KxPCxXdIk-gGJJX5DYpHFLG1Uw,779
|
|
32
|
+
python_docs_theme-2026.9.dist-info/METADATA,sha256=skDizUEkdefk77Ohnw3cOaO1-FTAAw-rTbMlcPdFzMc,2681
|
|
33
|
+
python_docs_theme-2026.9.dist-info/WHEEL,sha256=THafob7ofN-NsuMN7Mg4qZyHaQI7KkD-QlcQatYhXPo,87
|
|
34
|
+
python_docs_theme-2026.9.dist-info/entry_points.txt,sha256=7oxZn4fKx-vAoSyXWoJuJp3XYwgjqv61YQzNqgnD_oE,59
|
|
35
|
+
python_docs_theme-2026.9.dist-info/licenses/LICENSE,sha256=lx_9CsorlYBu9cw97FX-A1VnHHmrwk-H-jydZBJlWmY,2460
|
|
36
|
+
python_docs_theme-2026.9.dist-info/RECORD,,
|