coverage 7.11.2__cp314-cp314t-musllinux_1_2_riscv64.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.
- coverage/__init__.py +40 -0
- coverage/__main__.py +12 -0
- coverage/annotate.py +114 -0
- coverage/bytecode.py +196 -0
- coverage/cmdline.py +1184 -0
- coverage/collector.py +486 -0
- coverage/config.py +731 -0
- coverage/context.py +74 -0
- coverage/control.py +1481 -0
- coverage/core.py +142 -0
- coverage/data.py +227 -0
- coverage/debug.py +669 -0
- coverage/disposition.py +59 -0
- coverage/env.py +135 -0
- coverage/exceptions.py +91 -0
- coverage/execfile.py +329 -0
- coverage/files.py +553 -0
- coverage/html.py +856 -0
- coverage/htmlfiles/coverage_html.js +733 -0
- coverage/htmlfiles/favicon_32.png +0 -0
- coverage/htmlfiles/index.html +164 -0
- coverage/htmlfiles/keybd_closed.png +0 -0
- coverage/htmlfiles/pyfile.html +149 -0
- coverage/htmlfiles/style.css +377 -0
- coverage/htmlfiles/style.scss +824 -0
- coverage/inorout.py +614 -0
- coverage/jsonreport.py +188 -0
- coverage/lcovreport.py +219 -0
- coverage/misc.py +373 -0
- coverage/multiproc.py +120 -0
- coverage/numbits.py +146 -0
- coverage/parser.py +1213 -0
- coverage/patch.py +166 -0
- coverage/phystokens.py +197 -0
- coverage/plugin.py +617 -0
- coverage/plugin_support.py +299 -0
- coverage/py.typed +1 -0
- coverage/python.py +269 -0
- coverage/pytracer.py +369 -0
- coverage/regions.py +127 -0
- coverage/report.py +298 -0
- coverage/report_core.py +117 -0
- coverage/results.py +471 -0
- coverage/sqldata.py +1153 -0
- coverage/sqlitedb.py +239 -0
- coverage/sysmon.py +482 -0
- coverage/templite.py +306 -0
- coverage/tomlconfig.py +210 -0
- coverage/tracer.cpython-314t-riscv64-linux-musl.so +0 -0
- coverage/tracer.pyi +43 -0
- coverage/types.py +206 -0
- coverage/version.py +35 -0
- coverage/xmlreport.py +264 -0
- coverage-7.11.2.dist-info/METADATA +221 -0
- coverage-7.11.2.dist-info/RECORD +59 -0
- coverage-7.11.2.dist-info/WHEEL +5 -0
- coverage-7.11.2.dist-info/entry_points.txt +4 -0
- coverage-7.11.2.dist-info/licenses/LICENSE.txt +177 -0
- coverage-7.11.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,377 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
/* Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 */
|
|
3
|
+
/* For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt */
|
|
4
|
+
/* Don't edit this .css file. Edit the .scss file instead! */
|
|
5
|
+
html, body, h1, h2, h3, p, table, td, th { margin: 0; padding: 0; border: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; }
|
|
6
|
+
|
|
7
|
+
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 1em; background: #fff; color: #000; }
|
|
8
|
+
|
|
9
|
+
@media (prefers-color-scheme: dark) { body { background: #1e1e1e; } }
|
|
10
|
+
|
|
11
|
+
@media (prefers-color-scheme: dark) { body { color: #eee; } }
|
|
12
|
+
|
|
13
|
+
html > body { font-size: 16px; }
|
|
14
|
+
|
|
15
|
+
a:active, a:focus { outline: 2px dashed #007acc; }
|
|
16
|
+
|
|
17
|
+
p { font-size: .875em; line-height: 1.4em; }
|
|
18
|
+
|
|
19
|
+
table { border-collapse: collapse; }
|
|
20
|
+
|
|
21
|
+
td { vertical-align: top; }
|
|
22
|
+
|
|
23
|
+
table tr.hidden { display: none !important; }
|
|
24
|
+
|
|
25
|
+
p#no_rows { display: none; font-size: 1.15em; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
|
|
26
|
+
|
|
27
|
+
a.nav { text-decoration: none; color: inherit; }
|
|
28
|
+
|
|
29
|
+
a.nav:hover { text-decoration: underline; color: inherit; }
|
|
30
|
+
|
|
31
|
+
.hidden { display: none; }
|
|
32
|
+
|
|
33
|
+
header { background: #f8f8f8; width: 100%; z-index: 2; border-bottom: 1px solid #ccc; }
|
|
34
|
+
|
|
35
|
+
@media (prefers-color-scheme: dark) { header { background: black; } }
|
|
36
|
+
|
|
37
|
+
@media (prefers-color-scheme: dark) { header { border-color: #333; } }
|
|
38
|
+
|
|
39
|
+
header .content { padding: 1rem 3.5rem; }
|
|
40
|
+
|
|
41
|
+
header h2 { margin-top: .5em; font-size: 1em; }
|
|
42
|
+
|
|
43
|
+
header h2 a.button { font-family: inherit; font-size: inherit; border: 1px solid; border-radius: .2em; background: #eee; color: inherit; text-decoration: none; padding: .1em .5em; margin: 1px calc(.1em + 1px); cursor: pointer; border-color: #ccc; }
|
|
44
|
+
|
|
45
|
+
@media (prefers-color-scheme: dark) { header h2 a.button { background: #333; } }
|
|
46
|
+
|
|
47
|
+
@media (prefers-color-scheme: dark) { header h2 a.button { border-color: #444; } }
|
|
48
|
+
|
|
49
|
+
header h2 a.button.current { border: 2px solid; background: #fff; border-color: #999; cursor: default; }
|
|
50
|
+
|
|
51
|
+
@media (prefers-color-scheme: dark) { header h2 a.button.current { background: #1e1e1e; } }
|
|
52
|
+
|
|
53
|
+
@media (prefers-color-scheme: dark) { header h2 a.button.current { border-color: #777; } }
|
|
54
|
+
|
|
55
|
+
header p.text { margin: .5em 0 -.5em; color: #666; font-style: italic; }
|
|
56
|
+
|
|
57
|
+
@media (prefers-color-scheme: dark) { header p.text { color: #aaa; } }
|
|
58
|
+
|
|
59
|
+
header.sticky { position: fixed; left: 0; right: 0; height: 2.5em; }
|
|
60
|
+
|
|
61
|
+
header.sticky .text { display: none; }
|
|
62
|
+
|
|
63
|
+
header.sticky h1, header.sticky h2 { font-size: 1em; margin-top: 0; display: inline-block; }
|
|
64
|
+
|
|
65
|
+
header.sticky .content { padding: 0.5rem 3.5rem; }
|
|
66
|
+
|
|
67
|
+
header.sticky .content p { font-size: 1em; }
|
|
68
|
+
|
|
69
|
+
header.sticky ~ #source { padding-top: 6.5em; }
|
|
70
|
+
|
|
71
|
+
main { position: relative; z-index: 1; }
|
|
72
|
+
|
|
73
|
+
footer { margin: 1rem 3.5rem; }
|
|
74
|
+
|
|
75
|
+
footer .content { padding: 0; color: #666; font-style: italic; }
|
|
76
|
+
|
|
77
|
+
@media (prefers-color-scheme: dark) { footer .content { color: #aaa; } }
|
|
78
|
+
|
|
79
|
+
#index { margin: 1rem 0 0 3.5rem; }
|
|
80
|
+
|
|
81
|
+
h1 { font-size: 1.25em; display: inline-block; }
|
|
82
|
+
|
|
83
|
+
#filter_container { float: right; margin: 0 2em 0 0; line-height: 1.66em; }
|
|
84
|
+
|
|
85
|
+
#filter_container #filter { width: 10em; padding: 0.2em 0.5em; border: 2px solid #ccc; background: #fff; color: #000; }
|
|
86
|
+
|
|
87
|
+
@media (prefers-color-scheme: dark) { #filter_container #filter { border-color: #444; } }
|
|
88
|
+
|
|
89
|
+
@media (prefers-color-scheme: dark) { #filter_container #filter { background: #1e1e1e; } }
|
|
90
|
+
|
|
91
|
+
@media (prefers-color-scheme: dark) { #filter_container #filter { color: #eee; } }
|
|
92
|
+
|
|
93
|
+
#filter_container #filter:focus { border-color: #007acc; }
|
|
94
|
+
|
|
95
|
+
#filter_container :disabled ~ label { color: #ccc; }
|
|
96
|
+
|
|
97
|
+
@media (prefers-color-scheme: dark) { #filter_container :disabled ~ label { color: #444; } }
|
|
98
|
+
|
|
99
|
+
#filter_container label { font-size: .875em; color: #666; }
|
|
100
|
+
|
|
101
|
+
@media (prefers-color-scheme: dark) { #filter_container label { color: #aaa; } }
|
|
102
|
+
|
|
103
|
+
header button { font-family: inherit; font-size: inherit; border: 1px solid; border-radius: .2em; background: #eee; color: inherit; text-decoration: none; padding: .1em .5em; margin: 1px calc(.1em + 1px); cursor: pointer; border-color: #ccc; }
|
|
104
|
+
|
|
105
|
+
@media (prefers-color-scheme: dark) { header button { background: #333; } }
|
|
106
|
+
|
|
107
|
+
@media (prefers-color-scheme: dark) { header button { border-color: #444; } }
|
|
108
|
+
|
|
109
|
+
header button:active, header button:focus { outline: 2px dashed #007acc; }
|
|
110
|
+
|
|
111
|
+
header button.run { background: #eeffee; }
|
|
112
|
+
|
|
113
|
+
@media (prefers-color-scheme: dark) { header button.run { background: #373d29; } }
|
|
114
|
+
|
|
115
|
+
header button.run.show_run { background: #dfd; border: 2px solid #00dd00; margin: 0 .1em; }
|
|
116
|
+
|
|
117
|
+
@media (prefers-color-scheme: dark) { header button.run.show_run { background: #373d29; } }
|
|
118
|
+
|
|
119
|
+
header button.mis { background: #ffeeee; }
|
|
120
|
+
|
|
121
|
+
@media (prefers-color-scheme: dark) { header button.mis { background: #4b1818; } }
|
|
122
|
+
|
|
123
|
+
header button.mis.show_mis { background: #fdd; border: 2px solid #ff0000; margin: 0 .1em; }
|
|
124
|
+
|
|
125
|
+
@media (prefers-color-scheme: dark) { header button.mis.show_mis { background: #4b1818; } }
|
|
126
|
+
|
|
127
|
+
header button.exc { background: #f7f7f7; }
|
|
128
|
+
|
|
129
|
+
@media (prefers-color-scheme: dark) { header button.exc { background: #333; } }
|
|
130
|
+
|
|
131
|
+
header button.exc.show_exc { background: #eee; border: 2px solid #808080; margin: 0 .1em; }
|
|
132
|
+
|
|
133
|
+
@media (prefers-color-scheme: dark) { header button.exc.show_exc { background: #333; } }
|
|
134
|
+
|
|
135
|
+
header button.par { background: #ffffd5; }
|
|
136
|
+
|
|
137
|
+
@media (prefers-color-scheme: dark) { header button.par { background: #650; } }
|
|
138
|
+
|
|
139
|
+
header button.par.show_par { background: #ffa; border: 2px solid #bbbb00; margin: 0 .1em; }
|
|
140
|
+
|
|
141
|
+
@media (prefers-color-scheme: dark) { header button.par.show_par { background: #650; } }
|
|
142
|
+
|
|
143
|
+
#help_panel, #source p .annotate.long { display: none; position: absolute; z-index: 999; background: #ffffcc; border: 1px solid #888; border-radius: .2em; color: #333; padding: .25em .5em; }
|
|
144
|
+
|
|
145
|
+
#source p .annotate.long { white-space: normal; float: right; top: 1.75em; right: 1em; height: auto; }
|
|
146
|
+
|
|
147
|
+
#help_panel_wrapper { float: right; position: relative; }
|
|
148
|
+
|
|
149
|
+
#keyboard_icon { margin: 5px; }
|
|
150
|
+
|
|
151
|
+
#help_panel_state { display: none; }
|
|
152
|
+
|
|
153
|
+
#help_panel { top: 25px; right: 0; padding: .75em; border: 1px solid #883; color: #333; }
|
|
154
|
+
|
|
155
|
+
#help_panel .keyhelp p { margin-top: .75em; }
|
|
156
|
+
|
|
157
|
+
#help_panel .legend { font-style: italic; margin-bottom: 1em; }
|
|
158
|
+
|
|
159
|
+
.indexfile #help_panel { width: 25em; }
|
|
160
|
+
|
|
161
|
+
.pyfile #help_panel { width: 18em; }
|
|
162
|
+
|
|
163
|
+
#help_panel_state:checked ~ #help_panel { display: block; }
|
|
164
|
+
|
|
165
|
+
kbd { border: 1px solid black; border-color: #888 #333 #333 #888; padding: .1em .35em; font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-weight: bold; background: #eee; border-radius: 3px; }
|
|
166
|
+
|
|
167
|
+
#source { padding: 1em 0 1em 3.5rem; font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
|
|
168
|
+
|
|
169
|
+
#source p { position: relative; white-space: pre; }
|
|
170
|
+
|
|
171
|
+
#source p * { box-sizing: border-box; }
|
|
172
|
+
|
|
173
|
+
#source p .n { float: left; text-align: right; width: 3.5rem; box-sizing: border-box; margin-left: -3.5rem; padding-right: 1em; color: #999; user-select: none; }
|
|
174
|
+
|
|
175
|
+
@media (prefers-color-scheme: dark) { #source p .n { color: #777; } }
|
|
176
|
+
|
|
177
|
+
#source p .n.highlight { background: #ffdd00; }
|
|
178
|
+
|
|
179
|
+
#source p .n a { scroll-margin-top: 6em; text-decoration: none; color: #999; }
|
|
180
|
+
|
|
181
|
+
@media (prefers-color-scheme: dark) { #source p .n a { color: #777; } }
|
|
182
|
+
|
|
183
|
+
#source p .n a:hover { text-decoration: underline; color: #999; }
|
|
184
|
+
|
|
185
|
+
@media (prefers-color-scheme: dark) { #source p .n a:hover { color: #777; } }
|
|
186
|
+
|
|
187
|
+
#source p .t { display: inline-block; width: 100%; box-sizing: border-box; margin-left: -.5em; padding-left: 0.3em; border-left: 0.2em solid #fff; }
|
|
188
|
+
|
|
189
|
+
@media (prefers-color-scheme: dark) { #source p .t { border-color: #1e1e1e; } }
|
|
190
|
+
|
|
191
|
+
#source p .t:hover { background: #f2f2f2; }
|
|
192
|
+
|
|
193
|
+
@media (prefers-color-scheme: dark) { #source p .t:hover { background: #282828; } }
|
|
194
|
+
|
|
195
|
+
#source p .t:hover ~ .r .annotate.long { display: block; }
|
|
196
|
+
|
|
197
|
+
#source p .t .com { color: #008000; font-style: italic; line-height: 1px; }
|
|
198
|
+
|
|
199
|
+
@media (prefers-color-scheme: dark) { #source p .t .com { color: #6a9955; } }
|
|
200
|
+
|
|
201
|
+
#source p .t .key { font-weight: bold; line-height: 1px; }
|
|
202
|
+
|
|
203
|
+
#source p .t .str, #source p .t .fst { color: #0451a5; }
|
|
204
|
+
|
|
205
|
+
@media (prefers-color-scheme: dark) { #source p .t .str, #source p .t .fst { color: #9cdcfe; } }
|
|
206
|
+
|
|
207
|
+
#source p.mis .t { border-left: 0.2em solid #ff0000; }
|
|
208
|
+
|
|
209
|
+
#source p.mis.show_mis .t { background: #fdd; }
|
|
210
|
+
|
|
211
|
+
@media (prefers-color-scheme: dark) { #source p.mis.show_mis .t { background: #4b1818; } }
|
|
212
|
+
|
|
213
|
+
#source p.mis.show_mis .t:hover { background: #f2d2d2; }
|
|
214
|
+
|
|
215
|
+
@media (prefers-color-scheme: dark) { #source p.mis.show_mis .t:hover { background: #532323; } }
|
|
216
|
+
|
|
217
|
+
#source p.mis.mis2 .t { border-left: 0.2em dotted #ff0000; }
|
|
218
|
+
|
|
219
|
+
#source p.mis.mis2.show_mis .t { background: #ffeeee; }
|
|
220
|
+
|
|
221
|
+
@media (prefers-color-scheme: dark) { #source p.mis.mis2.show_mis .t { background: #351b1b; } }
|
|
222
|
+
|
|
223
|
+
#source p.mis.mis2.show_mis .t:hover { background: #f2d2d2; }
|
|
224
|
+
|
|
225
|
+
@media (prefers-color-scheme: dark) { #source p.mis.mis2.show_mis .t:hover { background: #532323; } }
|
|
226
|
+
|
|
227
|
+
#source p.run .t { border-left: 0.2em solid #00dd00; }
|
|
228
|
+
|
|
229
|
+
#source p.run.show_run .t { background: #dfd; }
|
|
230
|
+
|
|
231
|
+
@media (prefers-color-scheme: dark) { #source p.run.show_run .t { background: #373d29; } }
|
|
232
|
+
|
|
233
|
+
#source p.run.show_run .t:hover { background: #d2f2d2; }
|
|
234
|
+
|
|
235
|
+
@media (prefers-color-scheme: dark) { #source p.run.show_run .t:hover { background: #404633; } }
|
|
236
|
+
|
|
237
|
+
#source p.run.run2 .t { border-left: 0.2em dotted #00dd00; }
|
|
238
|
+
|
|
239
|
+
#source p.run.run2.show_run .t { background: #eeffee; }
|
|
240
|
+
|
|
241
|
+
@media (prefers-color-scheme: dark) { #source p.run.run2.show_run .t { background: #2b2e24; } }
|
|
242
|
+
|
|
243
|
+
#source p.run.run2.show_run .t:hover { background: #d2f2d2; }
|
|
244
|
+
|
|
245
|
+
@media (prefers-color-scheme: dark) { #source p.run.run2.show_run .t:hover { background: #404633; } }
|
|
246
|
+
|
|
247
|
+
#source p.exc .t { border-left: 0.2em solid #808080; }
|
|
248
|
+
|
|
249
|
+
#source p.exc.show_exc .t { background: #eee; }
|
|
250
|
+
|
|
251
|
+
@media (prefers-color-scheme: dark) { #source p.exc.show_exc .t { background: #333; } }
|
|
252
|
+
|
|
253
|
+
#source p.exc.show_exc .t:hover { background: #e2e2e2; }
|
|
254
|
+
|
|
255
|
+
@media (prefers-color-scheme: dark) { #source p.exc.show_exc .t:hover { background: #3c3c3c; } }
|
|
256
|
+
|
|
257
|
+
#source p.exc.exc2 .t { border-left: 0.2em dotted #808080; }
|
|
258
|
+
|
|
259
|
+
#source p.exc.exc2.show_exc .t { background: #f7f7f7; }
|
|
260
|
+
|
|
261
|
+
@media (prefers-color-scheme: dark) { #source p.exc.exc2.show_exc .t { background: #292929; } }
|
|
262
|
+
|
|
263
|
+
#source p.exc.exc2.show_exc .t:hover { background: #e2e2e2; }
|
|
264
|
+
|
|
265
|
+
@media (prefers-color-scheme: dark) { #source p.exc.exc2.show_exc .t:hover { background: #3c3c3c; } }
|
|
266
|
+
|
|
267
|
+
#source p.par .t { border-left: 0.2em solid #bbbb00; }
|
|
268
|
+
|
|
269
|
+
#source p.par.show_par .t { background: #ffa; }
|
|
270
|
+
|
|
271
|
+
@media (prefers-color-scheme: dark) { #source p.par.show_par .t { background: #650; } }
|
|
272
|
+
|
|
273
|
+
#source p.par.show_par .t:hover { background: #f2f2a2; }
|
|
274
|
+
|
|
275
|
+
@media (prefers-color-scheme: dark) { #source p.par.show_par .t:hover { background: #6d5d0c; } }
|
|
276
|
+
|
|
277
|
+
#source p.par.par2 .t { border-left: 0.2em dotted #bbbb00; }
|
|
278
|
+
|
|
279
|
+
#source p.par.par2.show_par .t { background: #ffffd5; }
|
|
280
|
+
|
|
281
|
+
@media (prefers-color-scheme: dark) { #source p.par.par2.show_par .t { background: #423a0f; } }
|
|
282
|
+
|
|
283
|
+
#source p.par.par2.show_par .t:hover { background: #f2f2a2; }
|
|
284
|
+
|
|
285
|
+
@media (prefers-color-scheme: dark) { #source p.par.par2.show_par .t:hover { background: #6d5d0c; } }
|
|
286
|
+
|
|
287
|
+
#source p .r { position: absolute; top: 0; right: 2.5em; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
|
|
288
|
+
|
|
289
|
+
#source p .annotate { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; color: #666; padding-right: .5em; }
|
|
290
|
+
|
|
291
|
+
@media (prefers-color-scheme: dark) { #source p .annotate { color: #ddd; } }
|
|
292
|
+
|
|
293
|
+
#source p .annotate.short:hover ~ .long { display: block; }
|
|
294
|
+
|
|
295
|
+
#source p .annotate.long { width: 30em; right: 2.5em; }
|
|
296
|
+
|
|
297
|
+
#source p input { display: none; }
|
|
298
|
+
|
|
299
|
+
#source p input ~ .r label.ctx { cursor: pointer; border-radius: .25em; }
|
|
300
|
+
|
|
301
|
+
#source p input ~ .r label.ctx::before { content: "▶ "; }
|
|
302
|
+
|
|
303
|
+
#source p input ~ .r label.ctx:hover { background: #e8f4ff; color: #666; }
|
|
304
|
+
|
|
305
|
+
@media (prefers-color-scheme: dark) { #source p input ~ .r label.ctx:hover { background: #0f3a42; } }
|
|
306
|
+
|
|
307
|
+
@media (prefers-color-scheme: dark) { #source p input ~ .r label.ctx:hover { color: #aaa; } }
|
|
308
|
+
|
|
309
|
+
#source p input:checked ~ .r label.ctx { background: #d0e8ff; color: #666; border-radius: .75em .75em 0 0; padding: 0 .5em; margin: -.25em 0; }
|
|
310
|
+
|
|
311
|
+
@media (prefers-color-scheme: dark) { #source p input:checked ~ .r label.ctx { background: #056; } }
|
|
312
|
+
|
|
313
|
+
@media (prefers-color-scheme: dark) { #source p input:checked ~ .r label.ctx { color: #aaa; } }
|
|
314
|
+
|
|
315
|
+
#source p input:checked ~ .r label.ctx::before { content: "▼ "; }
|
|
316
|
+
|
|
317
|
+
#source p input:checked ~ .ctxs { padding: .25em .5em; overflow-y: scroll; max-height: 10.5em; }
|
|
318
|
+
|
|
319
|
+
#source p label.ctx { color: #999; display: inline-block; padding: 0 .5em; font-size: .8333em; }
|
|
320
|
+
|
|
321
|
+
@media (prefers-color-scheme: dark) { #source p label.ctx { color: #777; } }
|
|
322
|
+
|
|
323
|
+
#source p .ctxs { display: block; max-height: 0; overflow-y: hidden; transition: all .2s; padding: 0 .5em; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; white-space: nowrap; background: #d0e8ff; border-radius: .25em; margin-right: 1.75em; text-align: right; }
|
|
324
|
+
|
|
325
|
+
@media (prefers-color-scheme: dark) { #source p .ctxs { background: #056; } }
|
|
326
|
+
|
|
327
|
+
#index { font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 0.875em; }
|
|
328
|
+
|
|
329
|
+
#index table.index { margin-left: -.5em; }
|
|
330
|
+
|
|
331
|
+
#index td, #index th { text-align: right; padding: .25em .5em; border-bottom: 1px solid #eee; }
|
|
332
|
+
|
|
333
|
+
@media (prefers-color-scheme: dark) { #index td, #index th { border-color: #333; } }
|
|
334
|
+
|
|
335
|
+
#index td.name, #index th.name { text-align: left; width: auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; min-width: 15em; }
|
|
336
|
+
|
|
337
|
+
#index th { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-style: italic; color: #333; cursor: pointer; }
|
|
338
|
+
|
|
339
|
+
@media (prefers-color-scheme: dark) { #index th { color: #ddd; } }
|
|
340
|
+
|
|
341
|
+
#index th:hover { background: #eee; }
|
|
342
|
+
|
|
343
|
+
@media (prefers-color-scheme: dark) { #index th:hover { background: #333; } }
|
|
344
|
+
|
|
345
|
+
#index th .arrows { color: #666; font-size: 85%; font-family: sans-serif; font-style: normal; pointer-events: none; }
|
|
346
|
+
|
|
347
|
+
#index th[aria-sort="ascending"], #index th[aria-sort="descending"] { white-space: nowrap; background: #eee; padding-left: .5em; }
|
|
348
|
+
|
|
349
|
+
@media (prefers-color-scheme: dark) { #index th[aria-sort="ascending"], #index th[aria-sort="descending"] { background: #333; } }
|
|
350
|
+
|
|
351
|
+
#index th[aria-sort="ascending"] .arrows::after { content: " ▲"; }
|
|
352
|
+
|
|
353
|
+
#index th[aria-sort="descending"] .arrows::after { content: " ▼"; }
|
|
354
|
+
|
|
355
|
+
#index td.name { font-size: 1.15em; }
|
|
356
|
+
|
|
357
|
+
#index td.name a { text-decoration: none; color: inherit; }
|
|
358
|
+
|
|
359
|
+
#index td.name .no-noun { font-style: italic; }
|
|
360
|
+
|
|
361
|
+
#index tr.total td, #index tr.total_dynamic td { font-weight: bold; border-top: 1px solid #ccc; border-bottom: none; }
|
|
362
|
+
|
|
363
|
+
#index tr.region:hover { background: #eee; }
|
|
364
|
+
|
|
365
|
+
@media (prefers-color-scheme: dark) { #index tr.region:hover { background: #333; } }
|
|
366
|
+
|
|
367
|
+
#index tr.region:hover td.name { text-decoration: underline; color: inherit; }
|
|
368
|
+
|
|
369
|
+
#scroll_marker { position: fixed; z-index: 3; right: 0; top: 0; width: 16px; height: 100%; background: #fff; border-left: 1px solid #eee; will-change: transform; }
|
|
370
|
+
|
|
371
|
+
@media (prefers-color-scheme: dark) { #scroll_marker { background: #1e1e1e; } }
|
|
372
|
+
|
|
373
|
+
@media (prefers-color-scheme: dark) { #scroll_marker { border-color: #333; } }
|
|
374
|
+
|
|
375
|
+
#scroll_marker .marker { background: #ccc; position: absolute; min-height: 3px; width: 100%; }
|
|
376
|
+
|
|
377
|
+
@media (prefers-color-scheme: dark) { #scroll_marker .marker { background: #444; } }
|