westfield_swagger 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +7 -0
  2. data/.github/ISSUE_TEMPLATE +16 -0
  3. data/.github/PULL_REQUEST_TEMPLATE +19 -0
  4. data/.gitignore +11 -0
  5. data/.rspec +3 -0
  6. data/.travis.yml +11 -0
  7. data/Gemfile +14 -0
  8. data/LICENSE +201 -0
  9. data/README.md +46 -0
  10. data/Rakefile +31 -0
  11. data/app/controllers/westfield_swagger/application_controller.rb +4 -0
  12. data/app/controllers/westfield_swagger/swagger_controller.rb +39 -0
  13. data/app/helpers/westfield_swagger/application_helper.rb +9 -0
  14. data/app/views/westfield_swagger/swagger/index.html.erb +108 -0
  15. data/bin/console +15 -0
  16. data/bin/rails +12 -0
  17. data/bin/setup +7 -0
  18. data/config/routes.rb +10 -0
  19. data/contributing.md +13 -0
  20. data/lib/generators/swagger/USAGE +9 -0
  21. data/lib/generators/swagger/swagger_generator.rb +9 -0
  22. data/lib/generators/swagger/templates/example.yml +104 -0
  23. data/lib/generators/swagger/templates/spec.rb +22 -0
  24. data/lib/tasks/westfield_swagger_tasks.rake +4 -0
  25. data/lib/westfield_swagger/api_specification.rb +123 -0
  26. data/lib/westfield_swagger/engine.rb +34 -0
  27. data/lib/westfield_swagger/utilities.rb +10 -0
  28. data/lib/westfield_swagger/version.rb +3 -0
  29. data/lib/westfield_swagger.rb +5 -0
  30. data/public/swagger/css/print.css +1175 -0
  31. data/public/swagger/css/reset.css +125 -0
  32. data/public/swagger/css/screen.css +1282 -0
  33. data/public/swagger/css/style.css +250 -0
  34. data/public/swagger/css/typography.css +26 -0
  35. data/public/swagger/fonts/droid-sans-v6-latin-700.eot +0 -0
  36. data/public/swagger/fonts/droid-sans-v6-latin-700.svg +411 -0
  37. data/public/swagger/fonts/droid-sans-v6-latin-700.ttf +0 -0
  38. data/public/swagger/fonts/droid-sans-v6-latin-700.woff +0 -0
  39. data/public/swagger/fonts/droid-sans-v6-latin-700.woff2 +0 -0
  40. data/public/swagger/fonts/droid-sans-v6-latin-regular.eot +0 -0
  41. data/public/swagger/fonts/droid-sans-v6-latin-regular.svg +403 -0
  42. data/public/swagger/fonts/droid-sans-v6-latin-regular.ttf +0 -0
  43. data/public/swagger/fonts/droid-sans-v6-latin-regular.woff +0 -0
  44. data/public/swagger/fonts/droid-sans-v6-latin-regular.woff2 +0 -0
  45. data/public/swagger/images/explorer_icons.png +0 -0
  46. data/public/swagger/images/favicon-16x16.png +0 -0
  47. data/public/swagger/images/favicon-32x32.png +0 -0
  48. data/public/swagger/images/favicon.ico +0 -0
  49. data/public/swagger/images/logo_small.png +0 -0
  50. data/public/swagger/images/pet_store_api.png +0 -0
  51. data/public/swagger/images/throbber.gif +0 -0
  52. data/public/swagger/images/wordnik_api.png +0 -0
  53. data/public/swagger/lang/en.js +53 -0
  54. data/public/swagger/lang/es.js +52 -0
  55. data/public/swagger/lang/fr.js +53 -0
  56. data/public/swagger/lang/ja.js +53 -0
  57. data/public/swagger/lang/pt.js +53 -0
  58. data/public/swagger/lang/ru.js +52 -0
  59. data/public/swagger/lang/tr.js +53 -0
  60. data/public/swagger/lang/translator.js +39 -0
  61. data/public/swagger/lang/zh-cn.js +53 -0
  62. data/public/swagger/lib/backbone-min.js +15 -0
  63. data/public/swagger/lib/handlebars-2.0.0.js +28 -0
  64. data/public/swagger/lib/highlight.7.3.pack.js +1 -0
  65. data/public/swagger/lib/jquery-1.8.0.min.js +2 -0
  66. data/public/swagger/lib/jquery.ba-bbq.min.js +18 -0
  67. data/public/swagger/lib/jquery.slideto.min.js +1 -0
  68. data/public/swagger/lib/jquery.wiggle.min.js +8 -0
  69. data/public/swagger/lib/marked.js +1272 -0
  70. data/public/swagger/lib/swagger-oauth.js +294 -0
  71. data/public/swagger/lib/underscore-min.js +6 -0
  72. data/public/swagger/lib/underscore-min.map +1 -0
  73. data/public/swagger/o2c.html +20 -0
  74. data/public/swagger/swagger-ui.js +32291 -0
  75. data/westfield_swagger.gemspec +24 -0
  76. metadata +152 -0
