decidim-api 0.27.10 → 0.28.0.rc4
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.
- checksums.yaml +4 -4
- data/app/controllers/decidim/api/queries_controller.rb +3 -3
- data/app/packs/entrypoints/decidim_api_docs.scss +312 -312
- data/app/packs/entrypoints/decidim_api_graphiql.js +3 -0
- data/app/packs/entrypoints/decidim_api_graphiql.scss +1 -3
- data/app/views/decidim/api/documentation/graphql_docs_template.html.erb +1 -1
- data/docs/usage.md +41 -45
- data/lib/decidim/api/engine.rb +5 -5
- data/lib/decidim/api/test/type_context.rb +4 -4
- data/lib/decidim/api/version.rb +1 -1
- data/lib/tasks/decidim_api_docs.rake +1 -1
- metadata +49 -31
- data/decidim-api.gemspec +0 -36
@@ -1,10 +1,10 @@
|
|
1
|
-
body{
|
1
|
+
body {
|
2
2
|
max-width: 1200px;
|
3
3
|
}
|
4
4
|
|
5
|
-
.version{
|
5
|
+
.version {
|
6
6
|
display: inline-block;
|
7
|
-
font-size: .8rem;
|
7
|
+
font-size: 0.8rem;
|
8
8
|
margin-right: 1rem;
|
9
9
|
padding: 3px 7px;
|
10
10
|
background: #f33;
|
@@ -14,31 +14,31 @@ body{
|
|
14
14
|
}
|
15
15
|
|
16
16
|
ol,
|
17
|
-
ul{
|
17
|
+
ul {
|
18
18
|
list-style: none;
|
19
19
|
padding-left: 15px;
|
20
20
|
}
|
21
21
|
|
22
22
|
blockquote,
|
23
|
-
q{
|
23
|
+
q {
|
24
24
|
quotes: none;
|
25
25
|
}
|
26
26
|
|
27
27
|
blockquote::before,
|
28
28
|
blockquote::after,
|
29
29
|
q::before,
|
30
|
-
q::after{
|
31
|
-
content:
|
30
|
+
q::after {
|
31
|
+
content: "";
|
32
32
|
content: none;
|
33
33
|
}
|
34
34
|
|
35
|
-
table{
|
35
|
+
table {
|
36
36
|
border-collapse: collapse;
|
37
37
|
border-spacing: 0;
|
38
38
|
}
|
39
39
|
|
40
|
-
body{
|
41
|
-
font-family:
|
40
|
+
body {
|
41
|
+
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
42
42
|
-webkit-font-smoothing: antialiased;
|
43
43
|
-moz-osx-font-smoothing: grayscale;
|
44
44
|
font-size: 16px;
|
@@ -46,11 +46,11 @@ body{
|
|
46
46
|
color: #444;
|
47
47
|
}
|
48
48
|
|
49
|
-
em{
|
49
|
+
em {
|
50
50
|
font-style: italic;
|
51
51
|
}
|
52
52
|
|
53
|
-
#sidebar{
|
53
|
+
#sidebar {
|
54
54
|
background-color: #fff;
|
55
55
|
position: fixed;
|
56
56
|
z-index: 2;
|
@@ -68,53 +68,53 @@ em{
|
|
68
68
|
line-height: 1.1em;
|
69
69
|
}
|
70
70
|
|
71
|
-
#sidebar::-webkit-scrollbar{
|
71
|
+
#sidebar::-webkit-scrollbar {
|
72
72
|
width: 0 !important;
|
73
73
|
}
|
74
74
|
|
75
|
-
#sidebar li{
|
76
|
-
margin-bottom: .6em;
|
75
|
+
#sidebar li {
|
76
|
+
margin-bottom: 0.6em;
|
77
77
|
}
|
78
78
|
|
79
|
-
#sidebar a{
|
79
|
+
#sidebar a {
|
80
80
|
color: #444;
|
81
81
|
text-decoration: none;
|
82
82
|
}
|
83
83
|
|
84
|
-
#sidebar a:hover{
|
84
|
+
#sidebar a:hover {
|
85
85
|
color: #de4f4f;
|
86
86
|
}
|
87
87
|
|
88
|
-
#sidebar a.current{
|
88
|
+
#sidebar a.current {
|
89
89
|
color: #de4f4f;
|
90
90
|
}
|
91
91
|
|
92
|
-
#sidebar a.H2{
|
92
|
+
#sidebar a.H2 {
|
93
93
|
font-weight: bold;
|
94
94
|
}
|
95
95
|
|
96
|
-
#sidebar .categories > li > p{
|
96
|
+
#sidebar .categories > li > p {
|
97
97
|
margin-top: 1.5em;
|
98
98
|
border-top: 1px solid #eee;
|
99
99
|
text-transform: uppercase;
|
100
100
|
padding-top: 1.2em;
|
101
101
|
margin-bottom: 1em;
|
102
102
|
color: #999;
|
103
|
-
font-size: .8em;
|
103
|
+
font-size: 0.8em;
|
104
104
|
}
|
105
105
|
|
106
|
-
#sidebar .sub-menu{
|
106
|
+
#sidebar .sub-menu {
|
107
107
|
padding-left: 20px;
|
108
|
-
margin: .6em 0;
|
108
|
+
margin: 0.6em 0;
|
109
109
|
font-size: 14px;
|
110
110
|
}
|
111
111
|
|
112
|
-
#sidebar .sub-menu .active{
|
112
|
+
#sidebar .sub-menu .active {
|
113
113
|
position: relative;
|
114
114
|
color: #de4f4f;
|
115
115
|
}
|
116
116
|
|
117
|
-
#sidebar .sub-menu .active::before{
|
117
|
+
#sidebar .sub-menu .active::before {
|
118
118
|
content: "";
|
119
119
|
position: absolute;
|
120
120
|
top: 2px;
|
@@ -127,28 +127,28 @@ em{
|
|
127
127
|
border-left: 6px solid #de4f4f;
|
128
128
|
}
|
129
129
|
|
130
|
-
#sidebar-mobile{
|
130
|
+
#sidebar-mobile {
|
131
131
|
display: none;
|
132
132
|
margin-bottom: 20px;
|
133
133
|
}
|
134
134
|
|
135
|
-
#sidebar-mobile .search-box{
|
135
|
+
#sidebar-mobile .search-box {
|
136
136
|
width: 200px;
|
137
137
|
margin-bottom: 20px;
|
138
138
|
}
|
139
139
|
|
140
|
-
.content{
|
140
|
+
.content {
|
141
141
|
padding: 20px 30px;
|
142
142
|
max-width: 760px;
|
143
143
|
margin-left: 300px;
|
144
144
|
-webkit-text-size-adjust: 100%;
|
145
145
|
}
|
146
146
|
|
147
|
-
.content em{
|
147
|
+
.content em {
|
148
148
|
font-style: italic;
|
149
149
|
}
|
150
150
|
|
151
|
-
.content h1{
|
151
|
+
.content h1 {
|
152
152
|
margin: 15px 0;
|
153
153
|
line-height: 1.4em;
|
154
154
|
font-size: 2em;
|
@@ -156,7 +156,7 @@ em{
|
|
156
156
|
margin-bottom: 30px;
|
157
157
|
}
|
158
158
|
|
159
|
-
.content h2{
|
159
|
+
.content h2 {
|
160
160
|
margin: 15px 0;
|
161
161
|
line-height: 1.4em;
|
162
162
|
font-size: 1.5em;
|
@@ -166,7 +166,7 @@ em{
|
|
166
166
|
position: relative;
|
167
167
|
}
|
168
168
|
|
169
|
-
.content h2 .anchor{
|
169
|
+
.content h2 .anchor {
|
170
170
|
opacity: 0;
|
171
171
|
position: absolute;
|
172
172
|
font-size: 16px;
|
@@ -174,11 +174,11 @@ em{
|
|
174
174
|
left: -21px;
|
175
175
|
}
|
176
176
|
|
177
|
-
.content h2:hover .anchor{
|
177
|
+
.content h2:hover .anchor {
|
178
178
|
opacity: 1;
|
179
179
|
}
|
180
180
|
|
181
|
-
.content h3{
|
181
|
+
.content h3 {
|
182
182
|
margin: 15px 0;
|
183
183
|
line-height: 1.4em;
|
184
184
|
font-size: 1.2em;
|
@@ -186,7 +186,7 @@ em{
|
|
186
186
|
position: relative;
|
187
187
|
}
|
188
188
|
|
189
|
-
.content h3 .anchor{
|
189
|
+
.content h3 .anchor {
|
190
190
|
opacity: 0;
|
191
191
|
position: absolute;
|
192
192
|
font-size: 16px;
|
@@ -194,124 +194,124 @@ em{
|
|
194
194
|
left: -21px;
|
195
195
|
}
|
196
196
|
|
197
|
-
.content h3:hover .anchor{
|
197
|
+
.content h3:hover .anchor {
|
198
198
|
opacity: 1;
|
199
199
|
}
|
200
200
|
|
201
|
-
.content h4{
|
201
|
+
.content h4 {
|
202
202
|
margin: 15px 0;
|
203
203
|
line-height: 1.4em;
|
204
204
|
}
|
205
205
|
|
206
|
-
.content h5{
|
206
|
+
.content h5 {
|
207
207
|
margin: 15px 0;
|
208
208
|
line-height: 1.4em;
|
209
209
|
}
|
210
210
|
|
211
|
-
.content h6{
|
211
|
+
.content h6 {
|
212
212
|
margin: 15px 0;
|
213
213
|
line-height: 1.4em;
|
214
214
|
}
|
215
215
|
|
216
|
-
.content p{
|
216
|
+
.content p {
|
217
217
|
margin: 15px 0;
|
218
218
|
line-height: 1.4em;
|
219
219
|
}
|
220
220
|
|
221
|
-
.content ul{
|
221
|
+
.content ul {
|
222
222
|
margin: 15px 0;
|
223
223
|
line-height: 1.4em;
|
224
224
|
padding-left: 1.5em;
|
225
225
|
list-style-type: disc;
|
226
226
|
}
|
227
227
|
|
228
|
-
.content ul li{
|
228
|
+
.content ul li {
|
229
229
|
margin-bottom: 5px;
|
230
230
|
}
|
231
231
|
|
232
|
-
.content ol{
|
232
|
+
.content ol {
|
233
233
|
margin: 15px 0;
|
234
234
|
line-height: 1.4em;
|
235
235
|
padding-left: 1.5em;
|
236
236
|
list-style-type: decimal;
|
237
237
|
}
|
238
238
|
|
239
|
-
.content ol li{
|
239
|
+
.content ol li {
|
240
240
|
margin-bottom: 5px;
|
241
241
|
}
|
242
242
|
|
243
|
-
.content figure{
|
243
|
+
.content figure {
|
244
244
|
margin: 15px 0;
|
245
245
|
line-height: 1.4em;
|
246
246
|
}
|
247
247
|
|
248
|
-
.content a{
|
248
|
+
.content a {
|
249
249
|
color: #de4f4f;
|
250
250
|
}
|
251
251
|
|
252
|
-
.content img{
|
252
|
+
.content img {
|
253
253
|
max-width: 100%;
|
254
254
|
}
|
255
255
|
|
256
|
-
.content code{
|
256
|
+
.content code {
|
257
257
|
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
258
|
-
font-size: .8em;
|
258
|
+
font-size: 0.8em;
|
259
259
|
line-height: 1.6em;
|
260
260
|
padding: 1px 4px;
|
261
261
|
background-color: #eee;
|
262
262
|
margin: 0 2px;
|
263
263
|
}
|
264
264
|
|
265
|
-
.content blockquote{
|
265
|
+
.content blockquote {
|
266
266
|
padding-left: 1.3em;
|
267
|
-
border-left: #eee solid .2em;
|
267
|
+
border-left: #eee solid 0.2em;
|
268
268
|
font-style: italic;
|
269
269
|
}
|
270
270
|
|
271
|
-
.content blockquote.warning{
|
271
|
+
.content blockquote.warning {
|
272
272
|
border-color: #f00;
|
273
273
|
color: #f00;
|
274
274
|
}
|
275
275
|
|
276
|
-
.content dl{
|
276
|
+
.content dl {
|
277
277
|
margin-left: 1.5em;
|
278
278
|
}
|
279
279
|
|
280
|
-
.content dl dt .name{
|
280
|
+
.content dl dt .name {
|
281
281
|
font-family: monospace;
|
282
282
|
}
|
283
283
|
|
284
|
-
.content dl dt .type{
|
285
|
-
margin-left: .5em;
|
284
|
+
.content dl dt .type {
|
285
|
+
margin-left: 0.5em;
|
286
286
|
}
|
287
287
|
|
288
|
-
.content dl dd{
|
288
|
+
.content dl dd {
|
289
289
|
margin-left: 1.5em;
|
290
290
|
}
|
291
291
|
|
292
|
-
.content .edit-discuss-links{
|
292
|
+
.content .edit-discuss-links {
|
293
293
|
margin-top: -25px;
|
294
294
|
margin-bottom: 40px;
|
295
295
|
}
|
296
296
|
|
297
|
-
.content table{
|
297
|
+
.content table {
|
298
298
|
margin-top: 10px;
|
299
299
|
}
|
300
300
|
|
301
|
-
.content table th{
|
301
|
+
.content table th {
|
302
302
|
text-align: left;
|
303
303
|
padding: 0 25px;
|
304
304
|
}
|
305
305
|
|
306
|
-
.content table thead th:first-child{
|
306
|
+
.content table thead th:first-child {
|
307
307
|
padding: 0;
|
308
308
|
}
|
309
309
|
|
310
|
-
.content table td p{
|
310
|
+
.content table td p {
|
311
311
|
padding: 0 25px;
|
312
312
|
}
|
313
313
|
|
314
|
-
.content pre{
|
314
|
+
.content pre {
|
315
315
|
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
316
316
|
line-height: 1.6em;
|
317
317
|
margin: 20px 0;
|
@@ -320,46 +320,46 @@ em{
|
|
320
320
|
padding: 20px 30px;
|
321
321
|
}
|
322
322
|
|
323
|
-
.content pre table{
|
323
|
+
.content pre table {
|
324
324
|
width: 100%;
|
325
325
|
border-collapse: collapse;
|
326
326
|
padding: 0;
|
327
327
|
margin: 0;
|
328
328
|
}
|
329
329
|
|
330
|
-
.content pre tr{
|
330
|
+
.content pre tr {
|
331
331
|
width: 100%;
|
332
332
|
border-collapse: collapse;
|
333
333
|
padding: 0;
|
334
334
|
margin: 0;
|
335
335
|
}
|
336
336
|
|
337
|
-
.content pre td{
|
337
|
+
.content pre td {
|
338
338
|
width: 100%;
|
339
339
|
border-collapse: collapse;
|
340
340
|
padding: 0;
|
341
341
|
margin: 0;
|
342
342
|
}
|
343
343
|
|
344
|
-
.content pre code{
|
344
|
+
.content pre code {
|
345
345
|
background-color: #272822;
|
346
346
|
padding: 0;
|
347
347
|
margin: 0;
|
348
348
|
}
|
349
349
|
|
350
|
-
.content pre .gutter{
|
350
|
+
.content pre .gutter {
|
351
351
|
user-select: none;
|
352
352
|
width: 1.5em;
|
353
353
|
padding-right: 30px;
|
354
354
|
}
|
355
355
|
|
356
|
-
.content .highlight.html .code::after{
|
356
|
+
.content .highlight.html .code::after {
|
357
357
|
position: absolute;
|
358
358
|
top: 0;
|
359
359
|
right: 0;
|
360
360
|
color: #ccc;
|
361
361
|
text-align: right;
|
362
|
-
font-size: .75em;
|
362
|
+
font-size: 0.75em;
|
363
363
|
padding: 5px 10px 0;
|
364
364
|
letter-spacing: 1.5px;
|
365
365
|
line-height: 15px;
|
@@ -367,13 +367,13 @@ em{
|
|
367
367
|
font-weight: 600;
|
368
368
|
}
|
369
369
|
|
370
|
-
.content .highlight.js .code::after{
|
370
|
+
.content .highlight.js .code::after {
|
371
371
|
position: absolute;
|
372
372
|
top: 0;
|
373
373
|
right: 0;
|
374
374
|
color: #ccc;
|
375
375
|
text-align: right;
|
376
|
-
font-size: .75em;
|
376
|
+
font-size: 0.75em;
|
377
377
|
padding: 5px 10px 0;
|
378
378
|
letter-spacing: 1.5px;
|
379
379
|
line-height: 15px;
|
@@ -381,13 +381,13 @@ em{
|
|
381
381
|
font-weight: 600;
|
382
382
|
}
|
383
383
|
|
384
|
-
.content .highlight.bash .code::after{
|
384
|
+
.content .highlight.bash .code::after {
|
385
385
|
position: absolute;
|
386
386
|
top: 0;
|
387
387
|
right: 0;
|
388
388
|
color: #ccc;
|
389
389
|
text-align: right;
|
390
|
-
font-size: .75em;
|
390
|
+
font-size: 0.75em;
|
391
391
|
padding: 5px 10px 0;
|
392
392
|
letter-spacing: 1.5px;
|
393
393
|
line-height: 15px;
|
@@ -395,13 +395,13 @@ em{
|
|
395
395
|
font-weight: 600;
|
396
396
|
}
|
397
397
|
|
398
|
-
.content .highlight.css .code::after{
|
398
|
+
.content .highlight.css .code::after {
|
399
399
|
position: absolute;
|
400
400
|
top: 0;
|
401
401
|
right: 0;
|
402
402
|
color: #ccc;
|
403
403
|
text-align: right;
|
404
|
-
font-size: .75em;
|
404
|
+
font-size: 0.75em;
|
405
405
|
padding: 5px 10px 0;
|
406
406
|
letter-spacing: 1.5px;
|
407
407
|
line-height: 15px;
|
@@ -409,13 +409,13 @@ em{
|
|
409
409
|
font-weight: 600;
|
410
410
|
}
|
411
411
|
|
412
|
-
.content .highlight.jsx .code::after{
|
412
|
+
.content .highlight.jsx .code::after {
|
413
413
|
position: absolute;
|
414
414
|
top: 0;
|
415
415
|
right: 0;
|
416
416
|
color: #ccc;
|
417
417
|
text-align: right;
|
418
|
-
font-size: .75em;
|
418
|
+
font-size: 0.75em;
|
419
419
|
padding: 5px 10px 0;
|
420
420
|
letter-spacing: 1.5px;
|
421
421
|
line-height: 15px;
|
@@ -423,180 +423,180 @@ em{
|
|
423
423
|
font-weight: 600;
|
424
424
|
}
|
425
425
|
|
426
|
-
.content .highlight.html.html .code::after{
|
427
|
-
content:
|
426
|
+
.content .highlight.html.html .code::after {
|
427
|
+
content: "HTML";
|
428
428
|
}
|
429
429
|
|
430
|
-
.content .highlight.js.html .code::after{
|
431
|
-
content:
|
430
|
+
.content .highlight.js.html .code::after {
|
431
|
+
content: "HTML";
|
432
432
|
}
|
433
433
|
|
434
|
-
.content .highlight.bash.html .code::after{
|
435
|
-
content:
|
434
|
+
.content .highlight.bash.html .code::after {
|
435
|
+
content: "HTML";
|
436
436
|
}
|
437
437
|
|
438
|
-
.content .highlight.css.html .code::after{
|
439
|
-
content:
|
438
|
+
.content .highlight.css.html .code::after {
|
439
|
+
content: "HTML";
|
440
440
|
}
|
441
441
|
|
442
|
-
.content .highlight.jsx.html .code::after{
|
443
|
-
content:
|
442
|
+
.content .highlight.jsx.html .code::after {
|
443
|
+
content: "HTML";
|
444
444
|
}
|
445
445
|
|
446
|
-
.content .highlight.html.js .code::after{
|
447
|
-
content:
|
446
|
+
.content .highlight.html.js .code::after {
|
447
|
+
content: "JS";
|
448
448
|
}
|
449
449
|
|
450
|
-
.content .highlight.js.js .code::after{
|
451
|
-
content:
|
450
|
+
.content .highlight.js.js .code::after {
|
451
|
+
content: "JS";
|
452
452
|
}
|
453
453
|
|
454
|
-
.content .highlight.bash.js .code::after{
|
455
|
-
content:
|
454
|
+
.content .highlight.bash.js .code::after {
|
455
|
+
content: "JS";
|
456
456
|
}
|
457
457
|
|
458
|
-
.content .highlight.css.js .code::after{
|
459
|
-
content:
|
458
|
+
.content .highlight.css.js .code::after {
|
459
|
+
content: "JS";
|
460
460
|
}
|
461
461
|
|
462
|
-
.content .highlight.jsx.js .code::after{
|
463
|
-
content:
|
462
|
+
.content .highlight.jsx.js .code::after {
|
463
|
+
content: "JS";
|
464
464
|
}
|
465
465
|
|
466
|
-
.content .highlight.html.bash .code::after{
|
467
|
-
content:
|
466
|
+
.content .highlight.html.bash .code::after {
|
467
|
+
content: "Shell";
|
468
468
|
}
|
469
469
|
|
470
|
-
.content .highlight.js.bash .code::after{
|
471
|
-
content:
|
470
|
+
.content .highlight.js.bash .code::after {
|
471
|
+
content: "Shell";
|
472
472
|
}
|
473
473
|
|
474
|
-
.content .highlight.bash.bash .code::after{
|
475
|
-
content:
|
474
|
+
.content .highlight.bash.bash .code::after {
|
475
|
+
content: "Shell";
|
476
476
|
}
|
477
477
|
|
478
|
-
.content .highlight.css.bash .code::after{
|
479
|
-
content:
|
478
|
+
.content .highlight.css.bash .code::after {
|
479
|
+
content: "Shell";
|
480
480
|
}
|
481
481
|
|
482
|
-
.content .highlight.jsx.bash .code::after{
|
483
|
-
content:
|
482
|
+
.content .highlight.jsx.bash .code::after {
|
483
|
+
content: "Shell";
|
484
484
|
}
|
485
485
|
|
486
|
-
.content .highlight.html.css .code::after{
|
487
|
-
content:
|
486
|
+
.content .highlight.html.css .code::after {
|
487
|
+
content: "CSS";
|
488
488
|
}
|
489
489
|
|
490
|
-
.content .highlight.js.css .code::after{
|
491
|
-
content:
|
490
|
+
.content .highlight.js.css .code::after {
|
491
|
+
content: "CSS";
|
492
492
|
}
|
493
493
|
|
494
|
-
.content .highlight.bash.css .code::after{
|
495
|
-
content:
|
494
|
+
.content .highlight.bash.css .code::after {
|
495
|
+
content: "CSS";
|
496
496
|
}
|
497
497
|
|
498
|
-
.content .highlight.css.css .code::after{
|
499
|
-
content:
|
498
|
+
.content .highlight.css.css .code::after {
|
499
|
+
content: "CSS";
|
500
500
|
}
|
501
501
|
|
502
|
-
.content .highlight.jsx.css .code::after{
|
503
|
-
content:
|
502
|
+
.content .highlight.jsx.css .code::after {
|
503
|
+
content: "CSS";
|
504
504
|
}
|
505
505
|
|
506
|
-
.content .highlight.html.jsx .code::after{
|
507
|
-
content:
|
506
|
+
.content .highlight.html.jsx .code::after {
|
507
|
+
content: "JSX";
|
508
508
|
}
|
509
509
|
|
510
|
-
.content .highlight.js.jsx .code::after{
|
511
|
-
content:
|
510
|
+
.content .highlight.js.jsx .code::after {
|
511
|
+
content: "JSX";
|
512
512
|
}
|
513
513
|
|
514
|
-
.content .highlight.bash.jsx .code::after{
|
515
|
-
content:
|
514
|
+
.content .highlight.bash.jsx .code::after {
|
515
|
+
content: "JSX";
|
516
516
|
}
|
517
517
|
|
518
|
-
.content .highlight.css.jsx .code::after{
|
519
|
-
content:
|
518
|
+
.content .highlight.css.jsx .code::after {
|
519
|
+
content: "JSX";
|
520
520
|
}
|
521
521
|
|
522
|
-
.content .highlight.jsx.jsx .code::after{
|
523
|
-
content:
|
522
|
+
.content .highlight.jsx.jsx .code::after {
|
523
|
+
content: "JSX";
|
524
524
|
}
|
525
525
|
|
526
|
-
.content > table{
|
526
|
+
.content > table {
|
527
527
|
width: 100%;
|
528
528
|
margin: 20px 0;
|
529
529
|
}
|
530
530
|
|
531
|
-
.content > table tr{
|
531
|
+
.content > table tr {
|
532
532
|
border-top: 1px solid #eee;
|
533
533
|
}
|
534
534
|
|
535
|
-
.content > table tr:nth-child(2n){
|
535
|
+
.content > table tr:nth-child(2n) {
|
536
536
|
background-color: #f8f8f8;
|
537
537
|
}
|
538
538
|
|
539
|
-
.content > table th{
|
539
|
+
.content > table th {
|
540
540
|
padding: 12px 13px;
|
541
541
|
border: 1px solid #eee;
|
542
542
|
vertical-align: middle;
|
543
543
|
text-align: left;
|
544
544
|
}
|
545
545
|
|
546
|
-
.content > table td{
|
546
|
+
.content > table td {
|
547
547
|
border: 1px solid #eee;
|
548
548
|
vertical-align: middle;
|
549
549
|
padding: 6px 13px;
|
550
550
|
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
551
|
-
font-size: .8em;
|
551
|
+
font-size: 0.8em;
|
552
552
|
line-height: 1.6em;
|
553
553
|
}
|
554
554
|
|
555
|
-
.content .bottom-nav{
|
555
|
+
.content .bottom-nav {
|
556
556
|
height: 44px;
|
557
557
|
margin: 30px 0 25px;
|
558
558
|
border-bottom: 1px solid #eee;
|
559
559
|
padding-bottom: 25px;
|
560
560
|
}
|
561
561
|
|
562
|
-
.content .bottom-nav a{
|
562
|
+
.content .bottom-nav a {
|
563
563
|
margin: 0 5px;
|
564
564
|
}
|
565
565
|
|
566
|
-
.content .edit-link{
|
566
|
+
.content .edit-link {
|
567
567
|
text-align: center;
|
568
568
|
}
|
569
569
|
|
570
|
-
.content .edit-link a{
|
570
|
+
.content .edit-link a {
|
571
571
|
color: #aaa;
|
572
572
|
}
|
573
573
|
|
574
|
-
.content .edit-link a::before{
|
575
|
-
content:
|
574
|
+
.content .edit-link a::before {
|
575
|
+
content: "";
|
576
576
|
display: inline-block;
|
577
577
|
width: 16px;
|
578
578
|
height: 16px;
|
579
579
|
background-size: 16px;
|
580
|
-
opacity: .3;
|
580
|
+
opacity: 0.3;
|
581
581
|
margin-right: 8px;
|
582
582
|
position: relative;
|
583
583
|
top: 2px;
|
584
584
|
}
|
585
585
|
|
586
|
-
.content .field-name{
|
586
|
+
.content .field-name {
|
587
587
|
font-weight: bold;
|
588
588
|
}
|
589
589
|
|
590
|
-
.content .field-entry{
|
590
|
+
.content .field-entry {
|
591
591
|
margin-bottom: 4rem;
|
592
592
|
}
|
593
593
|
|
594
|
-
.content .description-wrapper > p{
|
594
|
+
.content .description-wrapper > p {
|
595
595
|
padding-left: 1rem;
|
596
596
|
margin-bottom: 1rem;
|
597
597
|
}
|
598
598
|
|
599
|
-
#mobile-header{
|
599
|
+
#mobile-header {
|
600
600
|
z-index: 3;
|
601
601
|
position: fixed;
|
602
602
|
top: 0;
|
@@ -606,7 +606,7 @@ em{
|
|
606
606
|
display: none;
|
607
607
|
}
|
608
608
|
|
609
|
-
#mobile-header .menu-button{
|
609
|
+
#mobile-header .menu-button {
|
610
610
|
color: #333;
|
611
611
|
position: absolute;
|
612
612
|
top: 0;
|
@@ -614,129 +614,129 @@ em{
|
|
614
614
|
height: 24px;
|
615
615
|
font-size: 40px;
|
616
616
|
cursor: pointer;
|
617
|
-
opacity: .4;
|
617
|
+
opacity: 0.4;
|
618
618
|
}
|
619
619
|
|
620
|
-
@media screen and (max-width: 560px){
|
621
|
-
body{
|
620
|
+
@media screen and (max-width: 560px) {
|
621
|
+
body {
|
622
622
|
font-size: 14px;
|
623
623
|
}
|
624
624
|
|
625
|
-
body.sidebar-open #sidebar{
|
625
|
+
body.sidebar-open #sidebar {
|
626
626
|
transform: translate3d(0, 0, 0);
|
627
627
|
}
|
628
628
|
|
629
|
-
body.sidebar-open #mobile-shade{
|
629
|
+
body.sidebar-open #mobile-shade {
|
630
630
|
opacity: 1;
|
631
631
|
pointer-events: auto;
|
632
632
|
}
|
633
633
|
|
634
|
-
.content{
|
634
|
+
.content {
|
635
635
|
margin-left: 0;
|
636
636
|
}
|
637
637
|
|
638
|
-
#mobile-header{
|
638
|
+
#mobile-header {
|
639
639
|
display: block;
|
640
640
|
}
|
641
641
|
|
642
|
-
#mobile-shade{
|
642
|
+
#mobile-shade {
|
643
643
|
display: block;
|
644
644
|
}
|
645
645
|
|
646
|
-
#sidebar-mobile{
|
646
|
+
#sidebar-mobile {
|
647
647
|
display: block;
|
648
648
|
}
|
649
649
|
|
650
|
-
#wrap{
|
650
|
+
#wrap {
|
651
651
|
padding-top: 40px;
|
652
652
|
padding-left: 0;
|
653
653
|
}
|
654
654
|
|
655
|
-
#sidebar{
|
655
|
+
#sidebar {
|
656
656
|
top: 0;
|
657
657
|
left: 0;
|
658
658
|
border-right: none;
|
659
|
-
box-shadow: 0 0 4px rgba(0, 0, 0, .25);
|
660
|
-
transition: transform .3s ease;
|
659
|
+
box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
|
660
|
+
transition: transform 0.3s ease;
|
661
661
|
transform: translate3d(-120%, 0, 0);
|
662
662
|
display: block;
|
663
663
|
}
|
664
664
|
}
|
665
665
|
|
666
|
-
.api{
|
666
|
+
.api {
|
667
667
|
background: #fafafa;
|
668
668
|
}
|
669
669
|
|
670
|
-
.api h3{
|
670
|
+
.api h3 {
|
671
671
|
padding: 5px 10px;
|
672
672
|
}
|
673
673
|
|
674
|
-
.api h3.api-title{
|
674
|
+
.api h3.api-title {
|
675
675
|
margin: 0;
|
676
676
|
overflow: auto;
|
677
677
|
}
|
678
678
|
|
679
|
-
.api h4{
|
679
|
+
.api h4 {
|
680
680
|
font-weight: normal;
|
681
681
|
font-style: italic;
|
682
|
-
margin-bottom: .25em;
|
682
|
+
margin-bottom: 0.25em;
|
683
683
|
text-decoration: underline;
|
684
684
|
margin-left: 20px;
|
685
685
|
}
|
686
686
|
|
687
|
-
.api dl{
|
688
|
-
margin-top: .25em;
|
687
|
+
.api dl {
|
688
|
+
margin-top: 0.25em;
|
689
689
|
}
|
690
690
|
|
691
|
-
.api dl.args{
|
691
|
+
.api dl.args {
|
692
692
|
margin-left: 40px;
|
693
693
|
}
|
694
694
|
|
695
|
-
.api dl.constants{
|
695
|
+
.api dl.constants {
|
696
696
|
margin-left: 20px;
|
697
697
|
}
|
698
698
|
|
699
|
-
.api dt{
|
699
|
+
.api dt {
|
700
700
|
margin-top: 1em;
|
701
701
|
}
|
702
702
|
|
703
|
-
.api dt .name{
|
703
|
+
.api dt .name {
|
704
704
|
font-weight: bold;
|
705
705
|
}
|
706
706
|
|
707
|
-
.api dt .type{
|
707
|
+
.api dt .type {
|
708
708
|
margin-left: 15px;
|
709
|
-
font-size: .9em;
|
709
|
+
font-size: 0.9em;
|
710
710
|
font-weight: 200;
|
711
711
|
color: #000;
|
712
712
|
}
|
713
713
|
|
714
|
-
.api dd{
|
714
|
+
.api dd {
|
715
715
|
margin-bottom: 1em;
|
716
716
|
margin-left: 0;
|
717
717
|
}
|
718
718
|
|
719
|
-
.api .desc{
|
719
|
+
.api .desc {
|
720
720
|
margin: 1em;
|
721
721
|
}
|
722
722
|
|
723
|
-
.api pre{
|
723
|
+
.api pre {
|
724
724
|
margin-right: 10px;
|
725
725
|
}
|
726
726
|
|
727
|
-
h3.api-title{
|
727
|
+
h3.api-title {
|
728
728
|
padding: 5px 10px;
|
729
729
|
margin-top: 2em;
|
730
730
|
}
|
731
731
|
|
732
|
-
.api-title .locus{
|
732
|
+
.api-title .locus {
|
733
733
|
float: right;
|
734
734
|
font-weight: normal;
|
735
735
|
padding-right: 5px;
|
736
736
|
font-style: italic;
|
737
737
|
}
|
738
738
|
|
739
|
-
.api-title .subtext{
|
739
|
+
.api-title .subtext {
|
740
740
|
font-size: 11px;
|
741
741
|
text-align: left;
|
742
742
|
clear: both;
|
@@ -744,575 +744,575 @@ h3.api-title{
|
|
744
744
|
font-weight: normal;
|
745
745
|
}
|
746
746
|
|
747
|
-
.api-title .subtext > code{
|
747
|
+
.api-title .subtext > code {
|
748
748
|
font-size: 11px;
|
749
749
|
margin-right: 12px;
|
750
750
|
}
|
751
751
|
|
752
|
-
.api-title .src-code{
|
752
|
+
.api-title .src-code {
|
753
753
|
color: #20338a !important;
|
754
754
|
border-bottom: none !important;
|
755
755
|
}
|
756
756
|
|
757
|
-
.gutter pre{
|
757
|
+
.gutter pre {
|
758
758
|
color: #999;
|
759
759
|
}
|
760
760
|
|
761
|
-
pre{
|
761
|
+
pre {
|
762
762
|
color: #525252;
|
763
763
|
}
|
764
764
|
|
765
|
-
pre .function .keyword{
|
765
|
+
pre .function .keyword {
|
766
766
|
color: #0092db;
|
767
767
|
}
|
768
768
|
|
769
|
-
pre .constant{
|
769
|
+
pre .constant {
|
770
770
|
color: #0092db;
|
771
771
|
}
|
772
772
|
|
773
|
-
pre .keyword{
|
773
|
+
pre .keyword {
|
774
774
|
color: #e96900;
|
775
775
|
}
|
776
776
|
|
777
|
-
pre .attribute{
|
777
|
+
pre .attribute {
|
778
778
|
color: #e96900;
|
779
779
|
}
|
780
780
|
|
781
|
-
pre .number{
|
781
|
+
pre .number {
|
782
782
|
color: #ae81ff;
|
783
783
|
}
|
784
784
|
|
785
|
-
pre .literal{
|
785
|
+
pre .literal {
|
786
786
|
color: #ae81ff;
|
787
787
|
}
|
788
788
|
|
789
|
-
pre .tag{
|
789
|
+
pre .tag {
|
790
790
|
color: #2973b7;
|
791
791
|
}
|
792
792
|
|
793
|
-
pre .tag .title{
|
793
|
+
pre .tag .title {
|
794
794
|
color: #2973b7;
|
795
795
|
}
|
796
796
|
|
797
|
-
pre .tag .value{
|
797
|
+
pre .tag .value {
|
798
798
|
color: #90a959;
|
799
799
|
}
|
800
800
|
|
801
|
-
pre .change{
|
801
|
+
pre .change {
|
802
802
|
color: #2973b7;
|
803
803
|
}
|
804
804
|
|
805
|
-
pre .winutils{
|
805
|
+
pre .winutils {
|
806
806
|
color: #2973b7;
|
807
807
|
}
|
808
808
|
|
809
|
-
pre .flow{
|
809
|
+
pre .flow {
|
810
810
|
color: #2973b7;
|
811
811
|
}
|
812
812
|
|
813
|
-
pre .lisp .title{
|
813
|
+
pre .lisp .title {
|
814
814
|
color: #2973b7;
|
815
815
|
}
|
816
816
|
|
817
|
-
pre .clojure .built_in{
|
817
|
+
pre .clojure .built_in {
|
818
818
|
color: #2973b7;
|
819
819
|
}
|
820
820
|
|
821
|
-
pre .nginx .title{
|
821
|
+
pre .nginx .title {
|
822
822
|
color: #2973b7;
|
823
823
|
}
|
824
824
|
|
825
|
-
pre .tex .special{
|
825
|
+
pre .tex .special {
|
826
826
|
color: #2973b7;
|
827
827
|
}
|
828
828
|
|
829
|
-
pre .tex .command{
|
829
|
+
pre .tex .command {
|
830
830
|
color: #90a959;
|
831
831
|
}
|
832
832
|
|
833
|
-
pre .tex .formula{
|
833
|
+
pre .tex .formula {
|
834
834
|
color: #b3b3b3;
|
835
|
-
opacity: .5;
|
835
|
+
opacity: 0.5;
|
836
836
|
}
|
837
837
|
|
838
|
-
pre .class .title{
|
838
|
+
pre .class .title {
|
839
839
|
color: #4077bf;
|
840
840
|
}
|
841
841
|
|
842
|
-
pre .symbol{
|
842
|
+
pre .symbol {
|
843
843
|
color: #90a959;
|
844
844
|
}
|
845
845
|
|
846
|
-
pre .symbol .string{
|
846
|
+
pre .symbol .string {
|
847
847
|
color: #90a959;
|
848
848
|
}
|
849
849
|
|
850
|
-
pre .value{
|
850
|
+
pre .value {
|
851
851
|
color: #90a959;
|
852
852
|
}
|
853
853
|
|
854
|
-
pre .regexp{
|
854
|
+
pre .regexp {
|
855
855
|
color: #90a959;
|
856
856
|
}
|
857
857
|
|
858
|
-
pre .title{
|
858
|
+
pre .title {
|
859
859
|
color: #a6e22e;
|
860
860
|
}
|
861
861
|
|
862
|
-
pre .string{
|
862
|
+
pre .string {
|
863
863
|
color: #90a959;
|
864
864
|
}
|
865
865
|
|
866
|
-
pre .subst{
|
866
|
+
pre .subst {
|
867
867
|
color: #90a959;
|
868
868
|
}
|
869
869
|
|
870
|
-
pre .haskell .type{
|
870
|
+
pre .haskell .type {
|
871
871
|
color: #90a959;
|
872
872
|
}
|
873
873
|
|
874
|
-
pre .preprocessor{
|
874
|
+
pre .preprocessor {
|
875
875
|
color: #90a959;
|
876
876
|
}
|
877
877
|
|
878
|
-
pre .ruby .class .parent{
|
878
|
+
pre .ruby .class .parent {
|
879
879
|
color: #90a959;
|
880
880
|
}
|
881
881
|
|
882
|
-
pre .built_in{
|
882
|
+
pre .built_in {
|
883
883
|
color: #90a959;
|
884
884
|
}
|
885
885
|
|
886
|
-
pre .sql .aggregate{
|
886
|
+
pre .sql .aggregate {
|
887
887
|
color: #90a959;
|
888
888
|
}
|
889
889
|
|
890
|
-
pre .django .template_tag{
|
890
|
+
pre .django .template_tag {
|
891
891
|
color: #90a959;
|
892
892
|
}
|
893
893
|
|
894
|
-
pre .django .variable{
|
894
|
+
pre .django .variable {
|
895
895
|
color: #90a959;
|
896
896
|
}
|
897
897
|
|
898
|
-
pre .django .filter .argument{
|
898
|
+
pre .django .filter .argument {
|
899
899
|
color: #90a959;
|
900
900
|
}
|
901
901
|
|
902
|
-
pre .smalltalk .class{
|
902
|
+
pre .smalltalk .class {
|
903
903
|
color: #90a959;
|
904
904
|
}
|
905
905
|
|
906
|
-
pre .smalltalk .localvars{
|
906
|
+
pre .smalltalk .localvars {
|
907
907
|
color: #90a959;
|
908
908
|
}
|
909
909
|
|
910
|
-
pre .smalltalk .array{
|
910
|
+
pre .smalltalk .array {
|
911
911
|
color: #90a959;
|
912
912
|
}
|
913
913
|
|
914
|
-
pre .javadoc{
|
914
|
+
pre .javadoc {
|
915
915
|
color: #90a959;
|
916
916
|
}
|
917
917
|
|
918
|
-
pre .attr_selector{
|
918
|
+
pre .attr_selector {
|
919
919
|
color: #90a959;
|
920
920
|
}
|
921
921
|
|
922
|
-
pre .pseudo{
|
922
|
+
pre .pseudo {
|
923
923
|
color: #90a959;
|
924
924
|
}
|
925
925
|
|
926
|
-
pre .addition{
|
926
|
+
pre .addition {
|
927
927
|
color: #90a959;
|
928
928
|
}
|
929
929
|
|
930
|
-
pre .stream{
|
930
|
+
pre .stream {
|
931
931
|
color: #90a959;
|
932
932
|
}
|
933
933
|
|
934
|
-
pre .envvar{
|
934
|
+
pre .envvar {
|
935
935
|
color: #90a959;
|
936
936
|
}
|
937
937
|
|
938
|
-
pre .apache .tag{
|
938
|
+
pre .apache .tag {
|
939
939
|
color: #90a959;
|
940
940
|
}
|
941
941
|
|
942
|
-
pre .apache .cbracket{
|
942
|
+
pre .apache .cbracket {
|
943
943
|
color: #90a959;
|
944
944
|
}
|
945
945
|
|
946
|
-
pre .apache .sqbracket{
|
946
|
+
pre .apache .sqbracket {
|
947
947
|
color: #b3b3b3;
|
948
948
|
}
|
949
949
|
|
950
|
-
pre .prompt{
|
950
|
+
pre .prompt {
|
951
951
|
color: #90a959;
|
952
952
|
}
|
953
953
|
|
954
|
-
pre .comment{
|
954
|
+
pre .comment {
|
955
955
|
color: #b3b3b3;
|
956
956
|
}
|
957
957
|
|
958
|
-
pre .java .annotation{
|
958
|
+
pre .java .annotation {
|
959
959
|
color: #b3b3b3;
|
960
960
|
}
|
961
961
|
|
962
|
-
pre .python .decorator{
|
962
|
+
pre .python .decorator {
|
963
963
|
color: #b3b3b3;
|
964
964
|
}
|
965
965
|
|
966
|
-
pre .template_comment{
|
966
|
+
pre .template_comment {
|
967
967
|
color: #b3b3b3;
|
968
968
|
}
|
969
969
|
|
970
|
-
pre .pi{
|
970
|
+
pre .pi {
|
971
971
|
color: #b3b3b3;
|
972
972
|
}
|
973
973
|
|
974
|
-
pre .doctype{
|
974
|
+
pre .doctype {
|
975
975
|
color: #b3b3b3;
|
976
976
|
}
|
977
977
|
|
978
|
-
pre .deletion{
|
978
|
+
pre .deletion {
|
979
979
|
color: #b3b3b3;
|
980
980
|
}
|
981
981
|
|
982
|
-
pre .shebang{
|
982
|
+
pre .shebang {
|
983
983
|
color: #b3b3b3;
|
984
984
|
}
|
985
985
|
|
986
|
-
pre .coffeescript .javascript{
|
987
|
-
opacity: .5;
|
986
|
+
pre .coffeescript .javascript {
|
987
|
+
opacity: 0.5;
|
988
988
|
}
|
989
989
|
|
990
|
-
pre .javascript .xml{
|
991
|
-
opacity: .5;
|
990
|
+
pre .javascript .xml {
|
991
|
+
opacity: 0.5;
|
992
992
|
}
|
993
993
|
|
994
|
-
pre .xml .javascript{
|
995
|
-
opacity: .5;
|
994
|
+
pre .xml .javascript {
|
995
|
+
opacity: 0.5;
|
996
996
|
}
|
997
997
|
|
998
|
-
pre .xml .vbscript{
|
999
|
-
opacity: .5;
|
998
|
+
pre .xml .vbscript {
|
999
|
+
opacity: 0.5;
|
1000
1000
|
}
|
1001
1001
|
|
1002
|
-
pre .xml .css{
|
1003
|
-
opacity: .5;
|
1002
|
+
pre .xml .css {
|
1003
|
+
opacity: 0.5;
|
1004
1004
|
}
|
1005
1005
|
|
1006
|
-
pre .xml .cdata{
|
1007
|
-
opacity: .5;
|
1006
|
+
pre .xml .cdata {
|
1007
|
+
opacity: 0.5;
|
1008
1008
|
}
|
1009
1009
|
|
1010
|
-
.highlight .hll{
|
1010
|
+
.highlight .hll {
|
1011
1011
|
background-color: #49483e;
|
1012
1012
|
}
|
1013
1013
|
|
1014
|
-
pre{
|
1014
|
+
pre {
|
1015
1015
|
background: #272822;
|
1016
1016
|
color: #f8f8f2;
|
1017
1017
|
}
|
1018
1018
|
|
1019
|
-
.highlight .c{
|
1019
|
+
.highlight .c {
|
1020
1020
|
color: #75715e;
|
1021
1021
|
}
|
1022
1022
|
|
1023
1023
|
/* Comment */
|
1024
|
-
.highlight .err{
|
1024
|
+
.highlight .err {
|
1025
1025
|
color: #960050;
|
1026
1026
|
background-color: #1e0010;
|
1027
1027
|
}
|
1028
1028
|
|
1029
1029
|
/* Error */
|
1030
|
-
.highlight .k{
|
1030
|
+
.highlight .k {
|
1031
1031
|
color: #66d9ef;
|
1032
1032
|
}
|
1033
1033
|
|
1034
1034
|
/* Keyword */
|
1035
|
-
.highlight .l{
|
1035
|
+
.highlight .l {
|
1036
1036
|
color: #ae81ff;
|
1037
1037
|
}
|
1038
1038
|
|
1039
1039
|
/* Literal */
|
1040
|
-
.highlight .n{
|
1040
|
+
.highlight .n {
|
1041
1041
|
color: #f8f8f2;
|
1042
1042
|
}
|
1043
1043
|
|
1044
1044
|
/* Name */
|
1045
|
-
.highlight .o{
|
1045
|
+
.highlight .o {
|
1046
1046
|
color: #f92672;
|
1047
1047
|
}
|
1048
1048
|
|
1049
1049
|
/* Operator */
|
1050
|
-
.highlight .p{
|
1050
|
+
.highlight .p {
|
1051
1051
|
color: #f8f8f2;
|
1052
1052
|
}
|
1053
1053
|
|
1054
1054
|
/* Punctuation */
|
1055
|
-
.highlight .cm{
|
1055
|
+
.highlight .cm {
|
1056
1056
|
color: #75715e;
|
1057
1057
|
}
|
1058
1058
|
|
1059
1059
|
/* Comment.Multiline */
|
1060
|
-
.highlight .cp{
|
1060
|
+
.highlight .cp {
|
1061
1061
|
color: #75715e;
|
1062
1062
|
}
|
1063
1063
|
|
1064
1064
|
/* Comment.Preproc */
|
1065
|
-
.highlight .c1{
|
1065
|
+
.highlight .c1 {
|
1066
1066
|
color: #75715e;
|
1067
1067
|
}
|
1068
1068
|
|
1069
1069
|
/* Comment.Single */
|
1070
|
-
.highlight .cs{
|
1070
|
+
.highlight .cs {
|
1071
1071
|
color: #75715e;
|
1072
1072
|
}
|
1073
1073
|
|
1074
1074
|
/* Comment.Special */
|
1075
|
-
.highlight .ge{
|
1075
|
+
.highlight .ge {
|
1076
1076
|
font-style: italic;
|
1077
1077
|
}
|
1078
1078
|
|
1079
1079
|
/* Generic.Emph */
|
1080
|
-
.highlight .gs{
|
1080
|
+
.highlight .gs {
|
1081
1081
|
font-weight: bold;
|
1082
1082
|
}
|
1083
1083
|
|
1084
1084
|
/* Generic.Strong */
|
1085
|
-
.highlight .kc{
|
1085
|
+
.highlight .kc {
|
1086
1086
|
color: #66d9ef;
|
1087
1087
|
}
|
1088
1088
|
|
1089
1089
|
/* Keyword.Constant */
|
1090
|
-
.highlight .kd{
|
1090
|
+
.highlight .kd {
|
1091
1091
|
color: #66d9ef;
|
1092
1092
|
}
|
1093
1093
|
|
1094
1094
|
/* Keyword.Declaration */
|
1095
|
-
.highlight .kn{
|
1095
|
+
.highlight .kn {
|
1096
1096
|
color: #f92672;
|
1097
1097
|
}
|
1098
1098
|
|
1099
1099
|
/* Keyword.Namespace */
|
1100
|
-
.highlight .kp{
|
1100
|
+
.highlight .kp {
|
1101
1101
|
color: #66d9ef;
|
1102
1102
|
}
|
1103
1103
|
|
1104
1104
|
/* Keyword.Pseudo */
|
1105
|
-
.highlight .kr{
|
1105
|
+
.highlight .kr {
|
1106
1106
|
color: #66d9ef;
|
1107
1107
|
}
|
1108
1108
|
|
1109
1109
|
/* Keyword.Reserved */
|
1110
|
-
.highlight .kt{
|
1110
|
+
.highlight .kt {
|
1111
1111
|
color: #66d9ef;
|
1112
1112
|
}
|
1113
1113
|
|
1114
1114
|
/* Keyword.Type */
|
1115
|
-
.highlight .ld{
|
1115
|
+
.highlight .ld {
|
1116
1116
|
color: #e6db74;
|
1117
1117
|
}
|
1118
1118
|
|
1119
1119
|
/* Literal.Date */
|
1120
|
-
.highlight .m{
|
1120
|
+
.highlight .m {
|
1121
1121
|
color: #ae81ff;
|
1122
1122
|
}
|
1123
1123
|
|
1124
1124
|
/* Literal.Number */
|
1125
|
-
.highlight .s{
|
1125
|
+
.highlight .s {
|
1126
1126
|
color: #e6db74;
|
1127
1127
|
}
|
1128
1128
|
|
1129
1129
|
/* Literal.String */
|
1130
|
-
.highlight .na{
|
1130
|
+
.highlight .na {
|
1131
1131
|
color: #a6e22e;
|
1132
1132
|
}
|
1133
1133
|
|
1134
1134
|
/* Name.Attribute */
|
1135
|
-
.highlight .nb{
|
1135
|
+
.highlight .nb {
|
1136
1136
|
color: #f8f8f2;
|
1137
1137
|
}
|
1138
1138
|
|
1139
1139
|
/* Name.Builtin */
|
1140
|
-
.highlight .nc{
|
1140
|
+
.highlight .nc {
|
1141
1141
|
color: #a6e22e;
|
1142
1142
|
}
|
1143
1143
|
|
1144
1144
|
/* Name.Class */
|
1145
|
-
.highlight .no{
|
1145
|
+
.highlight .no {
|
1146
1146
|
color: #66d9ef;
|
1147
1147
|
}
|
1148
1148
|
|
1149
1149
|
/* Name.Constant */
|
1150
|
-
.highlight .nd{
|
1150
|
+
.highlight .nd {
|
1151
1151
|
color: #a6e22e;
|
1152
1152
|
}
|
1153
1153
|
|
1154
1154
|
/* Name.Decorator */
|
1155
|
-
.highlight .ni{
|
1155
|
+
.highlight .ni {
|
1156
1156
|
color: #f8f8f2;
|
1157
1157
|
}
|
1158
1158
|
|
1159
1159
|
/* Name.Entity */
|
1160
|
-
.highlight .ne{
|
1160
|
+
.highlight .ne {
|
1161
1161
|
color: #a6e22e;
|
1162
1162
|
}
|
1163
1163
|
|
1164
1164
|
/* Name.Exception */
|
1165
|
-
.highlight .nf{
|
1165
|
+
.highlight .nf {
|
1166
1166
|
color: #a6e22e;
|
1167
1167
|
}
|
1168
1168
|
|
1169
1169
|
/* Name.Function */
|
1170
|
-
.highlight .nl{
|
1170
|
+
.highlight .nl {
|
1171
1171
|
color: #f8f8f2;
|
1172
1172
|
}
|
1173
1173
|
|
1174
1174
|
/* Name.Label */
|
1175
|
-
.highlight .nn{
|
1175
|
+
.highlight .nn {
|
1176
1176
|
color: #f8f8f2;
|
1177
1177
|
}
|
1178
1178
|
|
1179
1179
|
/* Name.Namespace */
|
1180
|
-
.highlight .nx{
|
1180
|
+
.highlight .nx {
|
1181
1181
|
color: #a6e22e;
|
1182
1182
|
}
|
1183
1183
|
|
1184
1184
|
/* Name.Other */
|
1185
|
-
.highlight .py{
|
1185
|
+
.highlight .py {
|
1186
1186
|
color: #f8f8f2;
|
1187
1187
|
}
|
1188
1188
|
|
1189
1189
|
/* Name.Property */
|
1190
|
-
.highlight .nt{
|
1190
|
+
.highlight .nt {
|
1191
1191
|
color: #f92672;
|
1192
1192
|
}
|
1193
1193
|
|
1194
1194
|
/* Name.Tag */
|
1195
|
-
.highlight .nv{
|
1195
|
+
.highlight .nv {
|
1196
1196
|
color: #f8f8f2;
|
1197
1197
|
}
|
1198
1198
|
|
1199
1199
|
/* Name.Variable */
|
1200
|
-
.highlight .ow{
|
1200
|
+
.highlight .ow {
|
1201
1201
|
color: #f92672;
|
1202
1202
|
}
|
1203
1203
|
|
1204
1204
|
/* Operator.Word */
|
1205
|
-
.highlight .w{
|
1205
|
+
.highlight .w {
|
1206
1206
|
color: #f8f8f2;
|
1207
1207
|
}
|
1208
1208
|
|
1209
1209
|
/* Text.Whitespace */
|
1210
|
-
.highlight .mf{
|
1210
|
+
.highlight .mf {
|
1211
1211
|
color: #ae81ff;
|
1212
1212
|
}
|
1213
1213
|
|
1214
1214
|
/* Literal.Number.Float */
|
1215
|
-
.highlight .mh{
|
1215
|
+
.highlight .mh {
|
1216
1216
|
color: #ae81ff;
|
1217
1217
|
}
|
1218
1218
|
|
1219
1219
|
/* Literal.Number.Hex */
|
1220
|
-
.highlight .mi{
|
1220
|
+
.highlight .mi {
|
1221
1221
|
color: #ae81ff;
|
1222
1222
|
}
|
1223
1223
|
|
1224
1224
|
/* Literal.Number.Integer */
|
1225
|
-
.highlight .mo{
|
1225
|
+
.highlight .mo {
|
1226
1226
|
color: #ae81ff;
|
1227
1227
|
}
|
1228
1228
|
|
1229
1229
|
/* Literal.Number.Oct */
|
1230
|
-
.highlight .sb{
|
1230
|
+
.highlight .sb {
|
1231
1231
|
color: #e6db74;
|
1232
1232
|
}
|
1233
1233
|
|
1234
1234
|
/* Literal.String.Backtick */
|
1235
|
-
.highlight .sc{
|
1235
|
+
.highlight .sc {
|
1236
1236
|
color: #e6db74;
|
1237
1237
|
}
|
1238
1238
|
|
1239
1239
|
/* Literal.String.Char */
|
1240
|
-
.highlight .sd{
|
1240
|
+
.highlight .sd {
|
1241
1241
|
color: #e6db74;
|
1242
1242
|
}
|
1243
1243
|
|
1244
1244
|
/* Literal.String.Doc */
|
1245
|
-
.highlight .s2{
|
1245
|
+
.highlight .s2 {
|
1246
1246
|
color: #e6db74;
|
1247
1247
|
}
|
1248
1248
|
|
1249
1249
|
/* Literal.String.Double */
|
1250
|
-
.highlight .se{
|
1250
|
+
.highlight .se {
|
1251
1251
|
color: #ae81ff;
|
1252
1252
|
}
|
1253
1253
|
|
1254
1254
|
/* Literal.String.Escape */
|
1255
|
-
.highlight .sh{
|
1255
|
+
.highlight .sh {
|
1256
1256
|
color: #e6db74;
|
1257
1257
|
}
|
1258
1258
|
|
1259
1259
|
/* Literal.String.Heredoc */
|
1260
|
-
.highlight .si{
|
1260
|
+
.highlight .si {
|
1261
1261
|
color: #e6db74;
|
1262
1262
|
}
|
1263
1263
|
|
1264
1264
|
/* Literal.String.Interpol */
|
1265
|
-
.highlight .sx{
|
1265
|
+
.highlight .sx {
|
1266
1266
|
color: #e6db74;
|
1267
1267
|
}
|
1268
1268
|
|
1269
1269
|
/* Literal.String.Other */
|
1270
|
-
.highlight .sr{
|
1270
|
+
.highlight .sr {
|
1271
1271
|
color: #e6db74;
|
1272
1272
|
}
|
1273
1273
|
|
1274
1274
|
/* Literal.String.Regex */
|
1275
|
-
.highlight .s1{
|
1275
|
+
.highlight .s1 {
|
1276
1276
|
color: #e6db74;
|
1277
1277
|
}
|
1278
1278
|
|
1279
1279
|
/* Literal.String.Single */
|
1280
|
-
.highlight .ss{
|
1280
|
+
.highlight .ss {
|
1281
1281
|
color: #e6db74;
|
1282
1282
|
}
|
1283
1283
|
|
1284
1284
|
/* Literal.String.Symbol */
|
1285
|
-
.highlight .bp{
|
1285
|
+
.highlight .bp {
|
1286
1286
|
color: #f8f8f2;
|
1287
1287
|
}
|
1288
1288
|
|
1289
1289
|
/* Name.Builtin.Pseudo */
|
1290
|
-
.highlight .vc{
|
1290
|
+
.highlight .vc {
|
1291
1291
|
color: #f8f8f2;
|
1292
1292
|
}
|
1293
1293
|
|
1294
1294
|
/* Name.Variable.Class */
|
1295
|
-
.highlight .vg{
|
1295
|
+
.highlight .vg {
|
1296
1296
|
color: #f8f8f2;
|
1297
1297
|
}
|
1298
1298
|
|
1299
1299
|
/* Name.Variable.Global */
|
1300
|
-
.highlight .vi{
|
1300
|
+
.highlight .vi {
|
1301
1301
|
color: #f8f8f2;
|
1302
1302
|
}
|
1303
1303
|
|
1304
1304
|
/* Name.Variable.Instance */
|
1305
|
-
.highlight .il{
|
1305
|
+
.highlight .il {
|
1306
1306
|
color: #ae81ff;
|
1307
1307
|
}
|
1308
1308
|
|
1309
1309
|
/* Literal.Number.Integer.Long */
|
1310
|
-
.deprecation-notice{
|
1310
|
+
.deprecation-notice {
|
1311
1311
|
padding-left: 5px;
|
1312
1312
|
border-left: 2px solid #e8400d;
|
1313
1313
|
background: #fdf2ec;
|
1314
1314
|
}
|
1315
1315
|
|
1316
|
-
.deprecation-notice span{
|
1316
|
+
.deprecation-notice span {
|
1317
1317
|
font-weight: bold;
|
1318
1318
|
}
|