File tree 2 files changed +34
-3
lines changed 2 files changed +34
-3
lines changed Original file line number Diff line number Diff line change @@ -144,3 +144,33 @@ hr.box-sep {
144
144
flex : 0 0 90% ;
145
145
}
146
146
}
147
+
148
+
149
+ /* multi colunm TOC */
150
+ .contents ul {
151
+ list-style-type : none;
152
+ padding-left : 2em ;
153
+ }
154
+
155
+ .contents > ul {
156
+ padding-left : 0 ;
157
+ }
158
+
159
+ .multicol-toc > ul {
160
+ column-width : 250px ;
161
+ column-gap : 60px ;
162
+ -webkit-column-width : 250px ;
163
+ -moz-column-width : 250px ;
164
+ column-rule : 1px solid # ccc ;
165
+ }
166
+
167
+ .multicol-toc > li {
168
+ /* break inside is not yet broadly supported, but we just try */
169
+ break-inside : avoid-column;
170
+ -moz-break-inside : avoid-column;
171
+ -webkit-break-inside : avoid-column;
172
+ }
173
+
174
+ .contents > ul > li > a {
175
+ font-size : 1.0em ;
176
+ }
Original file line number Diff line number Diff line change 68
68
69
69
exclude_patterns = [
70
70
"api/prev_api_changes/api_changes_*/*" ,
71
- # Be sure to update users/whats_new.rst:
72
- 'users/prev_whats_new/whats_new_3.4.0.rst' ,
73
71
]
74
72
75
73
@@ -272,7 +270,10 @@ def _check_dependencies():
272
270
# must exist either in Sphinx' static/ path, or in one of the custom paths
273
271
# given in html_static_path.
274
272
# html_style = 'matplotlib.css'
275
- html_style = f"mpl.css?{ SHA } "
273
+ # html_style = f"mpl.css?{SHA}"
274
+ html_css_files = [
275
+ f"mpl.css?{ SHA } " ,
276
+ ]
276
277
277
278
html_theme = "pydata_sphinx_theme"
278
279
You can’t perform that action at this time.
0 commit comments