@@ -0,0 +1,125 @@
1
+ /* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 */
2
+ html,
3
+ body,
4
+ div,
5
+ span,
6
+ applet,
7
+ object,
8
+ iframe,
9
+ h1,
10
+ h2,
11
+ h3,
12
+ h4,
13
+ h5,
14
+ h6,
15
+ p,
16
+ blockquote,
17
+ pre,
18
+ a,
19
+ abbr,
20
+ acronym,
21
+ address,
22
+ big,
23
+ cite,
24
+ code,
25
+ del,
26
+ dfn,
27
+ em,
28
+ img,
29
+ ins,
30
+ kbd,
31
+ q,
32
+ s,
33
+ samp,
34
+ small,
35
+ strike,
36
+ strong,
37
+ sub,
38
+ sup,
39
+ tt,
40
+ var,
41
+ b,
42
+ u,
43
+ i,
44
+ center,
45
+ dl,
46
+ dt,
47
+ dd,
48
+ ol,
49
+ ul,
50
+ li,
51
+ fieldset,
52
+ form,
53
+ label,
54
+ legend,
55
+ table,
56
+ caption,
57
+ tbody,
58
+ tfoot,
59
+ thead,
60
+ tr,
61
+ th,
62
+ td,
63
+ article,
64
+ aside,
65
+ canvas,
66
+ details,
67
+ embed,
68
+ figure,
69
+ figcaption,
70
+ footer,
71
+ header,
72
+ hgroup,
73
+ menu,
74
+ nav,
75
+ output,
76
+ ruby,
77
+ section,
78
+ summary,
79
+ time,
80
+ mark,
81
+ audio,
82
+ video {
83
+ margin: 0;
84
+ padding: 0;
85
+ border: 0;
86
+ font-size: 100%;
87
+ font: inherit;
88
+ vertical-align: baseline;
89
+ }
90
+ /* HTML5 display-role reset for older browsers */
91
+ article,
92
+ aside,
93
+ details,
94
+ figcaption,
95
+ figure,
96
+ footer,
97
+ header,
98
+ hgroup,
99
+ menu,
100
+ nav,
101
+ section {
102
+ display: block;
103
+ }
104
+ body {
105
+ line-height: 1;
106
+ }
107
+ ol,
108
+ ul {
109
+ list-style: none;
110
+ }
111
+ blockquote,
112
+ q {
113
+ quotes: none;
114
+ }
115
+ blockquote:before,
116
+ blockquote:after,
117
+ q:before,
118
+ q:after {
119
+ content: '';
120
+ content: none;
121
+ }
122
+ table {
123
+ border-collapse: collapse;
124
+ border-spacing: 0;
125
+ }
@@ -0,0 +1,1282 @@
1
+ /* Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org> */
2
+ .swagger-section pre code {
3
+ display: block;
4
+ padding: 0.5em;
5
+ background: #F0F0F0;
6
+ }
7
+ .swagger-section pre code,
8
+ .swagger-section pre .subst,
9
+ .swagger-section pre .tag .title,
10
+ .swagger-section pre .lisp .title,
11
+ .swagger-section pre .clojure .built_in,
12
+ .swagger-section pre .nginx .title {
13
+ color: black;
14
+ }
15
+ .swagger-section pre .string,
16
+ .swagger-section pre .title,
17
+ .swagger-section pre .constant,
18
+ .swagger-section pre .parent,
19
+ .swagger-section pre .tag .value,
20
+ .swagger-section pre .rules .value,
21
+ .swagger-section pre .rules .value .number,
22
+ .swagger-section pre .preprocessor,
23
+ .swagger-section pre .ruby .symbol,
24
+ .swagger-section pre .ruby .symbol .string,
25
+ .swagger-section pre .aggregate,
26
+ .swagger-section pre .template_tag,
27
+ .swagger-section pre .django .variable,
28
+ .swagger-section pre .smalltalk .class,
29
+ .swagger-section pre .addition,
30
+ .swagger-section pre .flow,
31
+ .swagger-section pre .stream,
32
+ .swagger-section pre .bash .variable,
33
+ .swagger-section pre .apache .tag,
34
+ .swagger-section pre .apache .cbracket,
35
+ .swagger-section pre .tex .command,
36
+ .swagger-section pre .tex .special,
37
+ .swagger-section pre .erlang_repl .function_or_atom,
38
+ .swagger-section pre .markdown .header {
39
+ color: #800;
40
+ }
41
+ .swagger-section pre .comment,
42
+ .swagger-section pre .annotation,
43
+ .swagger-section pre .template_comment,
44
+ .swagger-section pre .diff .header,
45
+ .swagger-section pre .chunk,
46
+ .swagger-section pre .markdown .blockquote {
47
+ color: #888;
48
+ }
49
+ .swagger-section pre .number,
50
+ .swagger-section pre .date,
51
+ .swagger-section pre .regexp,
52
+ .swagger-section pre .literal,
53
+ .swagger-section pre .smalltalk .symbol,
54
+ .swagger-section pre .smalltalk .char,
55
+ .swagger-section pre .go .constant,
56
+ .swagger-section pre .change,
57
+ .swagger-section pre .markdown .bullet,
58
+ .swagger-section pre .markdown .link_url {
59
+ color: #080;
60
+ }
61
+ .swagger-section pre .label,
62
+ .swagger-section pre .javadoc,
63
+ .swagger-section pre .ruby .string,
64
+ .swagger-section pre .decorator,
65
+ .swagger-section pre .filter .argument,
66
+ .swagger-section pre .localvars,
67
+ .swagger-section pre .array,
68
+ .swagger-section pre .attr_selector,
69
+ .swagger-section pre .important,
70
+ .swagger-section pre .pseudo,
71
+ .swagger-section pre .pi,
72
+ .swagger-section pre .doctype,
73
+ .swagger-section pre .deletion,
74
+ .swagger-section pre .envvar,
75
+ .swagger-section pre .shebang,
76
+ .swagger-section pre .apache .sqbracket,
77
+ .swagger-section pre .nginx .built_in,
78
+ .swagger-section pre .tex .formula,
79
+ .swagger-section pre .erlang_repl .reserved,
80
+ .swagger-section pre .prompt,
81
+ .swagger-section pre .markdown .link_label,
82
+ .swagger-section pre .vhdl .attribute,
83
+ .swagger-section pre .clojure .attribute,
84
+ .swagger-section pre .coffeescript .property {
85
+ color: #8888ff;
86
+ }
87
+ .swagger-section pre .keyword,
88
+ .swagger-section pre .id,
89
+ .swagger-section pre .phpdoc,
90
+ .swagger-section pre .title,
91
+ .swagger-section pre .built_in,
92
+ .swagger-section pre .aggregate,
93
+ .swagger-section pre .css .tag,
94
+ .swagger-section pre .javadoctag,
95
+ .swagger-section pre .phpdoc,
96
+ .swagger-section pre .yardoctag,
97
+ .swagger-section pre .smalltalk .class,
98
+ .swagger-section pre .winutils,
99
+ .swagger-section pre .bash .variable,
100
+ .swagger-section pre .apache .tag,
101
+ .swagger-section pre .go .typename,
102
+ .swagger-section pre .tex .command,
103
+ .swagger-section pre .markdown .strong,
104
+ .swagger-section pre .request,
105
+ .swagger-section pre .status {
106
+ font-weight: bold;
107
+ }
108
+ .swagger-section pre .markdown .emphasis {
109
+ font-style: italic;
110
+ }
111
+ .swagger-section pre .nginx .built_in {
112
+ font-weight: normal;
113
+ }
114
+ .swagger-section pre .coffeescript .javascript,
115
+ .swagger-section pre .javascript .xml,
116
+ .swagger-section pre .tex .formula,
117
+ .swagger-section pre .xml .javascript,
118
+ .swagger-section pre .xml .vbscript,
119
+ .swagger-section pre .xml .css,
120
+ .swagger-section pre .xml .cdata {
121
+ opacity: 0.5;
122
+ }
123
+ .swagger-section .swagger-ui-wrap {
124
+ line-height: 1;
125
+ font-family: "Droid Sans", sans-serif;
126
+ max-width: 960px;
127
+ margin-left: auto;
128
+ margin-right: auto;
129
+ }
130
+ .swagger-section .swagger-ui-wrap b,
131
+ .swagger-section .swagger-ui-wrap strong {
132
+ font-family: "Droid Sans", sans-serif;
133
+ font-weight: bold;
134
+ }
135
+ .swagger-section .swagger-ui-wrap q,
136
+ .swagger-section .swagger-ui-wrap blockquote {
137
+ quotes: none;
138
+ }
139
+ .swagger-section .swagger-ui-wrap p {
140
+ line-height: 1.4em;
141
+ padding: 0 0 10px;
142
+ color: #333333;
143
+ }
144
+ .swagger-section .swagger-ui-wrap q:before,
145
+ .swagger-section .swagger-ui-wrap q:after,
146
+ .swagger-section .swagger-ui-wrap blockquote:before,
147
+ .swagger-section .swagger-ui-wrap blockquote:after {
148
+ content: none;
149
+ }
150
+ .swagger-section .swagger-ui-wrap .heading_with_menu h1,
151
+ .swagger-section .swagger-ui-wrap .heading_with_menu h2,
152
+ .swagger-section .swagger-ui-wrap .heading_with_menu h3,
153
+ .swagger-section .swagger-ui-wrap .heading_with_menu h4,
154
+ .swagger-section .swagger-ui-wrap .heading_with_menu h5,
155
+ .swagger-section .swagger-ui-wrap .heading_with_menu h6 {
156
+ display: block;
157
+ clear: none;
158
+ float: left;
159
+ -moz-box-sizing: border-box;
160
+ -webkit-box-sizing: border-box;
161
+ -ms-box-sizing: border-box;
162
+ box-sizing: border-box;
163
+ width: 60%;
164
+ }
165
+ .swagger-section .swagger-ui-wrap table {
166
+ border-collapse: collapse;
167
+ border-spacing: 0;
168
+ }
169
+ .swagger-section .swagger-ui-wrap table thead tr th {
170
+ padding: 5px;
171
+ font-size: 0.9em;
172
+ color: #666666;
173
+ border-bottom: 1px solid #999999;
174
+ }
175
+ .swagger-section .swagger-ui-wrap table tbody tr:last-child td {
176
+ border-bottom: none;
177
+ }
178
+ .swagger-section .swagger-ui-wrap table tbody tr.offset {
179
+ background-color: #f0f0f0;
180
+ }
181
+ .swagger-section .swagger-ui-wrap table tbody tr td {
182
+ padding: 6px;
183
+ font-size: 0.9em;
184
+ border-bottom: 1px solid #cccccc;
185
+ vertical-align: top;
186
+ line-height: 1.3em;
187
+ }
188
+ .swagger-section .swagger-ui-wrap ol {
189
+ margin: 0px 0 10px;
190
+ padding: 0 0 0 18px;
191
+ list-style-type: decimal;
192
+ }
193
+ .swagger-section .swagger-ui-wrap ol li {
194
+ padding: 5px 0px;
195
+ font-size: 0.9em;
196
+ color: #333333;
197
+ }
198
+ .swagger-section .swagger-ui-wrap ol,
199
+ .swagger-section .swagger-ui-wrap ul {
200
+ list-style: none;
201
+ }
202
+ .swagger-section .swagger-ui-wrap h1 a,
203
+ .swagger-section .swagger-ui-wrap h2 a,
204
+ .swagger-section .swagger-ui-wrap h3 a,
205
+ .swagger-section .swagger-ui-wrap h4 a,
206
+ .swagger-section .swagger-ui-wrap h5 a,
207
+ .swagger-section .swagger-ui-wrap h6 a {
208
+ text-decoration: none;
209
+ }
210
+ .swagger-section .swagger-ui-wrap h1 a:hover,
211
+ .swagger-section .swagger-ui-wrap h2 a:hover,
212
+ .swagger-section .swagger-ui-wrap h3 a:hover,
213
+ .swagger-section .swagger-ui-wrap h4 a:hover,
214
+ .swagger-section .swagger-ui-wrap h5 a:hover,
215
+ .swagger-section .swagger-ui-wrap h6 a:hover {
216
+ text-decoration: underline;
217
+ }
218
+ .swagger-section .swagger-ui-wrap h1 span.divider,
219
+ .swagger-section .swagger-ui-wrap h2 span.divider,
220
+ .swagger-section .swagger-ui-wrap h3 span.divider,
221
+ .swagger-section .swagger-ui-wrap h4 span.divider,
222
+ .swagger-section .swagger-ui-wrap h5 span.divider,
223
+ .swagger-section .swagger-ui-wrap h6 span.divider {
224
+ color: #aaaaaa;
225
+ }
226
+ .swagger-section .swagger-ui-wrap a {
227
+ color: #547f00;
228
+ }
229
+ .swagger-section .swagger-ui-wrap a img {
230
+ border: none;
231
+ }
232
+ .swagger-section .swagger-ui-wrap article,
233
+ .swagger-section .swagger-ui-wrap aside,
234
+ .swagger-section .swagger-ui-wrap details,
235
+ .swagger-section .swagger-ui-wrap figcaption,
236
+ .swagger-section .swagger-ui-wrap figure,
237
+ .swagger-section .swagger-ui-wrap footer,
238
+ .swagger-section .swagger-ui-wrap header,
239
+ .swagger-section .swagger-ui-wrap hgroup,
240
+ .swagger-section .swagger-ui-wrap menu,
241
+ .swagger-section .swagger-ui-wrap nav,
242
+ .swagger-section .swagger-ui-wrap section,
243
+ .swagger-section .swagger-ui-wrap summary {
244
+ display: block;
245
+ }
246
+ .swagger-section .swagger-ui-wrap pre {
247
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
248
+ background-color: #fcf6db;
249
+ border: 1px solid #e5e0c6;
250
+ padding: 10px;
251
+ }
252
+ .swagger-section .swagger-ui-wrap pre code {
253
+ line-height: 1.6em;
254
+ background: none;
255
+ }
256
+ .swagger-section .swagger-ui-wrap .content > .content-type > div > label {
257
+ clear: both;
258
+ display: block;
259
+ color: #0F6AB4;
260
+ font-size: 1.1em;
261
+ margin: 0;
262
+ padding: 15px 0 5px;
263
+ }
264
+ .swagger-section .swagger-ui-wrap .content pre {
265
+ font-size: 12px;
266
+ margin-top: 5px;
267
+ padding: 5px;
268
+ }
269
+ .swagger-section .swagger-ui-wrap .icon-btn {
270
+ cursor: pointer;
271
+ }
272
+ .swagger-section .swagger-ui-wrap .info_title {
273
+ padding-bottom: 10px;
274
+ font-weight: bold;
275
+ font-size: 25px;
276
+ }
277
+ .swagger-section .swagger-ui-wrap .footer {
278
+ margin-top: 20px;
279
+ }
280
+ .swagger-section .swagger-ui-wrap p.big,
281
+ .swagger-section .swagger-ui-wrap div.big p {
282
+ font-size: 1em;
283
+ margin-bottom: 10px;
284
+ }
285
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.string input,
286
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.url input,
287
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.text textarea,
288
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.numeric input {
289
+ width: 500px !important;
290
+ }
291
+ .swagger-section .swagger-ui-wrap .info_license {
292
+ padding-bottom: 5px;
293
+ }
294
+ .swagger-section .swagger-ui-wrap .info_tos {
295
+ padding-bottom: 5px;
296
+ }
297
+ .swagger-section .swagger-ui-wrap .message-fail {
298
+ color: #cc0000;
299
+ }
300
+ .swagger-section .swagger-ui-wrap .info_url {
301
+ padding-bottom: 5px;
302
+ }
303
+ .swagger-section .swagger-ui-wrap .info_email {
304
+ padding-bottom: 5px;
305
+ }
306
+ .swagger-section .swagger-ui-wrap .info_name {
307
+ padding-bottom: 5px;
308
+ }
309
+ .swagger-section .swagger-ui-wrap .info_description {
310
+ padding-bottom: 10px;
311
+ font-size: 15px;
312
+ }
313
+ .swagger-section .swagger-ui-wrap .markdown ol li,
314
+ .swagger-section .swagger-ui-wrap .markdown ul li {
315
+ padding: 3px 0px;
316
+ line-height: 1.4em;
317
+ color: #333333;
318
+ }
319
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.string input,
320
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.url input,
321
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.numeric input {
322
+ display: block;
323
+ padding: 4px;
324
+ width: auto;
325
+ clear: both;
326
+ }
327
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.string input.title,
328
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.url input.title,
329
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.numeric input.title {
330
+ font-size: 1.3em;
331
+ }
332
+ .swagger-section .swagger-ui-wrap table.fullwidth {
333
+ width: 100%;
334
+ }
335
+ .swagger-section .swagger-ui-wrap .model-signature {
336
+ font-family: "Droid Sans", sans-serif;
337
+ font-size: 1em;
338
+ line-height: 1.5em;
339
+ }
340
+ .swagger-section .swagger-ui-wrap .model-signature .signature-nav a {
341
+ text-decoration: none;
342
+ color: #AAA;
343
+ }
344
+ .swagger-section .swagger-ui-wrap .model-signature .signature-nav a:hover {
345
+ text-decoration: underline;
346
+ color: black;
347
+ }
348
+ .swagger-section .swagger-ui-wrap .model-signature .signature-nav .selected {
349
+ color: black;
350
+ text-decoration: none;
351
+ }
352
+ .swagger-section .swagger-ui-wrap .model-signature .propType {
353
+ color: #5555aa;
354
+ }
355
+ .swagger-section .swagger-ui-wrap .model-signature pre:hover {
356
+ background-color: #ffffdd;
357
+ }
358
+ .swagger-section .swagger-ui-wrap .model-signature pre {
359
+ font-size: .85em;
360
+ line-height: 1.2em;
361
+ overflow: auto;
362
+ max-height: 200px;
363
+ cursor: pointer;
364
+ }
365
+ .swagger-section .swagger-ui-wrap .model-signature ul.signature-nav {
366
+ display: block;
367
+ margin: 0;
368
+ padding: 0;
369
+ }
370
+ .swagger-section .swagger-ui-wrap .model-signature ul.signature-nav li:last-child {
371
+ padding-right: 0;
372
+ border-right: none;
373
+ }
374
+ .swagger-section .swagger-ui-wrap .model-signature ul.signature-nav li {
375
+ float: left;
376
+ margin: 0 5px 5px 0;
377
+ padding: 2px 5px 2px 0;
378
+ border-right: 1px solid #ddd;
379
+ }
380
+ .swagger-section .swagger-ui-wrap .model-signature .propOpt {
381
+ color: #555;
382
+ }
383
+ .swagger-section .swagger-ui-wrap .model-signature .snippet small {
384
+ font-size: 0.75em;
385
+ }
386
+ .swagger-section .swagger-ui-wrap .model-signature .propOptKey {
387
+ font-style: italic;
388
+ }
389
+ .swagger-section .swagger-ui-wrap .model-signature .description .strong {
390
+ font-weight: bold;
391
+ color: #000;
392
+ font-size: .9em;
393
+ }
394
+ .swagger-section .swagger-ui-wrap .model-signature .description div {
395
+ font-size: 0.9em;
396
+ line-height: 1.5em;
397
+ margin-left: 1em;
398
+ }
399
+ .swagger-section .swagger-ui-wrap .model-signature .description .stronger {
400
+ font-weight: bold;
401
+ color: #000;
402
+ }
403
+ .swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper {
404
+ border-spacing: 0;
405
+ position: absolute;
406
+ background-color: #ffffff;
407
+ border: 1px solid #bbbbbb;
408
+ display: none;
409
+ font-size: 11px;
410
+ max-width: 400px;
411
+ line-height: 30px;
412
+ color: black;
413
+ padding: 5px;
414
+ margin-left: 10px;
415
+ }
416
+ .swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper th {
417
+ text-align: center;
418
+ background-color: #eeeeee;
419
+ border: 1px solid #bbbbbb;
420
+ font-size: 11px;
421
+ color: #666666;
422
+ font-weight: bold;
423
+ padding: 5px;
424
+ line-height: 15px;
425
+ }
426
+ .swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper .optionName {
427
+ font-weight: bold;
428
+ }
429
+ .swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:first-child,
430
+ .swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:last-child {
431
+ display: inline;
432
+ }
433
+ .swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:not(:first-child):before {
434
+ display: block;
435
+ content: '';
436
+ }
437
+ .swagger-section .swagger-ui-wrap .model-signature .description span:last-of-type.propDesc.markdown > p:only-child {
438
+ margin-right: -3px;
439
+ }
440
+ .swagger-section .swagger-ui-wrap .model-signature .propName {
441
+ font-weight: bold;
442
+ }
443
+ .swagger-section .swagger-ui-wrap .model-signature .signature-container {
444
+ clear: both;
445
+ }
446
+ .swagger-section .swagger-ui-wrap .body-textarea {
447
+ width: 300px;
448
+ height: 100px;
449
+ border: 1px solid #aaa;
450
+ }
451
+ .swagger-section .swagger-ui-wrap .markdown p code,
452
+ .swagger-section .swagger-ui-wrap .markdown li code {
453
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
454
+ background-color: #f0f0f0;
455
+ color: black;
456
+ padding: 1px 3px;
457
+ }
458
+ .swagger-section .swagger-ui-wrap .required {
459
+ font-weight: bold;
460
+ }
461
+ .swagger-section .swagger-ui-wrap input.parameter {
462
+ width: 300px;
463
+ border: 1px solid #aaa;
464
+ }
465
+ .swagger-section .swagger-ui-wrap h1 {
466
+ color: black;
467
+ font-size: 1.5em;
468
+ line-height: 1.3em;
469
+ padding: 10px 0 10px 0;
470
+ font-family: "Droid Sans", sans-serif;
471
+ font-weight: bold;
472
+ }
473
+ .swagger-section .swagger-ui-wrap .heading_with_menu {
474
+ float: none;
475
+ clear: both;
476
+ overflow: hidden;
477
+ display: block;
478
+ }
479
+ .swagger-section .swagger-ui-wrap .heading_with_menu ul {
480
+ display: block;
481
+ clear: none;
482
+ float: right;
483
+ -moz-box-sizing: border-box;
484
+ -webkit-box-sizing: border-box;
485
+ -ms-box-sizing: border-box;
486
+ box-sizing: border-box;
487
+ margin-top: 10px;
488
+ }
489
+ .swagger-section .swagger-ui-wrap h2 {
490
+ color: black;
491
+ font-size: 1.3em;
492
+ padding: 10px 0 10px 0;
493
+ }
494
+ .swagger-section .swagger-ui-wrap h2 a {
495
+ color: black;
496
+ }
497
+ .swagger-section .swagger-ui-wrap h2 span.sub {
498
+ font-size: 0.7em;
499
+ color: #999999;
500
+ font-style: italic;
501
+ }
502
+ .swagger-section .swagger-ui-wrap h2 span.sub a {
503
+ color: #777777;
504
+ }
505
+ .swagger-section .swagger-ui-wrap span.weak {
506
+ color: #666666;
507
+ }
508
+ .swagger-section .swagger-ui-wrap .message-success {
509
+ color: #89BF04;
510
+ }
511
+ .swagger-section .swagger-ui-wrap caption,
512
+ .swagger-section .swagger-ui-wrap th,
513
+ .swagger-section .swagger-ui-wrap td {
514
+ text-align: left;
515
+ font-weight: normal;
516
+ vertical-align: middle;
517
+ }
518
+ .swagger-section .swagger-ui-wrap .code {
519
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
520
+ }
521
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.text textarea {
522
+ font-family: "Droid Sans", sans-serif;
523
+ height: 250px;
524
+ padding: 4px;
525
+ display: block;
526
+ clear: both;
527
+ }
528
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.select select {
529
+ display: block;
530
+ clear: both;
531
+ }
532
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean {
533
+ float: none;
534
+ clear: both;
535
+ overflow: hidden;
536
+ display: block;
537
+ }
538
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean label {
539
+ display: block;
540
+ float: left;
541
+ clear: none;
542
+ margin: 0;
543
+ padding: 0;
544
+ }
545
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean input {
546
+ display: block;
547
+ float: left;
548
+ clear: none;
549
+ margin: 0 5px 0 0;
550
+ }
551
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.required label {
552
+ color: black;
553
+ }
554
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li label {
555
+ display: block;
556
+ clear: both;
557
+ width: auto;
558
+ padding: 0 0 3px;
559
+ color: #666666;
560
+ }
561
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li label abbr {
562
+ padding-left: 3px;
563
+ color: #888888;
564
+ }
565
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li p.inline-hints {
566
+ margin-left: 0;
567
+ font-style: italic;
568
+ font-size: 0.9em;
569
+ margin: 0;
570
+ }
571
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.buttons {
572
+ margin: 0;
573
+ padding: 0;
574
+ }
575
+ .swagger-section .swagger-ui-wrap span.blank,
576
+ .swagger-section .swagger-ui-wrap span.empty {
577
+ color: #888888;
578
+ font-style: italic;
579
+ }
580
+ .swagger-section .swagger-ui-wrap .markdown h3 {
581
+ color: #547f00;
582
+ }
583
+ .swagger-section .swagger-ui-wrap .markdown h4 {
584
+ color: #666666;
585
+ }
586
+ .swagger-section .swagger-ui-wrap .markdown pre {
587
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
588
+ background-color: #fcf6db;
589
+ border: 1px solid #e5e0c6;
590
+ padding: 10px;
591
+ margin: 0 0 10px 0;
592
+ }
593
+ .swagger-section .swagger-ui-wrap .markdown pre code {
594
+ line-height: 1.6em;
595
+ }
596
+ .swagger-section .swagger-ui-wrap div.gist {
597
+ margin: 20px 0 25px 0 !important;
598
+ }
599
+ .swagger-section .swagger-ui-wrap ul#resources {
600
+ font-family: "Droid Sans", sans-serif;
601
+ font-size: 0.9em;
602
+ }
603
+ .swagger-section .swagger-ui-wrap ul#resources li.resource {
604
+ border-bottom: 1px solid #dddddd;
605
+ }
606
+ .swagger-section .swagger-ui-wrap ul#resources li.resource:hover div.heading h2 a,
607
+ .swagger-section .swagger-ui-wrap ul#resources li.resource.active div.heading h2 a {
608
+ color: black;
609
+ }
610
+ .swagger-section .swagger-ui-wrap ul#resources li.resource:hover div.heading ul.options li a,
611
+ .swagger-section .swagger-ui-wrap ul#resources li.resource.active div.heading ul.options li a {
612
+ color: #555555;
613
+ }
614
+ .swagger-section .swagger-ui-wrap ul#resources li.resource:last-child {
615
+ border-bottom: none;
616
+ }
617
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading {
618
+ border: 1px solid transparent;
619
+ float: none;
620
+ clear: both;
621
+ overflow: hidden;
622
+ display: block;
623
+ }
624
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options {
625
+ overflow: hidden;
626
+ padding: 0;
627
+ display: block;
628
+ clear: none;
629
+ float: right;
630
+ margin: 14px 10px 0 0;
631
+ }
632
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li {
633
+ float: left;
634
+ clear: none;
635
+ margin: 0;
636
+ padding: 2px 10px;
637
+ border-right: 1px solid #dddddd;
638
+ color: #666666;
639
+ font-size: 0.9em;
640
+ }
641
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a {
642
+ color: #aaaaaa;
643
+ text-decoration: none;
644
+ }
645
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:hover {
646
+ text-decoration: underline;
647
+ color: black;
648
+ }
649
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:hover,
650
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:active,
651
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a.active {
652
+ text-decoration: underline;
653
+ }
654
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li:first-child,
655
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li.first {
656
+ padding-left: 0;
657
+ }
658
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li:last-child,
659
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li.last {
660
+ padding-right: 0;
661
+ border-right: none;
662
+ }
663
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options:first-child,
664
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options.first {
665
+ padding-left: 0;
666
+ }
667
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 {
668
+ color: #999999;
669
+ padding-left: 0;
670
+ display: block;
671
+ clear: none;
672
+ float: left;
673
+ font-family: "Droid Sans", sans-serif;
674
+ font-weight: bold;
675
+ }
676
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a {
677
+ color: #999999;
678
+ }
679
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a:hover {
680
+ color: black;
681
+ }
682
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation {
683
+ float: none;
684
+ clear: both;
685
+ overflow: hidden;
686
+ display: block;
687
+ margin: 0 0 10px;
688
+ padding: 0;
689
+ }
690
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading {
691
+ float: none;
692
+ clear: both;
693
+ overflow: hidden;
694
+ display: block;
695
+ margin: 0;
696
+ padding: 0;
697
+ }
698
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 {
699
+ display: block;
700
+ clear: none;
701
+ float: left;
702
+ width: auto;
703
+ margin: 0;
704
+ padding: 0;
705
+ line-height: 1.1em;
706
+ color: black;
707
+ }
708
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path {
709
+ padding-left: 10px;
710
+ }
711
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a {
712
+ color: black;
713
+ text-decoration: none;
714
+ }
715
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a:hover {
716
+ text-decoration: underline;
717
+ }
718
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.http_method a {
719
+ text-transform: uppercase;
720
+ text-decoration: none;
721
+ color: white;
722
+ display: inline-block;
723
+ width: 50px;
724
+ font-size: 0.7em;
725
+ text-align: center;
726
+ padding: 7px 0 4px;
727
+ -moz-border-radius: 2px;
728
+ -webkit-border-radius: 2px;
729
+ -o-border-radius: 2px;
730
+ -ms-border-radius: 2px;
731
+ -khtml-border-radius: 2px;
732
+ border-radius: 2px;
733
+ }
734
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span {
735
+ margin: 0;
736
+ padding: 0;
737
+ }
738
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options {
739
+ overflow: hidden;
740
+ padding: 0;
741
+ display: block;
742
+ clear: none;
743
+ float: right;
744
+ margin: 6px 10px 0 0;
745
+ }
746
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li {
747
+ float: left;
748
+ clear: none;
749
+ margin: 0;
750
+ padding: 2px 10px;
751
+ font-size: 0.9em;
752
+ }
753
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li a {
754
+ text-decoration: none;
755
+ }
756
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li.access {
757
+ color: black;
758
+ }
759
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content {
760
+ border-top: none;
761
+ padding: 10px;
762
+ -moz-border-radius-bottomleft: 6px;
763
+ -webkit-border-bottom-left-radius: 6px;
764
+ -o-border-bottom-left-radius: 6px;
765
+ -ms-border-bottom-left-radius: 6px;
766
+ -khtml-border-bottom-left-radius: 6px;
767
+ border-bottom-left-radius: 6px;
768
+ -moz-border-radius-bottomright: 6px;
769
+ -webkit-border-bottom-right-radius: 6px;
770
+ -o-border-bottom-right-radius: 6px;
771
+ -ms-border-bottom-right-radius: 6px;
772
+ -khtml-border-bottom-right-radius: 6px;
773
+ border-bottom-right-radius: 6px;
774
+ margin: 0 0 20px;
775
+ }
776
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content h4 {
777
+ font-size: 1.1em;
778
+ margin: 0;
779
+ padding: 15px 0 5px;
780
+ }
781
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header {
782
+ float: none;
783
+ clear: both;
784
+ overflow: hidden;
785
+ display: block;
786
+ }
787
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header a {
788
+ padding: 4px 0 0 10px;
789
+ display: inline-block;
790
+ font-size: 0.9em;
791
+ }
792
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header input.submit {
793
+ display: block;
794
+ clear: none;
795
+ float: left;
796
+ padding: 6px 8px;
797
+ }
798
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header span.response_throbber {
799
+ background-image: url('../images/throbber.gif');
800
+ width: 128px;
801
+ height: 16px;
802
+ display: block;
803
+ clear: none;
804
+ float: right;
805
+ }
806
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content form input[type='text'].error {
807
+ outline: 2px solid black;
808
+ outline-color: #cc0000;
809
+ }
810
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content form select[name='parameterContentType'] {
811
+ max-width: 300px;
812
+ }
813
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.response div.block pre {
814
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
815
+ padding: 10px;
816
+ font-size: 0.9em;
817
+ max-height: 400px;
818
+ overflow-y: auto;
819
+ }
820
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading {
821
+ background-color: #f9f2e9;
822
+ border: 1px solid #f0e0ca;
823
+ }
824
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span.http_method a {
825
+ background-color: #c5862b;
826
+ }
827
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li {
828
+ border-right: 1px solid #dddddd;
829
+ border-right-color: #f0e0ca;
830
+ color: #c5862b;
831
+ }
832
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a {
833
+ color: #c5862b;
834
+ }
835
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content {
836
+ background-color: #faf5ee;
837
+ border: 1px solid #f0e0ca;
838
+ }
839
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4 {
840
+ color: #c5862b;
841
+ }
842
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header a {
843
+ color: #dcb67f;
844
+ }
845
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading {
846
+ background-color: #fcffcd;
847
+ border: 1px solid black;
848
+ border-color: #ffd20f;
849
+ }
850
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading h3 span.http_method a {
851
+ text-transform: uppercase;
852
+ background-color: #ffd20f;
853
+ }
854
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li {
855
+ border-right: 1px solid #dddddd;
856
+ border-right-color: #ffd20f;
857
+ color: #ffd20f;
858
+ }
859
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li a {
860
+ color: #ffd20f;
861
+ }
862
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content {
863
+ background-color: #fcffcd;
864
+ border: 1px solid black;
865
+ border-color: #ffd20f;
866
+ }
867
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content h4 {
868
+ color: #ffd20f;
869
+ }
870
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content div.sandbox_header a {
871
+ color: #6fc992;
872
+ }
873
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading {
874
+ background-color: #f5e8e8;
875
+ border: 1px solid #e8c6c7;
876
+ }
877
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span.http_method a {
878
+ text-transform: uppercase;
879
+ background-color: #a41e22;
880
+ }
881
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li {
882
+ border-right: 1px solid #dddddd;
883
+ border-right-color: #e8c6c7;
884
+ color: #a41e22;
885
+ }
886
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a {
887
+ color: #a41e22;
888
+ }
889
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
890
+ background-color: #f7eded;
891
+ border: 1px solid #e8c6c7;
892
+ }
893
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4 {
894
+ color: #a41e22;
895
+ }
896
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header a {
897
+ color: #c8787a;
898
+ }
899
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading {
900
+ background-color: #e7f6ec;
901
+ border: 1px solid #c3e8d1;
902
+ }
903
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span.http_method a {
904
+ background-color: #10a54a;
905
+ }
906
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li {
907
+ border-right: 1px solid #dddddd;
908
+ border-right-color: #c3e8d1;
909
+ color: #10a54a;
910
+ }
911
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a {
912
+ color: #10a54a;
913
+ }
914
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content {
915
+ background-color: #ebf7f0;
916
+ border: 1px solid #c3e8d1;
917
+ }
918
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4 {
919
+ color: #10a54a;
920
+ }
921
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header a {
922
+ color: #6fc992;
923
+ }
924
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading {
925
+ background-color: #FCE9E3;
926
+ border: 1px solid #F5D5C3;
927
+ }
928
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span.http_method a {
929
+ background-color: #D38042;
930
+ }
931
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li {
932
+ border-right: 1px solid #dddddd;
933
+ border-right-color: #f0cecb;
934
+ color: #D38042;
935
+ }
936
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a {
937
+ color: #D38042;
938
+ }
939
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content {
940
+ background-color: #faf0ef;
941
+ border: 1px solid #f0cecb;
942
+ }
943
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content h4 {
944
+ color: #D38042;
945
+ }
946
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header a {
947
+ color: #dcb67f;
948
+ }
949
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading {
950
+ background-color: #e7f0f7;
951
+ border: 1px solid #c3d9ec;
952
+ }
953
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span.http_method a {
954
+ background-color: #0f6ab4;
955
+ }
956
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li {
957
+ border-right: 1px solid #dddddd;
958
+ border-right-color: #c3d9ec;
959
+ color: #0f6ab4;
960
+ }
961
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a {
962
+ color: #0f6ab4;
963
+ }
964
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content {
965
+ background-color: #ebf3f9;
966
+ border: 1px solid #c3d9ec;
967
+ }
968
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4 {
969
+ color: #0f6ab4;
970
+ }
971
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header a {
972
+ color: #6fa5d2;
973
+ }
974
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading {
975
+ background-color: #e7f0f7;
976
+ border: 1px solid #c3d9ec;
977
+ }
978
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading h3 span.http_method a {
979
+ background-color: #0f6ab4;
980
+ }
981
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading ul.options li {
982
+ border-right: 1px solid #dddddd;
983
+ border-right-color: #c3d9ec;
984
+ color: #0f6ab4;
985
+ }
986
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading ul.options li a {
987
+ color: #0f6ab4;
988
+ }
989
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content {
990
+ background-color: #ebf3f9;
991
+ border: 1px solid #c3d9ec;
992
+ }
993
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content h4 {
994
+ color: #0f6ab4;
995
+ }
996
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content div.sandbox_header a {
997
+ color: #6fa5d2;
998
+ }
999
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content,
1000
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content,
1001
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content,
1002
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content,
1003
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content,
1004
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
1005
+ border-top: none;
1006
+ }
1007
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li:last-child,
1008
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li:last-child,
1009
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li:last-child,
1010
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li:last-child,
1011
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li:last-child,
1012
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li:last-child,
1013
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li.last,
1014
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li.last,
1015
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li.last,
1016
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li.last,
1017
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li.last,
1018
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li.last {
1019
+ padding-right: 0;
1020
+ border-right: none;
1021
+ }
1022
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a:hover,
1023
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a:active,
1024
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a.active {
1025
+ text-decoration: underline;
1026
+ }
1027
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li:first-child,
1028
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li.first {
1029
+ padding-left: 0;
1030
+ }
1031
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations:first-child,
1032
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations.first {
1033
+ padding-left: 0;
1034
+ }
1035
+ .swagger-section .swagger-ui-wrap p#colophon {
1036
+ margin: 0 15px 40px 15px;
1037
+ padding: 10px 0;
1038
+ font-size: 0.8em;
1039
+ border-top: 1px solid #dddddd;
1040
+ font-family: "Droid Sans", sans-serif;
1041
+ color: #999999;
1042
+ font-style: italic;
1043
+ }
1044
+ .swagger-section .swagger-ui-wrap p#colophon a {
1045
+ text-decoration: none;
1046
+ color: #547f00;
1047
+ }
1048
+ .swagger-section .swagger-ui-wrap h3 {
1049
+ color: black;
1050
+ font-size: 1.1em;
1051
+ padding: 10px 0 10px 0;
1052
+ }
1053
+ .swagger-section .swagger-ui-wrap .markdown ol,
1054
+ .swagger-section .swagger-ui-wrap .markdown ul {
1055
+ font-family: "Droid Sans", sans-serif;
1056
+ margin: 5px 0 10px;
1057
+ padding: 0 0 0 18px;
1058
+ list-style-type: disc;
1059
+ }
1060
+ .swagger-section .swagger-ui-wrap form.form_box {
1061
+ background-color: #ebf3f9;
1062
+ border: 1px solid #c3d9ec;
1063
+ padding: 10px;
1064
+ }
1065
+ .swagger-section .swagger-ui-wrap form.form_box label {
1066
+ color: #0f6ab4 !important;
1067
+ }
1068
+ .swagger-section .swagger-ui-wrap form.form_box input[type=submit] {
1069
+ display: block;
1070
+ padding: 10px;
1071
+ }
1072
+ .swagger-section .swagger-ui-wrap form.form_box p.weak {
1073
+ font-size: 0.8em;
1074
+ }
1075
+ .swagger-section .swagger-ui-wrap form.form_box p {
1076
+ font-size: 0.9em;
1077
+ padding: 0 0 15px;
1078
+ color: #7e7b6d;
1079
+ }
1080
+ .swagger-section .swagger-ui-wrap form.form_box p a {
1081
+ color: #646257;
1082
+ }
1083
+ .swagger-section .swagger-ui-wrap form.form_box p strong {
1084
+ color: black;
1085
+ }
1086
+ .swagger-section .swagger-ui-wrap .operation-status td.markdown > p:last-child {
1087
+ padding-bottom: 0;
1088
+ }
1089
+ .swagger-section .title {
1090
+ font-style: bold;
1091
+ }
1092
+ .swagger-section .secondary_form {
1093
+ display: none;
1094
+ }
1095
+ .swagger-section .main_image {
1096
+ display: block;
1097
+ margin-left: auto;
1098
+ margin-right: auto;
1099
+ }
1100
+ .swagger-section .oauth_body {
1101
+ margin-left: 100px;
1102
+ margin-right: 100px;
1103
+ }
1104
+ .swagger-section .oauth_submit {
1105
+ text-align: center;
1106
+ }
1107
+ .swagger-section .api-popup-dialog {
1108
+ z-index: 10000;
1109
+ position: absolute;
1110
+ width: 500px;
1111
+ background: #FFF;
1112
+ padding: 20px;
1113
+ border: 1px solid #ccc;
1114
+ border-radius: 5px;
1115
+ display: none;
1116
+ font-size: 13px;
1117
+ color: #777;
1118
+ }
1119
+ .swagger-section .api-popup-dialog .api-popup-title {
1120
+ font-size: 24px;
1121
+ padding: 10px 0;
1122
+ }
1123
+ .swagger-section .api-popup-dialog .api-popup-title {
1124
+ font-size: 24px;
1125
+ padding: 10px 0;
1126
+ }
1127
+ .swagger-section .api-popup-dialog p.error-msg {
1128
+ padding-left: 5px;
1129
+ padding-bottom: 5px;
1130
+ }
1131
+ .swagger-section .api-popup-dialog button.api-popup-authbtn {
1132
+ height: 30px;
1133
+ }
1134
+ .swagger-section .api-popup-dialog button.api-popup-cancel {
1135
+ height: 30px;
1136
+ }
1137
+ .swagger-section .api-popup-scopes {
1138
+ padding: 10px 20px;
1139
+ }
1140
+ .swagger-section .api-popup-scopes li {
1141
+ padding: 5px 0;
1142
+ line-height: 20px;
1143
+ }
1144
+ .swagger-section .api-popup-scopes .api-scope-desc {
1145
+ padding-left: 20px;
1146
+ font-style: italic;
1147
+ }
1148
+ .swagger-section .api-popup-scopes li input {
1149
+ position: relative;
1150
+ top: 2px;
1151
+ }
1152
+ .swagger-section .api-popup-actions {
1153
+ padding-top: 10px;
1154
+ }
1155
+ .swagger-section .access {
1156
+ float: right;
1157
+ }
1158
+ .swagger-section .auth {
1159
+ float: right;
1160
+ }
1161
+ .swagger-section .api-ic {
1162
+ height: 18px;
1163
+ vertical-align: middle;
1164
+ display: inline-block;
1165
+ background: url(../images/explorer_icons.png) no-repeat;
1166
+ }
1167
+ .swagger-section .api-ic .api_information_panel {
1168
+ position: relative;
1169
+ margin-top: 20px;
1170
+ margin-left: -5px;
1171
+ background: #FFF;
1172
+ border: 1px solid #ccc;
1173
+ border-radius: 5px;
1174
+ display: none;
1175
+ font-size: 13px;
1176
+ max-width: 300px;
1177
+ line-height: 30px;
1178
+ color: black;
1179
+ padding: 5px;
1180
+ }
1181
+ .swagger-section .api-ic .api_information_panel p .api-msg-enabled {
1182
+ color: green;
1183
+ }
1184
+ .swagger-section .api-ic .api_information_panel p .api-msg-disabled {
1185
+ color: red;
1186
+ }
1187
+ .swagger-section .api-ic:hover .api_information_panel {
1188
+ position: absolute;
1189
+ display: block;
1190
+ }
1191
+ .swagger-section .ic-info {
1192
+ background-position: 0 0;
1193
+ width: 18px;
1194
+ margin-top: -6px;
1195
+ margin-left: 4px;
1196
+ }
1197
+ .swagger-section .ic-warning {
1198
+ background-position: -60px 0;
1199
+ width: 18px;
1200
+ margin-top: -6px;
1201
+ margin-left: 4px;
1202
+ }
1203
+ .swagger-section .ic-error {
1204
+ background-position: -30px 0;
1205
+ width: 18px;
1206
+ margin-top: -6px;
1207
+ margin-left: 4px;
1208
+ }
1209
+ .swagger-section .ic-off {
1210
+ background-position: -90px 0;
1211
+ width: 58px;
1212
+ margin-top: -4px;
1213
+ cursor: pointer;
1214
+ }
1215
+ .swagger-section .ic-on {
1216
+ background-position: -160px 0;
1217
+ width: 58px;
1218
+ margin-top: -4px;
1219
+ cursor: pointer;
1220
+ }
1221
+ .swagger-section #header {
1222
+ background-color: #89bf04;
1223
+ padding: 14px;
1224
+ }
1225
+ .swagger-section #header a#logo {
1226
+ font-size: 1.5em;
1227
+ font-weight: bold;
1228
+ text-decoration: none;
1229
+ background: transparent url(../images/logo_small.png) no-repeat left center;
1230
+ padding: 20px 0 20px 40px;
1231
+ color: white;
1232
+ }
1233
+ .swagger-section #header form#api_selector {
1234
+ display: block;
1235
+ clear: none;
1236
+ float: right;
1237
+ }
1238
+ .swagger-section #header form#api_selector .input {
1239
+ display: block;
1240
+ clear: none;
1241
+ float: left;
1242
+ margin: 0 10px 0 0;
1243
+ }
1244
+ .swagger-section #header form#api_selector .input input#input_apiKey {
1245
+ width: 200px;
1246
+ }
1247
+ .swagger-section #header form#api_selector .input input#input_baseUrl {
1248
+ width: 400px;
1249
+ }
1250
+ .swagger-section #header form#api_selector .input a#explore {
1251
+ display: block;
1252
+ text-decoration: none;
1253
+ font-weight: bold;
1254
+ padding: 6px 8px;
1255
+ font-size: 0.9em;
1256
+ color: white;
1257
+ background-color: #547f00;
1258
+ -moz-border-radius: 4px;
1259
+ -webkit-border-radius: 4px;
1260
+ -o-border-radius: 4px;
1261
+ -ms-border-radius: 4px;
1262
+ -khtml-border-radius: 4px;
1263
+ border-radius: 4px;
1264
+ }
1265
+ .swagger-section #header form#api_selector .input a#explore:hover {
1266
+ background-color: #547f00;
1267
+ }
1268
+ .swagger-section #header form#api_selector .input input {
1269
+ font-size: 0.9em;
1270
+ padding: 3px;
1271
+ margin: 0;
1272
+ }
1273
+ .swagger-section #content_message {
1274
+ margin: 10px 15px;
1275
+ font-style: italic;
1276
+ color: #999999;
1277
+ }
1278
+ .swagger-section #message-bar {
1279
+ min-height: 30px;
1280
+ text-align: center;
1281
+ padding-top: 10px;
1282
+ }