grape-swagger-ui 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. data/.gitignore +18 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +54 -0
  5. data/Rakefile +1 -0
  6. data/app/controllers/swagger_controller.rb +8 -0
  7. data/app/views/layouts/swagger.html.haml +49 -0
  8. data/app/views/swagger/index.html +0 -0
  9. data/config/routes.rb +4 -0
  10. data/grape-swagger-ui.gemspec +22 -0
  11. data/lib/generators/swagger/layout/USAGE +8 -0
  12. data/lib/generators/swagger/layout/layout_generator.rb +15 -0
  13. data/lib/generators/swagger/layout/templates/swagger.html.haml +49 -0
  14. data/lib/grape-swagger-ui.rb +10 -0
  15. data/lib/grape-swagger-ui/version.rb +7 -0
  16. data/vendor/assets/images/logo_small.png +0 -0
  17. data/vendor/assets/images/pet_store_api.png +0 -0
  18. data/vendor/assets/images/throbber.gif +0 -0
  19. data/vendor/assets/images/wordnik_api.png +0 -0
  20. data/vendor/assets/javascripts/lib/backbone-min.js +38 -0
  21. data/vendor/assets/javascripts/lib/handlebars-1.0.rc.1.js +1920 -0
  22. data/vendor/assets/javascripts/lib/highlight.7.3.pack.js +1 -0
  23. data/vendor/assets/javascripts/lib/jquery-1.8.0.min.js +2 -0
  24. data/vendor/assets/javascripts/lib/jquery.ba-bbq.min.js +18 -0
  25. data/vendor/assets/javascripts/lib/jquery.slideto.min.js +1 -0
  26. data/vendor/assets/javascripts/lib/jquery.wiggle.min.js +8 -0
  27. data/vendor/assets/javascripts/lib/swagger.js +765 -0
  28. data/vendor/assets/javascripts/lib/underscore-min.js +32 -0
  29. data/vendor/assets/javascripts/swagger-ui.js +1943 -0
  30. data/vendor/assets/javascripts/swagger_ui.js +23 -0
  31. data/vendor/assets/stylesheets/hightlight.default.css +135 -0
  32. data/vendor/assets/stylesheets/screen.css +1590 -0
  33. data/vendor/assets/stylesheets/swagger_ui.css +13 -0
  34. metadata +110 -0
@@ -0,0 +1,23 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+
14
+ //= require './lib/jquery-1.8.0.min.js'
15
+ //= require './lib/jquery.slideto.min.js'
16
+ //= require './lib/jquery.wiggle.min.js'
17
+ //= require './lib/jquery.ba-bbq.min.js'
18
+ //= require './lib/handlebars-1.0.rc.1.js'
19
+ //= require './lib/underscore-min.js'
20
+ //= require './lib/backbone-min.js'
21
+ //= require './lib/swagger.js'
22
+ //= require 'swagger-ui.js'
23
+ //= require './lib/highlight.7.3.pack.js'
@@ -0,0 +1,135 @@
1
+ /*
2
+
3
+ Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
4
+
5
+ */
6
+
7
+ pre code {
8
+ display: block; padding: 0.5em;
9
+ background: #F0F0F0;
10
+ }
11
+
12
+ pre code,
13
+ pre .subst,
14
+ pre .tag .title,
15
+ pre .lisp .title,
16
+ pre .clojure .built_in,
17
+ pre .nginx .title {
18
+ color: black;
19
+ }
20
+
21
+ pre .string,
22
+ pre .title,
23
+ pre .constant,
24
+ pre .parent,
25
+ pre .tag .value,
26
+ pre .rules .value,
27
+ pre .rules .value .number,
28
+ pre .preprocessor,
29
+ pre .ruby .symbol,
30
+ pre .ruby .symbol .string,
31
+ pre .aggregate,
32
+ pre .template_tag,
33
+ pre .django .variable,
34
+ pre .smalltalk .class,
35
+ pre .addition,
36
+ pre .flow,
37
+ pre .stream,
38
+ pre .bash .variable,
39
+ pre .apache .tag,
40
+ pre .apache .cbracket,
41
+ pre .tex .command,
42
+ pre .tex .special,
43
+ pre .erlang_repl .function_or_atom,
44
+ pre .markdown .header {
45
+ color: #800;
46
+ }
47
+
48
+ pre .comment,
49
+ pre .annotation,
50
+ pre .template_comment,
51
+ pre .diff .header,
52
+ pre .chunk,
53
+ pre .markdown .blockquote {
54
+ color: #888;
55
+ }
56
+
57
+ pre .number,
58
+ pre .date,
59
+ pre .regexp,
60
+ pre .literal,
61
+ pre .smalltalk .symbol,
62
+ pre .smalltalk .char,
63
+ pre .go .constant,
64
+ pre .change,
65
+ pre .markdown .bullet,
66
+ pre .markdown .link_url {
67
+ color: #080;
68
+ }
69
+
70
+ pre .label,
71
+ pre .javadoc,
72
+ pre .ruby .string,
73
+ pre .decorator,
74
+ pre .filter .argument,
75
+ pre .localvars,
76
+ pre .array,
77
+ pre .attr_selector,
78
+ pre .important,
79
+ pre .pseudo,
80
+ pre .pi,
81
+ pre .doctype,
82
+ pre .deletion,
83
+ pre .envvar,
84
+ pre .shebang,
85
+ pre .apache .sqbracket,
86
+ pre .nginx .built_in,
87
+ pre .tex .formula,
88
+ pre .erlang_repl .reserved,
89
+ pre .prompt,
90
+ pre .markdown .link_label,
91
+ pre .vhdl .attribute,
92
+ pre .clojure .attribute,
93
+ pre .coffeescript .property {
94
+ color: #88F
95
+ }
96
+
97
+ pre .keyword,
98
+ pre .id,
99
+ pre .phpdoc,
100
+ pre .title,
101
+ pre .built_in,
102
+ pre .aggregate,
103
+ pre .css .tag,
104
+ pre .javadoctag,
105
+ pre .phpdoc,
106
+ pre .yardoctag,
107
+ pre .smalltalk .class,
108
+ pre .winutils,
109
+ pre .bash .variable,
110
+ pre .apache .tag,
111
+ pre .go .typename,
112
+ pre .tex .command,
113
+ pre .markdown .strong,
114
+ pre .request,
115
+ pre .status {
116
+ font-weight: bold;
117
+ }
118
+
119
+ pre .markdown .emphasis {
120
+ font-style: italic;
121
+ }
122
+
123
+ pre .nginx .built_in {
124
+ font-weight: normal;
125
+ }
126
+
127
+ pre .coffeescript .javascript,
128
+ pre .javascript .xml,
129
+ pre .tex .formula,
130
+ pre .xml .javascript,
131
+ pre .xml .vbscript,
132
+ pre .xml .css,
133
+ pre .xml .cdata {
134
+ opacity: 0.5;
135
+ }
@@ -0,0 +1,1590 @@
1
+ html, body, div, span, applet, object, iframe,
2
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
3
+ a, abbr, acronym, address, big, cite, code,
4
+ del, dfn, em, img, ins, kbd, q, s, samp,
5
+ small, strike, strong, sub, sup, tt, var,
6
+ b, u, i, center,
7
+ dl, dt, dd, ol, ul, li,
8
+ fieldset, form, label, legend,
9
+ table, caption, tbody, tfoot, thead, tr, th, td,
10
+ article, aside, canvas, details, embed,
11
+ figure, figcaption, footer, header, hgroup,
12
+ menu, nav, output, ruby, section, summary,
13
+ time, mark, audio, video {
14
+ margin: 0;
15
+ padding: 0;
16
+ border: 0;
17
+ font-size: 100%;
18
+ font: inherit;
19
+ vertical-align: baseline;
20
+ }
21
+
22
+ body {
23
+ line-height: 1;
24
+ }
25
+
26
+ ol, ul {
27
+ list-style: none;
28
+ }
29
+
30
+ table {
31
+ border-collapse: collapse;
32
+ border-spacing: 0;
33
+ }
34
+
35
+ caption, th, td {
36
+ text-align: left;
37
+ font-weight: normal;
38
+ vertical-align: middle;
39
+ }
40
+
41
+ q, blockquote {
42
+ quotes: none;
43
+ }
44
+
45
+ q:before, q:after, blockquote:before, blockquote:after {
46
+ content: "";
47
+ content: none;
48
+ }
49
+
50
+ a img {
51
+ border: none;
52
+ }
53
+
54
+ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
55
+ display: block;
56
+ }
57
+
58
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
59
+ text-decoration: none;
60
+ }
61
+
62
+ h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
63
+ text-decoration: underline;
64
+ }
65
+
66
+ h1 span.divider, h2 span.divider, h3 span.divider, h4 span.divider, h5 span.divider, h6 span.divider {
67
+ color: #aaaaaa;
68
+ }
69
+
70
+ h1 {
71
+ color: #547f00;
72
+ color: black;
73
+ font-size: 1.5em;
74
+ line-height: 1.3em;
75
+ padding: 10px 0 10px 0;
76
+ font-family: "Droid Sans", sans-serif;
77
+ font-weight: bold;
78
+ }
79
+
80
+ h2 {
81
+ color: #89bf04;
82
+ color: black;
83
+ font-size: 1.3em;
84
+ padding: 10px 0 10px 0;
85
+ }
86
+
87
+ h2 a {
88
+ color: black;
89
+ }
90
+
91
+ h2 span.sub {
92
+ font-size: 0.7em;
93
+ color: #999999;
94
+ font-style: italic;
95
+ }
96
+
97
+ h2 span.sub a {
98
+ color: #777777;
99
+ }
100
+
101
+ h3 {
102
+ color: black;
103
+ font-size: 1.1em;
104
+ padding: 10px 0 10px 0;
105
+ }
106
+
107
+ div.heading_with_menu {
108
+ float: none;
109
+ clear: both;
110
+ overflow: hidden;
111
+ display: block;
112
+ }
113
+
114
+ div.heading_with_menu h1, div.heading_with_menu h2, div.heading_with_menu h3, div.heading_with_menu h4, div.heading_with_menu h5, div.heading_with_menu h6 {
115
+ display: block;
116
+ clear: none;
117
+ float: left;
118
+ -moz-box-sizing: border-box;
119
+ -webkit-box-sizing: border-box;
120
+ -ms-box-sizing: border-box;
121
+ box-sizing: border-box;
122
+ width: 60%;
123
+ }
124
+
125
+ div.heading_with_menu ul {
126
+ display: block;
127
+ clear: none;
128
+ float: right;
129
+ -moz-box-sizing: border-box;
130
+ -webkit-box-sizing: border-box;
131
+ -ms-box-sizing: border-box;
132
+ box-sizing: border-box;
133
+ margin-top: 10px;
134
+ }
135
+
136
+ .body-textarea {
137
+ width: 300px;
138
+ height: 100px;
139
+ }
140
+
141
+ p {
142
+ line-height: 1.4em;
143
+ padding: 0 0 10px 0;
144
+ color: #333333;
145
+ }
146
+
147
+ ol {
148
+ margin: 0px 0 10px 0;
149
+ padding: 0 0 0 18px;
150
+ list-style-type: decimal;
151
+ }
152
+
153
+ ol li {
154
+ padding: 5px 0px;
155
+ font-size: 0.9em;
156
+ color: #333333;
157
+ }
158
+
159
+ .markdown h3 {
160
+ color: #547f00;
161
+ }
162
+
163
+ .markdown h4 {
164
+ color: #666666;
165
+ }
166
+
167
+ .markdown pre {
168
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
169
+ background-color: #fcf6db;
170
+ border: 1px solid black;
171
+ border-color: #e5e0c6;
172
+ padding: 10px;
173
+ margin: 0 0 10px 0;
174
+ }
175
+
176
+ .markdown pre code {
177
+ line-height: 1.6em;
178
+ }
179
+
180
+ .markdown p code, .markdown li code {
181
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
182
+ background-color: #f0f0f0;
183
+ color: black;
184
+ padding: 1px 3px;
185
+ }
186
+
187
+ .markdown ol, .markdown ul {
188
+ font-family: "Droid Sans", sans-serif;
189
+ margin: 5px 0 10px 0;
190
+ padding: 0 0 0 18px;
191
+ list-style-type: disc;
192
+ }
193
+
194
+ .markdown ol li, .markdown ul li {
195
+ padding: 3px 0px;
196
+ line-height: 1.4em;
197
+ color: #333333;
198
+ }
199
+
200
+ div.gist {
201
+ margin: 20px 0 25px 0 !important;
202
+ }
203
+
204
+ p.big, div.big p {
205
+ font-size: 1em;
206
+ margin-bottom: 10px;
207
+ }
208
+
209
+ span.weak {
210
+ color: #666666;
211
+ }
212
+
213
+ span.blank, span.empty {
214
+ color: #888888;
215
+ font-style: italic;
216
+ }
217
+
218
+ a {
219
+ color: #547f00;
220
+ }
221
+
222
+ strong {
223
+ font-family: "Droid Sans", sans-serif;
224
+ font-weight: bold;
225
+ font-weight: bold;
226
+ }
227
+
228
+ .code {
229
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
230
+ }
231
+
232
+ pre {
233
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
234
+ background-color: #fcf6db;
235
+ border: 1px solid black;
236
+ border-color: #e5e0c6;
237
+ padding: 10px;
238
+ /* white-space: pre-line */
239
+ }
240
+
241
+ pre code {
242
+ line-height: 1.6em;
243
+ }
244
+
245
+ .required {
246
+ font-weight: bold;
247
+ }
248
+
249
+ table.fullwidth {
250
+ width: 100%;
251
+ }
252
+
253
+ table thead tr th {
254
+ padding: 5px;
255
+ font-size: 0.9em;
256
+ color: #666666;
257
+ border-bottom: 1px solid #999999;
258
+ }
259
+
260
+ table tbody tr.offset {
261
+ background-color: #f5f5f5;
262
+ }
263
+
264
+ table tbody tr td {
265
+ padding: 6px;
266
+ font-size: 0.9em;
267
+ border-bottom: 1px solid #cccccc;
268
+ vertical-align: top;
269
+ line-height: 1.3em;
270
+ }
271
+
272
+ table tbody tr:last-child td {
273
+ border-bottom: none;
274
+ }
275
+
276
+ table tbody tr.offset {
277
+ background-color: #f0f0f0;
278
+ }
279
+
280
+ form.form_box {
281
+ background-color: #ebf3f9;
282
+ border: 1px solid black;
283
+ border-color: #c3d9ec;
284
+ padding: 10px;
285
+ }
286
+
287
+ form.form_box label {
288
+ color: #0f6ab4 !important;
289
+ }
290
+
291
+ form.form_box input[type=submit] {
292
+ display: block;
293
+ padding: 10px;
294
+ }
295
+
296
+ form.form_box p {
297
+ font-size: 0.9em;
298
+ padding: 0 0 15px 0;
299
+ color: #7e7b6d;
300
+ }
301
+
302
+ form.form_box p a {
303
+ color: #646257;
304
+ }
305
+
306
+ form.form_box p strong {
307
+ color: black;
308
+ }
309
+
310
+ form.form_box p.weak {
311
+ font-size: 0.8em;
312
+ }
313
+
314
+ form.formtastic fieldset.inputs ol li p.inline-hints {
315
+ margin-left: 0;
316
+ font-style: italic;
317
+ font-size: 0.9em;
318
+ margin: 0;
319
+ }
320
+
321
+ form.formtastic fieldset.inputs ol li label {
322
+ display: block;
323
+ clear: both;
324
+ width: auto;
325
+ padding: 0 0 3px 0;
326
+ color: #666666;
327
+ }
328
+
329
+ form.formtastic fieldset.inputs ol li label abbr {
330
+ padding-left: 3px;
331
+ color: #888888;
332
+ }
333
+
334
+ form.formtastic fieldset.inputs ol li.required label {
335
+ color: black;
336
+ }
337
+
338
+ form.formtastic fieldset.inputs ol li.string input, form.formtastic fieldset.inputs ol li.url input, form.formtastic fieldset.inputs ol li.numeric input {
339
+ display: block;
340
+ padding: 4px;
341
+ width: auto;
342
+ clear: both;
343
+ }
344
+
345
+ form.formtastic fieldset.inputs ol li.string input.title, form.formtastic fieldset.inputs ol li.url input.title, form.formtastic fieldset.inputs ol li.numeric input.title {
346
+ font-size: 1.3em;
347
+ }
348
+
349
+ form.formtastic fieldset.inputs ol li.text textarea {
350
+ font-family: "Droid Sans", sans-serif;
351
+ height: 250px;
352
+ padding: 4px;
353
+ display: block;
354
+ clear: both;
355
+ }
356
+
357
+ form.formtastic fieldset.inputs ol li.select select {
358
+ display: block;
359
+ clear: both;
360
+ }
361
+
362
+ form.formtastic fieldset.inputs ol li.boolean {
363
+ float: none;
364
+ clear: both;
365
+ overflow: hidden;
366
+ display: block;
367
+ }
368
+
369
+ form.formtastic fieldset.inputs ol li.boolean input {
370
+ display: block;
371
+ float: left;
372
+ clear: none;
373
+ margin: 0 5px 0 0;
374
+ }
375
+
376
+ form.formtastic fieldset.inputs ol li.boolean label {
377
+ display: block;
378
+ float: left;
379
+ clear: none;
380
+ margin: 0;
381
+ padding: 0;
382
+ }
383
+
384
+ form.formtastic fieldset.buttons {
385
+ margin: 0;
386
+ padding: 0;
387
+ }
388
+
389
+ form.fullwidth ol li.string input, form.fullwidth ol li.url input, form.fullwidth ol li.text textarea, form.fullwidth ol li.numeric input {
390
+ width: 500px !important;
391
+ }
392
+
393
+ body {
394
+ font-family: "Droid Sans", sans-serif;
395
+ }
396
+
397
+ body #content_message {
398
+ margin: 10px 15px;
399
+ font-style: italic;
400
+ color: #999999;
401
+ }
402
+
403
+ body #header {
404
+ background-color: #89bf04;
405
+ padding: 14px;
406
+ }
407
+
408
+ body #header a#logo {
409
+ font-size: 1.5em;
410
+ font-weight: bold;
411
+ text-decoration: none;
412
+ background: transparent url(../images/logo_small.png) no-repeat left center;
413
+ padding: 20px 0 20px 40px;
414
+ color: white;
415
+ }
416
+
417
+ body #header form#api_selector {
418
+ display: block;
419
+ clear: none;
420
+ float: right;
421
+ }
422
+
423
+ body #header form#api_selector .input {
424
+ display: block;
425
+ clear: none;
426
+ float: left;
427
+ margin: 0 10px 0 0;
428
+ }
429
+
430
+ body #header form#api_selector .input input {
431
+ font-size: 0.9em;
432
+ padding: 3px;
433
+ margin: 0;
434
+ }
435
+
436
+ body #header form#api_selector .input input#input_baseUrl {
437
+ width: 400px;
438
+ }
439
+
440
+ body #header form#api_selector .input input#input_apiKey {
441
+ width: 200px;
442
+ }
443
+
444
+ body #header form#api_selector .input a#explore {
445
+ display: block;
446
+ text-decoration: none;
447
+ font-weight: bold;
448
+ padding: 6px 8px;
449
+ font-size: 0.9em;
450
+ color: white;
451
+ background-color: #547f00;
452
+ -moz-border-radius: 4px;
453
+ -webkit-border-radius: 4px;
454
+ -o-border-radius: 4px;
455
+ -ms-border-radius: 4px;
456
+ -khtml-border-radius: 4px;
457
+ border-radius: 4px;
458
+ }
459
+
460
+ body #header form#api_selector .input a#explore:hover {
461
+ background-color: #547f00;
462
+ }
463
+
464
+ body p#colophon {
465
+ margin: 0 15px 40px 15px;
466
+ padding: 10px 0;
467
+ font-size: 0.8em;
468
+ border-top: 1px solid #dddddd;
469
+ font-family: "Droid Sans", sans-serif;
470
+ color: #999999;
471
+ font-style: italic;
472
+ }
473
+
474
+ body p#colophon a {
475
+ text-decoration: none;
476
+ color: #547f00;
477
+ }
478
+
479
+ body ul#resources {
480
+ font-family: "Droid Sans", sans-serif;
481
+ font-size: 0.9em;
482
+ }
483
+
484
+ body ul#resources li.resource {
485
+ border-bottom: 1px solid #dddddd;
486
+ }
487
+
488
+ body ul#resources li.resource:last-child {
489
+ border-bottom: none;
490
+ }
491
+
492
+ body ul#resources li.resource div.heading {
493
+ border: 1px solid transparent;
494
+ float: none;
495
+ clear: both;
496
+ overflow: hidden;
497
+ display: block;
498
+ }
499
+
500
+ body ul#resources li.resource div.heading h2 {
501
+ color: #999999;
502
+ padding-left: 0px;
503
+ display: block;
504
+ clear: none;
505
+ float: left;
506
+ font-family: "Droid Sans", sans-serif;
507
+ font-weight: bold;
508
+ }
509
+
510
+ body ul#resources li.resource div.heading h2 a {
511
+ color: #999999;
512
+ }
513
+
514
+ body ul#resources li.resource div.heading h2 a:hover {
515
+ color: black;
516
+ }
517
+
518
+ body ul#resources li.resource div.heading ul.options {
519
+ float: none;
520
+ clear: both;
521
+ overflow: hidden;
522
+ margin: 0;
523
+ padding: 0;
524
+ display: block;
525
+ clear: none;
526
+ float: right;
527
+ margin: 14px 10px 0 0;
528
+ }
529
+
530
+ body ul#resources li.resource div.heading ul.options li {
531
+ float: left;
532
+ clear: none;
533
+ margin: 0;
534
+ padding: 2px 10px;
535
+ border-right: 1px solid #dddddd;
536
+ }
537
+
538
+ body ul#resources li.resource div.heading ul.options li:first-child, body ul#resources li.resource div.heading ul.options li.first {
539
+ padding-left: 0;
540
+ }
541
+
542
+ body ul#resources li.resource div.heading ul.options li:last-child, body ul#resources li.resource div.heading ul.options li.last {
543
+ padding-right: 0;
544
+ border-right: none;
545
+ }
546
+
547
+ body ul#resources li.resource div.heading ul.options li {
548
+ color: #666666;
549
+ font-size: 0.9em;
550
+ }
551
+
552
+ body ul#resources li.resource div.heading ul.options li a {
553
+ color: #aaaaaa;
554
+ text-decoration: none;
555
+ }
556
+
557
+ body ul#resources li.resource div.heading ul.options li a:hover {
558
+ text-decoration: underline;
559
+ color: black;
560
+ }
561
+
562
+ body ul#resources li.resource:hover div.heading h2 a, body ul#resources li.resource.active div.heading h2 a {
563
+ color: black;
564
+ }
565
+
566
+ body ul#resources li.resource:hover div.heading ul.options li a, body ul#resources li.resource.active div.heading ul.options li a {
567
+ color: #555555;
568
+ }
569
+
570
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get {
571
+ float: none;
572
+ clear: both;
573
+ overflow: hidden;
574
+ display: block;
575
+ margin: 0 0 10px 0;
576
+ padding: 0 0 0 0px;
577
+ }
578
+
579
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading {
580
+ float: none;
581
+ clear: both;
582
+ overflow: hidden;
583
+ display: block;
584
+ margin: 0 0 0 0;
585
+ padding: 0;
586
+ background-color: #e7f0f7;
587
+ border: 1px solid black;
588
+ border-color: #c3d9ec;
589
+ }
590
+
591
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 {
592
+ display: block;
593
+ clear: none;
594
+ float: left;
595
+ width: auto;
596
+ margin: 0;
597
+ padding: 0;
598
+ line-height: 1.1em;
599
+ color: black;
600
+ }
601
+
602
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span {
603
+ margin: 0;
604
+ padding: 0;
605
+ }
606
+
607
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span.http_method a {
608
+ text-transform: uppercase;
609
+ background-color: #0f6ab4;
610
+ text-decoration: none;
611
+ color: white;
612
+ display: inline-block;
613
+ width: 50px;
614
+ font-size: 0.7em;
615
+ text-align: center;
616
+ padding: 7px 0 4px 0;
617
+ -moz-border-radius: 2px;
618
+ -webkit-border-radius: 2px;
619
+ -o-border-radius: 2px;
620
+ -ms-border-radius: 2px;
621
+ -khtml-border-radius: 2px;
622
+ border-radius: 2px;
623
+ }
624
+
625
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span.path {
626
+ padding-left: 10px;
627
+ }
628
+
629
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span.path a {
630
+ color: black;
631
+ text-decoration: none;
632
+ }
633
+
634
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span.path a:hover {
635
+ text-decoration: underline;
636
+ }
637
+
638
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options {
639
+ float: none;
640
+ clear: both;
641
+ overflow: hidden;
642
+ margin: 0;
643
+ padding: 0;
644
+ display: block;
645
+ clear: none;
646
+ float: right;
647
+ margin: 6px 10px 0 0;
648
+ }
649
+
650
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li {
651
+ float: left;
652
+ clear: none;
653
+ margin: 0;
654
+ padding: 2px 10px;
655
+ border-right: 1px solid #dddddd;
656
+ }
657
+
658
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li:first-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li.first {
659
+ padding-left: 0;
660
+ }
661
+
662
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li:last-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li.last {
663
+ padding-right: 0;
664
+ border-right: none;
665
+ }
666
+
667
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li {
668
+ border-right-color: #c3d9ec;
669
+ color: #0f6ab4;
670
+ font-size: 0.9em;
671
+ }
672
+
673
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a {
674
+ color: #0f6ab4;
675
+ text-decoration: none;
676
+ }
677
+
678
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a:hover, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a:active, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a.active {
679
+ text-decoration: underline;
680
+ }
681
+
682
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content {
683
+ background-color: #ebf3f9;
684
+ border: 1px solid black;
685
+ border-color: #c3d9ec;
686
+ border-top: none;
687
+ padding: 10px;
688
+ -moz-border-radius-bottomleft: 6px;
689
+ -webkit-border-bottom-left-radius: 6px;
690
+ -o-border-bottom-left-radius: 6px;
691
+ -ms-border-bottom-left-radius: 6px;
692
+ -khtml-border-bottom-left-radius: 6px;
693
+ border-bottom-left-radius: 6px;
694
+ -moz-border-radius-bottomright: 6px;
695
+ -webkit-border-bottom-right-radius: 6px;
696
+ -o-border-bottom-right-radius: 6px;
697
+ -ms-border-bottom-right-radius: 6px;
698
+ -khtml-border-bottom-right-radius: 6px;
699
+ border-bottom-right-radius: 6px;
700
+ margin: 0 0 20px 0;
701
+ }
702
+
703
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4 {
704
+ color: #0f6ab4;
705
+ font-size: 1.1em;
706
+ margin: 0;
707
+ padding: 15px 0 5px 0px;
708
+ }
709
+
710
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content form input[type='text'].error {
711
+ outline: 2px solid black;
712
+ outline-color: #cc0000;
713
+ }
714
+
715
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header {
716
+ float: none;
717
+ clear: both;
718
+ overflow: hidden;
719
+ display: block;
720
+ }
721
+
722
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header input.submit {
723
+ display: block;
724
+ clear: none;
725
+ float: left;
726
+ padding: 6px 8px;
727
+ }
728
+
729
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header img {
730
+ display: block;
731
+ display: block;
732
+ clear: none;
733
+ float: right;
734
+ }
735
+
736
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header a {
737
+ padding: 4px 0 0 10px;
738
+ color: #6fa5d2;
739
+ display: inline-block;
740
+ font-size: 0.9em;
741
+ }
742
+
743
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.response div.block {
744
+ background-color: #fcf6db;
745
+ border: 1px solid black;
746
+ border-color: #e5e0c6;
747
+ }
748
+
749
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.response div.block pre {
750
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
751
+ padding: 10px;
752
+ font-size: 0.9em;
753
+ max-height: 400px;
754
+ overflow-y: auto;
755
+ }
756
+
757
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post {
758
+ float: none;
759
+ clear: both;
760
+ overflow: hidden;
761
+ display: block;
762
+ margin: 0 0 10px 0;
763
+ padding: 0 0 0 0px;
764
+ }
765
+
766
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading {
767
+ float: none;
768
+ clear: both;
769
+ overflow: hidden;
770
+ display: block;
771
+ margin: 0 0 0 0;
772
+ padding: 0;
773
+ background-color: #e7f6ec;
774
+ border: 1px solid black;
775
+ border-color: #c3e8d1;
776
+ }
777
+
778
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 {
779
+ display: block;
780
+ clear: none;
781
+ float: left;
782
+ width: auto;
783
+ margin: 0;
784
+ padding: 0;
785
+ line-height: 1.1em;
786
+ color: black;
787
+ }
788
+
789
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span {
790
+ margin: 0;
791
+ padding: 0;
792
+ }
793
+
794
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span.http_method a {
795
+ text-transform: uppercase;
796
+ background-color: #10a54a;
797
+ text-decoration: none;
798
+ color: white;
799
+ display: inline-block;
800
+ width: 50px;
801
+ font-size: 0.7em;
802
+ text-align: center;
803
+ padding: 7px 0 4px 0;
804
+ -moz-border-radius: 2px;
805
+ -webkit-border-radius: 2px;
806
+ -o-border-radius: 2px;
807
+ -ms-border-radius: 2px;
808
+ -khtml-border-radius: 2px;
809
+ border-radius: 2px;
810
+ }
811
+
812
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span.path {
813
+ padding-left: 10px;
814
+ }
815
+
816
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span.path a {
817
+ color: black;
818
+ text-decoration: none;
819
+ }
820
+
821
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span.path a:hover {
822
+ text-decoration: underline;
823
+ }
824
+
825
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options {
826
+ float: none;
827
+ clear: both;
828
+ overflow: hidden;
829
+ margin: 0;
830
+ padding: 0;
831
+ display: block;
832
+ clear: none;
833
+ float: right;
834
+ margin: 6px 10px 0 0;
835
+ }
836
+
837
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li {
838
+ float: left;
839
+ clear: none;
840
+ margin: 0;
841
+ padding: 2px 10px;
842
+ border-right: 1px solid #dddddd;
843
+ }
844
+
845
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li:first-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li.first {
846
+ padding-left: 0;
847
+ }
848
+
849
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li:last-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li.last {
850
+ padding-right: 0;
851
+ border-right: none;
852
+ }
853
+
854
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li {
855
+ border-right-color: #c3e8d1;
856
+ color: #10a54a;
857
+ font-size: 0.9em;
858
+ }
859
+
860
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a {
861
+ color: #10a54a;
862
+ text-decoration: none;
863
+ }
864
+
865
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a:hover, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a:active, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a.active {
866
+ text-decoration: underline;
867
+ }
868
+
869
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content {
870
+ background-color: #ebf7f0;
871
+ border: 1px solid black;
872
+ border-color: #c3e8d1;
873
+ border-top: none;
874
+ padding: 10px;
875
+ -moz-border-radius-bottomleft: 6px;
876
+ -webkit-border-bottom-left-radius: 6px;
877
+ -o-border-bottom-left-radius: 6px;
878
+ -ms-border-bottom-left-radius: 6px;
879
+ -khtml-border-bottom-left-radius: 6px;
880
+ border-bottom-left-radius: 6px;
881
+ -moz-border-radius-bottomright: 6px;
882
+ -webkit-border-bottom-right-radius: 6px;
883
+ -o-border-bottom-right-radius: 6px;
884
+ -ms-border-bottom-right-radius: 6px;
885
+ -khtml-border-bottom-right-radius: 6px;
886
+ border-bottom-right-radius: 6px;
887
+ margin: 0 0 20px 0;
888
+ }
889
+
890
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4 {
891
+ color: #10a54a;
892
+ font-size: 1.1em;
893
+ margin: 0;
894
+ padding: 15px 0 5px 0px;
895
+ }
896
+
897
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content form input[type='text'].error {
898
+ outline: 2px solid black;
899
+ outline-color: #cc0000;
900
+ }
901
+
902
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header {
903
+ float: none;
904
+ clear: both;
905
+ overflow: hidden;
906
+ display: block;
907
+ }
908
+
909
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header input.submit {
910
+ display: block;
911
+ clear: none;
912
+ float: left;
913
+ padding: 6px 8px;
914
+ }
915
+
916
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header img {
917
+ display: block;
918
+ display: block;
919
+ clear: none;
920
+ float: right;
921
+ }
922
+
923
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header a {
924
+ padding: 4px 0 0 10px;
925
+ color: #6fc992;
926
+ display: inline-block;
927
+ font-size: 0.9em;
928
+ }
929
+
930
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.response div.block {
931
+ background-color: #fcf6db;
932
+ border: 1px solid black;
933
+ border-color: #e5e0c6;
934
+ }
935
+
936
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.response div.block pre {
937
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
938
+ padding: 10px;
939
+ font-size: 0.9em;
940
+ max-height: 400px;
941
+ overflow-y: auto;
942
+ }
943
+
944
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put {
945
+ float: none;
946
+ clear: both;
947
+ overflow: hidden;
948
+ display: block;
949
+ margin: 0 0 10px 0;
950
+ padding: 0 0 0 0px;
951
+ }
952
+
953
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading {
954
+ float: none;
955
+ clear: both;
956
+ overflow: hidden;
957
+ display: block;
958
+ margin: 0 0 0 0;
959
+ padding: 0;
960
+ background-color: #f9f2e9;
961
+ border: 1px solid black;
962
+ border-color: #f0e0ca;
963
+ }
964
+
965
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 {
966
+ display: block;
967
+ clear: none;
968
+ float: left;
969
+ width: auto;
970
+ margin: 0;
971
+ padding: 0;
972
+ line-height: 1.1em;
973
+ color: black;
974
+ }
975
+
976
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span {
977
+ margin: 0;
978
+ padding: 0;
979
+ }
980
+
981
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span.http_method a {
982
+ text-transform: uppercase;
983
+ background-color: #c5862b;
984
+ text-decoration: none;
985
+ color: white;
986
+ display: inline-block;
987
+ width: 50px;
988
+ font-size: 0.7em;
989
+ text-align: center;
990
+ padding: 7px 0 4px 0;
991
+ -moz-border-radius: 2px;
992
+ -webkit-border-radius: 2px;
993
+ -o-border-radius: 2px;
994
+ -ms-border-radius: 2px;
995
+ -khtml-border-radius: 2px;
996
+ border-radius: 2px;
997
+ }
998
+
999
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span.path {
1000
+ padding-left: 10px;
1001
+ }
1002
+
1003
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span.path a {
1004
+ color: black;
1005
+ text-decoration: none;
1006
+ }
1007
+
1008
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span.path a:hover {
1009
+ text-decoration: underline;
1010
+ }
1011
+
1012
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options {
1013
+ float: none;
1014
+ clear: both;
1015
+ overflow: hidden;
1016
+ margin: 0;
1017
+ padding: 0;
1018
+ display: block;
1019
+ clear: none;
1020
+ float: right;
1021
+ margin: 6px 10px 0 0;
1022
+ }
1023
+
1024
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li {
1025
+ float: left;
1026
+ clear: none;
1027
+ margin: 0;
1028
+ padding: 2px 10px;
1029
+ border-right: 1px solid #dddddd;
1030
+ }
1031
+
1032
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li:first-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li.first {
1033
+ padding-left: 0;
1034
+ }
1035
+
1036
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li:last-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li.last {
1037
+ padding-right: 0;
1038
+ border-right: none;
1039
+ }
1040
+
1041
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li {
1042
+ border-right-color: #f0e0ca;
1043
+ color: #c5862b;
1044
+ font-size: 0.9em;
1045
+ }
1046
+
1047
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a {
1048
+ color: #c5862b;
1049
+ text-decoration: none;
1050
+ }
1051
+
1052
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a:hover, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a:active, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a.active {
1053
+ text-decoration: underline;
1054
+ }
1055
+
1056
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content {
1057
+ background-color: #faf5ee;
1058
+ border: 1px solid black;
1059
+ border-color: #f0e0ca;
1060
+ border-top: none;
1061
+ padding: 10px;
1062
+ -moz-border-radius-bottomleft: 6px;
1063
+ -webkit-border-bottom-left-radius: 6px;
1064
+ -o-border-bottom-left-radius: 6px;
1065
+ -ms-border-bottom-left-radius: 6px;
1066
+ -khtml-border-bottom-left-radius: 6px;
1067
+ border-bottom-left-radius: 6px;
1068
+ -moz-border-radius-bottomright: 6px;
1069
+ -webkit-border-bottom-right-radius: 6px;
1070
+ -o-border-bottom-right-radius: 6px;
1071
+ -ms-border-bottom-right-radius: 6px;
1072
+ -khtml-border-bottom-right-radius: 6px;
1073
+ border-bottom-right-radius: 6px;
1074
+ margin: 0 0 20px 0;
1075
+ }
1076
+
1077
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4 {
1078
+ color: #c5862b;
1079
+ font-size: 1.1em;
1080
+ margin: 0;
1081
+ padding: 15px 0 5px 0px;
1082
+ }
1083
+
1084
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content form input[type='text'].error {
1085
+ outline: 2px solid black;
1086
+ outline-color: #cc0000;
1087
+ }
1088
+
1089
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header {
1090
+ float: none;
1091
+ clear: both;
1092
+ overflow: hidden;
1093
+ display: block;
1094
+ }
1095
+
1096
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header input.submit {
1097
+ display: block;
1098
+ clear: none;
1099
+ float: left;
1100
+ padding: 6px 8px;
1101
+ }
1102
+
1103
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header img {
1104
+ display: block;
1105
+ display: block;
1106
+ clear: none;
1107
+ float: right;
1108
+ }
1109
+
1110
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header a {
1111
+ padding: 4px 0 0 10px;
1112
+ color: #dcb67f;
1113
+ display: inline-block;
1114
+ font-size: 0.9em;
1115
+ }
1116
+
1117
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.response div.block {
1118
+ background-color: #fcf6db;
1119
+ border: 1px solid black;
1120
+ border-color: #e5e0c6;
1121
+ }
1122
+
1123
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.response div.block pre {
1124
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
1125
+ padding: 10px;
1126
+ font-size: 0.9em;
1127
+ max-height: 400px;
1128
+ overflow-y: auto;
1129
+ }
1130
+
1131
+
1132
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch {
1133
+ float: none;
1134
+ clear: both;
1135
+ overflow: hidden;
1136
+ display: block;
1137
+ margin: 0 0 10px 0;
1138
+ padding: 0 0 0 0px;
1139
+ }
1140
+
1141
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading {
1142
+ float: none;
1143
+ clear: both;
1144
+ overflow: hidden;
1145
+ display: block;
1146
+ margin: 0 0 0 0;
1147
+ padding: 0;
1148
+ background-color: #FCE9E3;
1149
+ border: 1px solid black;
1150
+ border-color: #F5D5C3;
1151
+ }
1152
+
1153
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 {
1154
+ display: block;
1155
+ clear: none;
1156
+ float: left;
1157
+ width: auto;
1158
+ margin: 0;
1159
+ padding: 0;
1160
+ line-height: 1.1em;
1161
+ color: black;
1162
+ }
1163
+
1164
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span {
1165
+ margin: 0;
1166
+ padding: 0;
1167
+ }
1168
+
1169
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span.http_method a {
1170
+ text-transform: uppercase;
1171
+ background-color: #D38042;
1172
+ text-decoration: none;
1173
+ color: white;
1174
+ display: inline-block;
1175
+ width: 50px;
1176
+ font-size: 0.7em;
1177
+ text-align: center;
1178
+ padding: 7px 0 4px 0;
1179
+ -moz-border-radius: 2px;
1180
+ -webkit-border-radius: 2px;
1181
+ -o-border-radius: 2px;
1182
+ -ms-border-radius: 2px;
1183
+ -khtml-border-radius: 2px;
1184
+ border-radius: 2px;
1185
+ }
1186
+
1187
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span.path {
1188
+ padding-left: 10px;
1189
+ }
1190
+
1191
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span.path a {
1192
+ color: black;
1193
+ text-decoration: none;
1194
+ }
1195
+
1196
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span.path a:hover {
1197
+ text-decoration: underline;
1198
+ }
1199
+
1200
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options {
1201
+ float: none;
1202
+ clear: both;
1203
+ overflow: hidden;
1204
+ margin: 0;
1205
+ padding: 0;
1206
+ display: block;
1207
+ clear: none;
1208
+ float: right;
1209
+ margin: 6px 10px 0 0;
1210
+ }
1211
+
1212
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li {
1213
+ float: left;
1214
+ clear: none;
1215
+ margin: 0;
1216
+ padding: 2px 10px;
1217
+ border-right: 1px solid #dddddd;
1218
+ }
1219
+
1220
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li:first-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li.first {
1221
+ padding-left: 0;
1222
+ }
1223
+
1224
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li:last-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li.last {
1225
+ padding-right: 0;
1226
+ border-right: none;
1227
+ }
1228
+
1229
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li {
1230
+ border-right-color: #f0cecb;
1231
+ color: #D38042;
1232
+ font-size: 0.9em;
1233
+ }
1234
+
1235
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a {
1236
+ color: #D38042;
1237
+ text-decoration: none;
1238
+ }
1239
+
1240
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a:hover, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a:active, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a.active {
1241
+ text-decoration: underline;
1242
+ }
1243
+
1244
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content {
1245
+ background-color: #faf0ef;
1246
+ border: 1px solid black;
1247
+ border-color: #f0cecb;
1248
+ border-top: none;
1249
+ padding: 10px;
1250
+ -moz-border-radius-bottomleft: 6px;
1251
+ -webkit-border-bottom-left-radius: 6px;
1252
+ -o-border-bottom-left-radius: 6px;
1253
+ -ms-border-bottom-left-radius: 6px;
1254
+ -khtml-border-bottom-left-radius: 6px;
1255
+ border-bottom-left-radius: 6px;
1256
+ -moz-border-radius-bottomright: 6px;
1257
+ -webkit-border-bottom-right-radius: 6px;
1258
+ -o-border-bottom-right-radius: 6px;
1259
+ -ms-border-bottom-right-radius: 6px;
1260
+ -khtml-border-bottom-right-radius: 6px;
1261
+ border-bottom-right-radius: 6px;
1262
+ margin: 0 0 20px 0;
1263
+ }
1264
+
1265
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content h4 {
1266
+ color: #D38042;
1267
+ font-size: 1.1em;
1268
+ margin: 0;
1269
+ padding: 15px 0 5px 0px;
1270
+ }
1271
+
1272
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content form input[type='text'].error {
1273
+ outline: 2px solid black;
1274
+ outline-color: #F5D5C3;
1275
+ }
1276
+
1277
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header {
1278
+ float: none;
1279
+ clear: both;
1280
+ overflow: hidden;
1281
+ display: block;
1282
+ }
1283
+
1284
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header input.submit {
1285
+ display: block;
1286
+ clear: none;
1287
+ float: left;
1288
+ padding: 6px 8px;
1289
+ }
1290
+
1291
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header img {
1292
+ display: block;
1293
+ display: block;
1294
+ clear: none;
1295
+ float: right;
1296
+ }
1297
+
1298
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header a {
1299
+ padding: 4px 0 0 10px;
1300
+ color: #dcb67f;
1301
+ display: inline-block;
1302
+ font-size: 0.9em;
1303
+ }
1304
+
1305
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.response div.block {
1306
+ background-color: #fcf6db;
1307
+ border: 1px solid black;
1308
+ border-color: #e5e0c6;
1309
+ }
1310
+
1311
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.response div.block pre {
1312
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
1313
+ padding: 10px;
1314
+ font-size: 0.9em;
1315
+ max-height: 400px;
1316
+ overflow-y: auto;
1317
+ }
1318
+
1319
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete {
1320
+ float: none;
1321
+ clear: both;
1322
+ overflow: hidden;
1323
+ display: block;
1324
+ margin: 0 0 10px 0;
1325
+ padding: 0 0 0 0px;
1326
+ }
1327
+
1328
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading {
1329
+ float: none;
1330
+ clear: both;
1331
+ overflow: hidden;
1332
+ display: block;
1333
+ margin: 0 0 0 0;
1334
+ padding: 0;
1335
+ background-color: #f5e8e8;
1336
+ border: 1px solid black;
1337
+ border-color: #e8c6c7;
1338
+ }
1339
+
1340
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 {
1341
+ display: block;
1342
+ clear: none;
1343
+ float: left;
1344
+ width: auto;
1345
+ margin: 0;
1346
+ padding: 0;
1347
+ line-height: 1.1em;
1348
+ color: black;
1349
+ }
1350
+
1351
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span {
1352
+ margin: 0;
1353
+ padding: 0;
1354
+ }
1355
+
1356
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span.http_method a {
1357
+ text-transform: uppercase;
1358
+ background-color: #a41e22;
1359
+ text-decoration: none;
1360
+ color: white;
1361
+ display: inline-block;
1362
+ width: 50px;
1363
+ font-size: 0.7em;
1364
+ text-align: center;
1365
+ padding: 7px 0 4px 0;
1366
+ -moz-border-radius: 2px;
1367
+ -webkit-border-radius: 2px;
1368
+ -o-border-radius: 2px;
1369
+ -ms-border-radius: 2px;
1370
+ -khtml-border-radius: 2px;
1371
+ border-radius: 2px;
1372
+ }
1373
+
1374
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span.path {
1375
+ padding-left: 10px;
1376
+ }
1377
+
1378
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span.path a {
1379
+ color: black;
1380
+ text-decoration: none;
1381
+ }
1382
+
1383
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span.path a:hover {
1384
+ text-decoration: underline;
1385
+ }
1386
+
1387
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options {
1388
+ float: none;
1389
+ clear: both;
1390
+ overflow: hidden;
1391
+ margin: 0;
1392
+ padding: 0;
1393
+ display: block;
1394
+ clear: none;
1395
+ float: right;
1396
+ margin: 6px 10px 0 0;
1397
+ }
1398
+
1399
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li {
1400
+ float: left;
1401
+ clear: none;
1402
+ margin: 0;
1403
+ padding: 2px 10px;
1404
+ border-right: 1px solid #dddddd;
1405
+ }
1406
+
1407
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li:first-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li.first {
1408
+ padding-left: 0;
1409
+ }
1410
+
1411
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li:last-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li.last {
1412
+ padding-right: 0;
1413
+ border-right: none;
1414
+ }
1415
+
1416
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li {
1417
+ border-right-color: #e8c6c7;
1418
+ color: #a41e22;
1419
+ font-size: 0.9em;
1420
+ }
1421
+
1422
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a {
1423
+ color: #a41e22;
1424
+ text-decoration: none;
1425
+ }
1426
+
1427
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a:hover, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a:active, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a.active {
1428
+ text-decoration: underline;
1429
+ }
1430
+
1431
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
1432
+ background-color: #f7eded;
1433
+ border: 1px solid black;
1434
+ border-color: #e8c6c7;
1435
+ border-top: none;
1436
+ padding: 10px;
1437
+ -moz-border-radius-bottomleft: 6px;
1438
+ -webkit-border-bottom-left-radius: 6px;
1439
+ -o-border-bottom-left-radius: 6px;
1440
+ -ms-border-bottom-left-radius: 6px;
1441
+ -khtml-border-bottom-left-radius: 6px;
1442
+ border-bottom-left-radius: 6px;
1443
+ -moz-border-radius-bottomright: 6px;
1444
+ -webkit-border-bottom-right-radius: 6px;
1445
+ -o-border-bottom-right-radius: 6px;
1446
+ -ms-border-bottom-right-radius: 6px;
1447
+ -khtml-border-bottom-right-radius: 6px;
1448
+ border-bottom-right-radius: 6px;
1449
+ margin: 0 0 20px 0;
1450
+ }
1451
+
1452
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4 {
1453
+ color: #a41e22;
1454
+ font-size: 1.1em;
1455
+ margin: 0;
1456
+ padding: 15px 0 5px 0px;
1457
+ }
1458
+
1459
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content form input[type='text'].error {
1460
+ outline: 2px solid black;
1461
+ outline-color: #cc0000;
1462
+ }
1463
+
1464
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header {
1465
+ float: none;
1466
+ clear: both;
1467
+ overflow: hidden;
1468
+ display: block;
1469
+ }
1470
+
1471
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header input.submit {
1472
+ display: block;
1473
+ clear: none;
1474
+ float: left;
1475
+ padding: 6px 8px;
1476
+ }
1477
+
1478
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header img {
1479
+ display: block;
1480
+ display: block;
1481
+ clear: none;
1482
+ float: right;
1483
+ }
1484
+
1485
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header a {
1486
+ padding: 4px 0 0 10px;
1487
+ color: #c8787a;
1488
+ display: inline-block;
1489
+ font-size: 0.9em;
1490
+ }
1491
+
1492
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.response div.block {
1493
+ background-color: #fcf6db;
1494
+ border: 1px solid black;
1495
+ border-color: #e5e0c6;
1496
+ }
1497
+
1498
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.response div.block pre {
1499
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
1500
+ padding: 10px;
1501
+ font-size: 0.9em;
1502
+ max-height: 400px;
1503
+ overflow-y: auto;
1504
+ }
1505
+
1506
+
1507
+ .model-signature {
1508
+ font-family: "Droid Sans", sans-serif;
1509
+ font-size: 1em;
1510
+ line-height: 1.5em;
1511
+ }
1512
+ .model-signature .description span {
1513
+ font-size: 0.9em;
1514
+ line-height: 1.5em;
1515
+ }
1516
+ .model-signature .description span:nth-child(odd) { color:#333; }
1517
+ .model-signature .description span:nth-child(even) { color:#C5862B; }
1518
+ .model-signature .signature-nav a {
1519
+ text-decoration: none;
1520
+ color: #AAA;
1521
+ }
1522
+
1523
+ .model-signature pre {
1524
+ font-size: .85em;
1525
+ line-height: 1.2em;
1526
+ overflow: auto;
1527
+ max-height: 200px;
1528
+ cursor: pointer;
1529
+ }
1530
+
1531
+ .model-signature pre:hover {
1532
+ background-color: #ffffdd;
1533
+ }
1534
+
1535
+ .model-signature .snippet small {
1536
+ font-size: 0.75em;
1537
+ }
1538
+
1539
+ .model-signature .signature-container {
1540
+ clear: both;
1541
+ }
1542
+
1543
+ .model-signature .signature-nav a:hover {
1544
+ text-decoration: underline;
1545
+ color: black;
1546
+ }
1547
+
1548
+ .model-signature .signature-nav .selected {
1549
+ color: black;
1550
+ text-decoration: none;
1551
+ }
1552
+
1553
+ .model-signature ul.signature-nav {
1554
+ float: none;
1555
+ clear: both;
1556
+ overflow: hidden;
1557
+ margin: 0;
1558
+ padding: 0;
1559
+ display: block;
1560
+ clear: none;
1561
+ float: right;
1562
+ margin-right: 5px;
1563
+ margin-bottom: 5px;
1564
+ }
1565
+
1566
+ .model-signature ul.signature-nav li {
1567
+ float: left;
1568
+ clear: none;
1569
+ margin: 0;
1570
+ padding: 2px 10px;
1571
+ border-right: 1px solid #dddddd;
1572
+ }
1573
+
1574
+ .model-signature ul.signature-nav li:last-child {
1575
+ padding-right: 0;
1576
+ border-right: none;
1577
+ }
1578
+
1579
+ pre code {
1580
+ background: none;
1581
+ }
1582
+
1583
+ .content > .content-type > div > label {
1584
+ clear: both;
1585
+ display: block;
1586
+ color: #0F6AB4;
1587
+ font-size: 1.1em;
1588
+ margin: 0;
1589
+ padding: 15px 0 5px 0px;
1590
+ }