swaggard 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +178 -0
  4. data/Rakefile +24 -0
  5. data/app/assets/fonts/swaggard/droid-sans-v6-latin-700.eot +0 -0
  6. data/app/assets/fonts/swaggard/droid-sans-v6-latin-700.svg +411 -0
  7. data/app/assets/fonts/swaggard/droid-sans-v6-latin-700.ttf +0 -0
  8. data/app/assets/fonts/swaggard/droid-sans-v6-latin-700.woff +0 -0
  9. data/app/assets/fonts/swaggard/droid-sans-v6-latin-700.woff2 +0 -0
  10. data/app/assets/fonts/swaggard/droid-sans-v6-latin-regular.eot +0 -0
  11. data/app/assets/fonts/swaggard/droid-sans-v6-latin-regular.svg +403 -0
  12. data/app/assets/fonts/swaggard/droid-sans-v6-latin-regular.ttf +0 -0
  13. data/app/assets/fonts/swaggard/droid-sans-v6-latin-regular.woff +0 -0
  14. data/app/assets/fonts/swaggard/droid-sans-v6-latin-regular.woff2 +0 -0
  15. data/app/assets/images/swaggard/logo_small.png +0 -0
  16. data/app/assets/images/swaggard/pet_store_api.png +0 -0
  17. data/app/assets/images/swaggard/throbber.gif +0 -0
  18. data/app/assets/images/swaggard/wordnik_api.png +0 -0
  19. data/app/assets/javascripts/swaggard/application.js +24 -0
  20. data/app/assets/javascripts/swaggard/lib/MD5.js +319 -0
  21. data/app/assets/javascripts/swaggard/lib/backbone-min.js +15 -0
  22. data/app/assets/javascripts/swaggard/lib/handlebars-1.0.rc.1.js +1920 -0
  23. data/app/assets/javascripts/swaggard/lib/handlebars-2.0.0.js +28 -0
  24. data/app/assets/javascripts/swaggard/lib/highlight.7.3.pack.js +1 -0
  25. data/app/assets/javascripts/swaggard/lib/jquery-1.8.0.min.js +2 -0
  26. data/app/assets/javascripts/swaggard/lib/jquery.ba-bbq.min.js +18 -0
  27. data/app/assets/javascripts/swaggard/lib/jquery.slideto.min.js +1 -0
  28. data/app/assets/javascripts/swaggard/lib/jquery.wiggle.min.js +8 -0
  29. data/app/assets/javascripts/swaggard/lib/marked.js +1272 -0
  30. data/app/assets/javascripts/swaggard/lib/shred.bundle.js +2765 -0
  31. data/app/assets/javascripts/swaggard/lib/swagger-client.js +3294 -0
  32. data/app/assets/javascripts/swaggard/lib/swagger.js +794 -0
  33. data/app/assets/javascripts/swaggard/lib/underscore-min.js +32 -0
  34. data/app/assets/javascripts/swaggard/swagger-ui.js +2240 -0
  35. data/app/assets/javascripts/swaggard/swagger-ui_org.js +2005 -0
  36. data/app/assets/stylesheets/swaggard/application.css +16 -0
  37. data/app/assets/stylesheets/swaggard/reset.css +125 -0
  38. data/app/assets/stylesheets/swaggard/screen.css.scss +1256 -0
  39. data/app/assets/stylesheets/swaggard/typography.css.scss +26 -0
  40. data/app/controllers/swaggard/application_controller.rb +4 -0
  41. data/app/controllers/swaggard/swagger_controller.rb +21 -0
  42. data/app/views/swaggard/swagger/index.html.erb +74 -0
  43. data/config/routes.rb +3 -0
  44. data/lib/swaggard.rb +92 -0
  45. data/lib/swaggard/api_definition.rb +52 -0
  46. data/lib/swaggard/configuration.rb +82 -0
  47. data/lib/swaggard/engine.rb +18 -0
  48. data/lib/swaggard/parsers/controllers.rb +30 -0
  49. data/lib/swaggard/parsers/models.rb +29 -0
  50. data/lib/swaggard/parsers/routes.rb +54 -0
  51. data/lib/swaggard/swagger/definition.rb +24 -0
  52. data/lib/swaggard/swagger/operation.rb +98 -0
  53. data/lib/swaggard/swagger/parameters/base.rb +21 -0
  54. data/lib/swaggard/swagger/parameters/body.rb +67 -0
  55. data/lib/swaggard/swagger/parameters/form.rb +32 -0
  56. data/lib/swaggard/swagger/parameters/list.rb +46 -0
  57. data/lib/swaggard/swagger/parameters/path.rb +21 -0
  58. data/lib/swaggard/swagger/parameters/query.rb +32 -0
  59. data/lib/swaggard/swagger/path.rb +24 -0
  60. data/lib/swaggard/swagger/property.rb +23 -0
  61. data/lib/swaggard/swagger/response.rb +45 -0
  62. data/lib/swaggard/swagger/tag.rb +28 -0
  63. data/lib/swaggard/swagger/type.rb +72 -0
  64. data/lib/swaggard/version.rb +5 -0
  65. data/spec/fixtures/api.json +1 -0
  66. data/spec/fixtures/dummy/app/controllers/application_controller.rb +2 -0
  67. data/spec/fixtures/dummy/app/controllers/pets_controller.rb +15 -0
  68. data/spec/fixtures/dummy/config/application.rb +15 -0
  69. data/spec/fixtures/dummy/config/environments/development.rb +5 -0
  70. data/spec/fixtures/dummy/config/routes.rb +5 -0
  71. data/spec/fixtures/dummy/log/development.log +0 -0
  72. data/spec/integration/swaggard_spec.rb +19 -0
  73. data/spec/spec_helper.rb +27 -0
  74. metadata +210 -0
@@ -0,0 +1,16 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require swaggard/typography
14
+ *= require swaggard/reset
15
+ *= require swaggard/screen
16
+ */
@@ -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,1256 @@
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 p.big,
278
+ .swagger-section .swagger-ui-wrap div.big p {
279
+ font-size: 1em;
280
+ margin-bottom: 10px;
281
+ }
282
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.string input,
283
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.url input,
284
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.text textarea,
285
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.numeric input {
286
+ width: 500px !important;
287
+ }
288
+ .swagger-section .swagger-ui-wrap .info_license {
289
+ padding-bottom: 5px;
290
+ }
291
+ .swagger-section .swagger-ui-wrap .info_tos {
292
+ padding-bottom: 5px;
293
+ }
294
+ .swagger-section .swagger-ui-wrap .message-fail {
295
+ color: #cc0000;
296
+ }
297
+ .swagger-section .swagger-ui-wrap .info_url {
298
+ padding-bottom: 5px;
299
+ }
300
+ .swagger-section .swagger-ui-wrap .info_email {
301
+ padding-bottom: 5px;
302
+ }
303
+ .swagger-section .swagger-ui-wrap .info_name {
304
+ padding-bottom: 5px;
305
+ }
306
+ .swagger-section .swagger-ui-wrap .info_description {
307
+ padding-bottom: 10px;
308
+ font-size: 15px;
309
+ }
310
+ .swagger-section .swagger-ui-wrap .markdown ol li,
311
+ .swagger-section .swagger-ui-wrap .markdown ul li {
312
+ padding: 3px 0px;
313
+ line-height: 1.4em;
314
+ color: #333333;
315
+ }
316
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.string input,
317
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.url input,
318
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.numeric input {
319
+ display: block;
320
+ padding: 4px;
321
+ width: auto;
322
+ clear: both;
323
+ }
324
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.string input.title,
325
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.url input.title,
326
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.numeric input.title {
327
+ font-size: 1.3em;
328
+ }
329
+ .swagger-section .swagger-ui-wrap table.fullwidth {
330
+ width: 100%;
331
+ }
332
+ .swagger-section .swagger-ui-wrap .model-signature {
333
+ font-family: "Droid Sans", sans-serif;
334
+ font-size: 1em;
335
+ line-height: 1.5em;
336
+ }
337
+ .swagger-section .swagger-ui-wrap .model-signature .signature-nav a {
338
+ text-decoration: none;
339
+ color: #AAA;
340
+ }
341
+ .swagger-section .swagger-ui-wrap .model-signature .signature-nav a:hover {
342
+ text-decoration: underline;
343
+ color: black;
344
+ }
345
+ .swagger-section .swagger-ui-wrap .model-signature .signature-nav .selected {
346
+ color: black;
347
+ text-decoration: none;
348
+ }
349
+ .swagger-section .swagger-ui-wrap .model-signature .propType {
350
+ color: #5555aa;
351
+ }
352
+ .swagger-section .swagger-ui-wrap .model-signature pre:hover {
353
+ background-color: #ffffdd;
354
+ }
355
+ .swagger-section .swagger-ui-wrap .model-signature pre {
356
+ font-size: .85em;
357
+ line-height: 1.2em;
358
+ overflow: auto;
359
+ max-height: 200px;
360
+ cursor: pointer;
361
+ }
362
+ .swagger-section .swagger-ui-wrap .model-signature ul.signature-nav {
363
+ display: block;
364
+ margin: 0;
365
+ padding: 0;
366
+ }
367
+ .swagger-section .swagger-ui-wrap .model-signature ul.signature-nav li:last-child {
368
+ padding-right: 0;
369
+ border-right: none;
370
+ }
371
+ .swagger-section .swagger-ui-wrap .model-signature ul.signature-nav li {
372
+ float: left;
373
+ margin: 0 5px 5px 0;
374
+ padding: 2px 5px 2px 0;
375
+ border-right: 1px solid #ddd;
376
+ }
377
+ .swagger-section .swagger-ui-wrap .model-signature .propOpt {
378
+ color: #555;
379
+ }
380
+ .swagger-section .swagger-ui-wrap .model-signature .snippet small {
381
+ font-size: 0.75em;
382
+ }
383
+ .swagger-section .swagger-ui-wrap .model-signature .propOptKey {
384
+ font-style: italic;
385
+ }
386
+ .swagger-section .swagger-ui-wrap .model-signature .description .strong {
387
+ font-weight: bold;
388
+ color: #000;
389
+ font-size: .9em;
390
+ }
391
+ .swagger-section .swagger-ui-wrap .model-signature .description div {
392
+ font-size: 0.9em;
393
+ line-height: 1.5em;
394
+ margin-left: 1em;
395
+ }
396
+ .swagger-section .swagger-ui-wrap .model-signature .description .stronger {
397
+ font-weight: bold;
398
+ color: #000;
399
+ }
400
+ .swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper {
401
+ border-spacing: 0;
402
+ position: absolute;
403
+ background-color: #ffffff;
404
+ border: 1px solid #bbbbbb;
405
+ display: none;
406
+ font-size: 11px;
407
+ max-width: 400px;
408
+ line-height: 30px;
409
+ color: black;
410
+ padding: 5px;
411
+ margin-left: 10px;
412
+ }
413
+ .swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper th {
414
+ text-align: center;
415
+ background-color: #eeeeee;
416
+ border: 1px solid #bbbbbb;
417
+ font-size: 11px;
418
+ color: #666666;
419
+ font-weight: bold;
420
+ padding: 5px;
421
+ line-height: 15px;
422
+ }
423
+ .swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper .optionName {
424
+ font-weight: bold;
425
+ }
426
+ .swagger-section .swagger-ui-wrap .model-signature .propName {
427
+ font-weight: bold;
428
+ }
429
+ .swagger-section .swagger-ui-wrap .model-signature .signature-container {
430
+ clear: both;
431
+ }
432
+ .swagger-section .swagger-ui-wrap .body-textarea {
433
+ width: 300px;
434
+ height: 100px;
435
+ border: 1px solid #aaa;
436
+ }
437
+ .swagger-section .swagger-ui-wrap .markdown p code,
438
+ .swagger-section .swagger-ui-wrap .markdown li code {
439
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
440
+ background-color: #f0f0f0;
441
+ color: black;
442
+ padding: 1px 3px;
443
+ }
444
+ .swagger-section .swagger-ui-wrap .required {
445
+ font-weight: bold;
446
+ }
447
+ .swagger-section .swagger-ui-wrap input.parameter {
448
+ width: 300px;
449
+ border: 1px solid #aaa;
450
+ }
451
+ .swagger-section .swagger-ui-wrap h1 {
452
+ color: black;
453
+ font-size: 1.5em;
454
+ line-height: 1.3em;
455
+ padding: 10px 0 10px 0;
456
+ font-family: "Droid Sans", sans-serif;
457
+ font-weight: bold;
458
+ }
459
+ .swagger-section .swagger-ui-wrap .heading_with_menu {
460
+ float: none;
461
+ clear: both;
462
+ overflow: hidden;
463
+ display: block;
464
+ }
465
+ .swagger-section .swagger-ui-wrap .heading_with_menu ul {
466
+ display: block;
467
+ clear: none;
468
+ float: right;
469
+ -moz-box-sizing: border-box;
470
+ -webkit-box-sizing: border-box;
471
+ -ms-box-sizing: border-box;
472
+ box-sizing: border-box;
473
+ margin-top: 10px;
474
+ }
475
+ .swagger-section .swagger-ui-wrap h2 {
476
+ color: black;
477
+ font-size: 1.3em;
478
+ padding: 10px 0 10px 0;
479
+ }
480
+ .swagger-section .swagger-ui-wrap h2 a {
481
+ color: black;
482
+ }
483
+ .swagger-section .swagger-ui-wrap h2 span.sub {
484
+ font-size: 0.7em;
485
+ color: #999999;
486
+ font-style: italic;
487
+ }
488
+ .swagger-section .swagger-ui-wrap h2 span.sub a {
489
+ color: #777777;
490
+ }
491
+ .swagger-section .swagger-ui-wrap span.weak {
492
+ color: #666666;
493
+ }
494
+ .swagger-section .swagger-ui-wrap .message-success {
495
+ color: #89BF04;
496
+ }
497
+ .swagger-section .swagger-ui-wrap caption,
498
+ .swagger-section .swagger-ui-wrap th,
499
+ .swagger-section .swagger-ui-wrap td {
500
+ text-align: left;
501
+ font-weight: normal;
502
+ vertical-align: middle;
503
+ }
504
+ .swagger-section .swagger-ui-wrap .code {
505
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
506
+ }
507
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.text textarea {
508
+ font-family: "Droid Sans", sans-serif;
509
+ height: 250px;
510
+ padding: 4px;
511
+ display: block;
512
+ clear: both;
513
+ }
514
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.select select {
515
+ display: block;
516
+ clear: both;
517
+ }
518
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean {
519
+ float: none;
520
+ clear: both;
521
+ overflow: hidden;
522
+ display: block;
523
+ }
524
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean label {
525
+ display: block;
526
+ float: left;
527
+ clear: none;
528
+ margin: 0;
529
+ padding: 0;
530
+ }
531
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean input {
532
+ display: block;
533
+ float: left;
534
+ clear: none;
535
+ margin: 0 5px 0 0;
536
+ }
537
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.required label {
538
+ color: black;
539
+ }
540
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li label {
541
+ display: block;
542
+ clear: both;
543
+ width: auto;
544
+ padding: 0 0 3px;
545
+ color: #666666;
546
+ }
547
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li label abbr {
548
+ padding-left: 3px;
549
+ color: #888888;
550
+ }
551
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li p.inline-hints {
552
+ margin-left: 0;
553
+ font-style: italic;
554
+ font-size: 0.9em;
555
+ margin: 0;
556
+ }
557
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.buttons {
558
+ margin: 0;
559
+ padding: 0;
560
+ }
561
+ .swagger-section .swagger-ui-wrap span.blank,
562
+ .swagger-section .swagger-ui-wrap span.empty {
563
+ color: #888888;
564
+ font-style: italic;
565
+ }
566
+ .swagger-section .swagger-ui-wrap .markdown h3 {
567
+ color: #547f00;
568
+ }
569
+ .swagger-section .swagger-ui-wrap .markdown h4 {
570
+ color: #666666;
571
+ }
572
+ .swagger-section .swagger-ui-wrap .markdown pre {
573
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
574
+ background-color: #fcf6db;
575
+ border: 1px solid #e5e0c6;
576
+ padding: 10px;
577
+ margin: 0 0 10px 0;
578
+ }
579
+ .swagger-section .swagger-ui-wrap .markdown pre code {
580
+ line-height: 1.6em;
581
+ }
582
+ .swagger-section .swagger-ui-wrap div.gist {
583
+ margin: 20px 0 25px 0 !important;
584
+ }
585
+ .swagger-section .swagger-ui-wrap ul#resources {
586
+ font-family: "Droid Sans", sans-serif;
587
+ font-size: 0.9em;
588
+ }
589
+ .swagger-section .swagger-ui-wrap ul#resources li.resource {
590
+ border-bottom: 1px solid #dddddd;
591
+ }
592
+ .swagger-section .swagger-ui-wrap ul#resources li.resource:hover div.heading h2 a,
593
+ .swagger-section .swagger-ui-wrap ul#resources li.resource.active div.heading h2 a {
594
+ color: black;
595
+ }
596
+ .swagger-section .swagger-ui-wrap ul#resources li.resource:hover div.heading ul.options li a,
597
+ .swagger-section .swagger-ui-wrap ul#resources li.resource.active div.heading ul.options li a {
598
+ color: #555555;
599
+ }
600
+ .swagger-section .swagger-ui-wrap ul#resources li.resource:last-child {
601
+ border-bottom: none;
602
+ }
603
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading {
604
+ border: 1px solid transparent;
605
+ float: none;
606
+ clear: both;
607
+ overflow: hidden;
608
+ display: block;
609
+ }
610
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options {
611
+ overflow: hidden;
612
+ padding: 0;
613
+ display: block;
614
+ clear: none;
615
+ float: right;
616
+ margin: 14px 10px 0 0;
617
+ }
618
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li {
619
+ float: left;
620
+ clear: none;
621
+ margin: 0;
622
+ padding: 2px 10px;
623
+ border-right: 1px solid #dddddd;
624
+ color: #666666;
625
+ font-size: 0.9em;
626
+ }
627
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a {
628
+ color: #aaaaaa;
629
+ text-decoration: none;
630
+ }
631
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:hover {
632
+ text-decoration: underline;
633
+ color: black;
634
+ }
635
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:hover,
636
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:active,
637
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a.active {
638
+ text-decoration: underline;
639
+ }
640
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li:first-child,
641
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li.first {
642
+ padding-left: 0;
643
+ }
644
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li:last-child,
645
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li.last {
646
+ padding-right: 0;
647
+ border-right: none;
648
+ }
649
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options:first-child,
650
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options.first {
651
+ padding-left: 0;
652
+ }
653
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 {
654
+ color: #999999;
655
+ padding-left: 0;
656
+ display: block;
657
+ clear: none;
658
+ float: left;
659
+ font-family: "Droid Sans", sans-serif;
660
+ font-weight: bold;
661
+ }
662
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a {
663
+ color: #999999;
664
+ }
665
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a:hover {
666
+ color: black;
667
+ }
668
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation {
669
+ float: none;
670
+ clear: both;
671
+ overflow: hidden;
672
+ display: block;
673
+ margin: 0 0 10px;
674
+ padding: 0;
675
+ }
676
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading {
677
+ float: none;
678
+ clear: both;
679
+ overflow: hidden;
680
+ display: block;
681
+ margin: 0;
682
+ padding: 0;
683
+ }
684
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 {
685
+ display: block;
686
+ clear: none;
687
+ float: left;
688
+ width: auto;
689
+ margin: 0;
690
+ padding: 0;
691
+ line-height: 1.1em;
692
+ color: black;
693
+ }
694
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path {
695
+ padding-left: 10px;
696
+ }
697
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a {
698
+ color: black;
699
+ text-decoration: none;
700
+ }
701
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a:hover {
702
+ text-decoration: underline;
703
+ }
704
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.http_method a {
705
+ text-transform: uppercase;
706
+ text-decoration: none;
707
+ color: white;
708
+ display: inline-block;
709
+ width: 50px;
710
+ font-size: 0.7em;
711
+ text-align: center;
712
+ padding: 7px 0 4px;
713
+ -moz-border-radius: 2px;
714
+ -webkit-border-radius: 2px;
715
+ -o-border-radius: 2px;
716
+ -ms-border-radius: 2px;
717
+ -khtml-border-radius: 2px;
718
+ border-radius: 2px;
719
+ }
720
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span {
721
+ margin: 0;
722
+ padding: 0;
723
+ }
724
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options {
725
+ overflow: hidden;
726
+ padding: 0;
727
+ display: block;
728
+ clear: none;
729
+ float: right;
730
+ margin: 6px 10px 0 0;
731
+ }
732
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li {
733
+ float: left;
734
+ clear: none;
735
+ margin: 0;
736
+ padding: 2px 10px;
737
+ font-size: 0.9em;
738
+ }
739
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li a {
740
+ text-decoration: none;
741
+ }
742
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li.access {
743
+ color: black;
744
+ }
745
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content {
746
+ border-top: none;
747
+ padding: 10px;
748
+ -moz-border-radius-bottomleft: 6px;
749
+ -webkit-border-bottom-left-radius: 6px;
750
+ -o-border-bottom-left-radius: 6px;
751
+ -ms-border-bottom-left-radius: 6px;
752
+ -khtml-border-bottom-left-radius: 6px;
753
+ border-bottom-left-radius: 6px;
754
+ -moz-border-radius-bottomright: 6px;
755
+ -webkit-border-bottom-right-radius: 6px;
756
+ -o-border-bottom-right-radius: 6px;
757
+ -ms-border-bottom-right-radius: 6px;
758
+ -khtml-border-bottom-right-radius: 6px;
759
+ border-bottom-right-radius: 6px;
760
+ margin: 0 0 20px;
761
+ }
762
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content h4 {
763
+ font-size: 1.1em;
764
+ margin: 0;
765
+ padding: 15px 0 5px;
766
+ }
767
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header {
768
+ float: none;
769
+ clear: both;
770
+ overflow: hidden;
771
+ display: block;
772
+ }
773
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header a {
774
+ padding: 4px 0 0 10px;
775
+ display: inline-block;
776
+ font-size: 0.9em;
777
+ }
778
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header input.submit {
779
+ display: block;
780
+ clear: none;
781
+ float: left;
782
+ padding: 6px 8px;
783
+ }
784
+ .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 {
785
+ background-image: image-url("swaggard/throbber.gif");
786
+ width: 128px;
787
+ height: 16px;
788
+ display: block;
789
+ clear: none;
790
+ float: right;
791
+ }
792
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content form input[type='text'].error {
793
+ outline: 2px solid black;
794
+ outline-color: #cc0000;
795
+ }
796
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.response div.block pre {
797
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
798
+ padding: 10px;
799
+ font-size: 0.9em;
800
+ max-height: 400px;
801
+ overflow-y: auto;
802
+ }
803
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading {
804
+ background-color: #f9f2e9;
805
+ border: 1px solid #f0e0ca;
806
+ }
807
+ .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 {
808
+ background-color: #c5862b;
809
+ }
810
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li {
811
+ border-right: 1px solid #dddddd;
812
+ border-right-color: #f0e0ca;
813
+ color: #c5862b;
814
+ }
815
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a {
816
+ color: #c5862b;
817
+ }
818
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content {
819
+ background-color: #faf5ee;
820
+ border: 1px solid #f0e0ca;
821
+ }
822
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4 {
823
+ color: #c5862b;
824
+ }
825
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header a {
826
+ color: #dcb67f;
827
+ }
828
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading {
829
+ background-color: #fcffcd;
830
+ border: 1px solid black;
831
+ border-color: #ffd20f;
832
+ }
833
+ .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 {
834
+ text-transform: uppercase;
835
+ background-color: #ffd20f;
836
+ }
837
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li {
838
+ border-right: 1px solid #dddddd;
839
+ border-right-color: #ffd20f;
840
+ color: #ffd20f;
841
+ }
842
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li a {
843
+ color: #ffd20f;
844
+ }
845
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content {
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.content h4 {
851
+ color: #ffd20f;
852
+ }
853
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content div.sandbox_header a {
854
+ color: #6fc992;
855
+ }
856
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading {
857
+ background-color: #f5e8e8;
858
+ border: 1px solid #e8c6c7;
859
+ }
860
+ .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 {
861
+ text-transform: uppercase;
862
+ background-color: #a41e22;
863
+ }
864
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li {
865
+ border-right: 1px solid #dddddd;
866
+ border-right-color: #e8c6c7;
867
+ color: #a41e22;
868
+ }
869
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a {
870
+ color: #a41e22;
871
+ }
872
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
873
+ background-color: #f7eded;
874
+ border: 1px solid #e8c6c7;
875
+ }
876
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4 {
877
+ color: #a41e22;
878
+ }
879
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header a {
880
+ color: #c8787a;
881
+ }
882
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading {
883
+ background-color: #e7f6ec;
884
+ border: 1px solid #c3e8d1;
885
+ }
886
+ .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 {
887
+ background-color: #10a54a;
888
+ }
889
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li {
890
+ border-right: 1px solid #dddddd;
891
+ border-right-color: #c3e8d1;
892
+ color: #10a54a;
893
+ }
894
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a {
895
+ color: #10a54a;
896
+ }
897
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content {
898
+ background-color: #ebf7f0;
899
+ border: 1px solid #c3e8d1;
900
+ }
901
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4 {
902
+ color: #10a54a;
903
+ }
904
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header a {
905
+ color: #6fc992;
906
+ }
907
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading {
908
+ background-color: #FCE9E3;
909
+ border: 1px solid #F5D5C3;
910
+ }
911
+ .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 {
912
+ background-color: #D38042;
913
+ }
914
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li {
915
+ border-right: 1px solid #dddddd;
916
+ border-right-color: #f0cecb;
917
+ color: #D38042;
918
+ }
919
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a {
920
+ color: #D38042;
921
+ }
922
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content {
923
+ background-color: #faf0ef;
924
+ border: 1px solid #f0cecb;
925
+ }
926
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content h4 {
927
+ color: #D38042;
928
+ }
929
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header a {
930
+ color: #dcb67f;
931
+ }
932
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading {
933
+ background-color: #e7f0f7;
934
+ border: 1px solid #c3d9ec;
935
+ }
936
+ .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 {
937
+ background-color: #0f6ab4;
938
+ }
939
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li {
940
+ border-right: 1px solid #dddddd;
941
+ border-right-color: #c3d9ec;
942
+ color: #0f6ab4;
943
+ }
944
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a {
945
+ color: #0f6ab4;
946
+ }
947
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content {
948
+ background-color: #ebf3f9;
949
+ border: 1px solid #c3d9ec;
950
+ }
951
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4 {
952
+ color: #0f6ab4;
953
+ }
954
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header a {
955
+ color: #6fa5d2;
956
+ }
957
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading {
958
+ background-color: #e7f0f7;
959
+ border: 1px solid #c3d9ec;
960
+ }
961
+ .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 {
962
+ background-color: #0f6ab4;
963
+ }
964
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading ul.options li {
965
+ border-right: 1px solid #dddddd;
966
+ border-right-color: #c3d9ec;
967
+ color: #0f6ab4;
968
+ }
969
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading ul.options li a {
970
+ color: #0f6ab4;
971
+ }
972
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content {
973
+ background-color: #ebf3f9;
974
+ border: 1px solid #c3d9ec;
975
+ }
976
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content h4 {
977
+ color: #0f6ab4;
978
+ }
979
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content div.sandbox_header a {
980
+ color: #6fa5d2;
981
+ }
982
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content,
983
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content,
984
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content,
985
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content,
986
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content,
987
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
988
+ border-top: none;
989
+ }
990
+ .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,
991
+ .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,
992
+ .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,
993
+ .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,
994
+ .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,
995
+ .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,
996
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li.last,
997
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li.last,
998
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li.last,
999
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li.last,
1000
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li.last,
1001
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li.last {
1002
+ padding-right: 0;
1003
+ border-right: none;
1004
+ }
1005
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a:hover,
1006
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a:active,
1007
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a.active {
1008
+ text-decoration: underline;
1009
+ }
1010
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li:first-child,
1011
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li.first {
1012
+ padding-left: 0;
1013
+ }
1014
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations:first-child,
1015
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations.first {
1016
+ padding-left: 0;
1017
+ }
1018
+ .swagger-section .swagger-ui-wrap p#colophon {
1019
+ margin: 0 15px 40px 15px;
1020
+ padding: 10px 0;
1021
+ font-size: 0.8em;
1022
+ border-top: 1px solid #dddddd;
1023
+ font-family: "Droid Sans", sans-serif;
1024
+ color: #999999;
1025
+ font-style: italic;
1026
+ }
1027
+ .swagger-section .swagger-ui-wrap p#colophon a {
1028
+ text-decoration: none;
1029
+ color: #547f00;
1030
+ }
1031
+ .swagger-section .swagger-ui-wrap h3 {
1032
+ color: black;
1033
+ font-size: 1.1em;
1034
+ padding: 10px 0 10px 0;
1035
+ }
1036
+ .swagger-section .swagger-ui-wrap .markdown ol,
1037
+ .swagger-section .swagger-ui-wrap .markdown ul {
1038
+ font-family: "Droid Sans", sans-serif;
1039
+ margin: 5px 0 10px;
1040
+ padding: 0 0 0 18px;
1041
+ list-style-type: disc;
1042
+ }
1043
+ .swagger-section .swagger-ui-wrap form.form_box {
1044
+ background-color: #ebf3f9;
1045
+ border: 1px solid #c3d9ec;
1046
+ padding: 10px;
1047
+ }
1048
+ .swagger-section .swagger-ui-wrap form.form_box label {
1049
+ color: #0f6ab4 !important;
1050
+ }
1051
+ .swagger-section .swagger-ui-wrap form.form_box input[type=submit] {
1052
+ display: block;
1053
+ padding: 10px;
1054
+ }
1055
+ .swagger-section .swagger-ui-wrap form.form_box p.weak {
1056
+ font-size: 0.8em;
1057
+ }
1058
+ .swagger-section .swagger-ui-wrap form.form_box p {
1059
+ font-size: 0.9em;
1060
+ padding: 0 0 15px;
1061
+ color: #7e7b6d;
1062
+ }
1063
+ .swagger-section .swagger-ui-wrap form.form_box p a {
1064
+ color: #646257;
1065
+ }
1066
+ .swagger-section .swagger-ui-wrap form.form_box p strong {
1067
+ color: black;
1068
+ }
1069
+ .swagger-section .title {
1070
+ font-style: bold;
1071
+ }
1072
+ .swagger-section .secondary_form {
1073
+ display: none;
1074
+ }
1075
+ .swagger-section .main_image {
1076
+ display: block;
1077
+ margin-left: auto;
1078
+ margin-right: auto;
1079
+ }
1080
+ .swagger-section .oauth_body {
1081
+ margin-left: 100px;
1082
+ margin-right: 100px;
1083
+ }
1084
+ .swagger-section .oauth_submit {
1085
+ text-align: center;
1086
+ }
1087
+ .swagger-section .api-popup-dialog {
1088
+ z-index: 10000;
1089
+ position: absolute;
1090
+ width: 500px;
1091
+ background: #FFF;
1092
+ padding: 20px;
1093
+ border: 1px solid #ccc;
1094
+ border-radius: 5px;
1095
+ display: none;
1096
+ font-size: 13px;
1097
+ color: #777;
1098
+ }
1099
+ .swagger-section .api-popup-dialog .api-popup-title {
1100
+ font-size: 24px;
1101
+ padding: 10px 0;
1102
+ }
1103
+ .swagger-section .api-popup-dialog .api-popup-title {
1104
+ font-size: 24px;
1105
+ padding: 10px 0;
1106
+ }
1107
+ .swagger-section .api-popup-dialog p.error-msg {
1108
+ padding-left: 5px;
1109
+ padding-bottom: 5px;
1110
+ }
1111
+ .swagger-section .api-popup-dialog button.api-popup-authbtn {
1112
+ height: 30px;
1113
+ }
1114
+ .swagger-section .api-popup-dialog button.api-popup-cancel {
1115
+ height: 30px;
1116
+ }
1117
+ .swagger-section .api-popup-scopes {
1118
+ padding: 10px 20px;
1119
+ }
1120
+ .swagger-section .api-popup-scopes li {
1121
+ padding: 5px 0;
1122
+ line-height: 20px;
1123
+ }
1124
+ .swagger-section .api-popup-scopes .api-scope-desc {
1125
+ padding-left: 20px;
1126
+ font-style: italic;
1127
+ }
1128
+ .swagger-section .api-popup-scopes li input {
1129
+ position: relative;
1130
+ top: 2px;
1131
+ }
1132
+ .swagger-section .api-popup-actions {
1133
+ padding-top: 10px;
1134
+ }
1135
+ .swagger-section .access {
1136
+ float: right;
1137
+ }
1138
+ .swagger-section .auth {
1139
+ float: right;
1140
+ }
1141
+ .swagger-section #api_information_panel {
1142
+ position: absolute;
1143
+ background: #FFF;
1144
+ border: 1px solid #ccc;
1145
+ border-radius: 5px;
1146
+ display: none;
1147
+ font-size: 13px;
1148
+ max-width: 300px;
1149
+ line-height: 30px;
1150
+ color: black;
1151
+ padding: 5px;
1152
+ }
1153
+ .swagger-section #api_information_panel p .api-msg-enabled {
1154
+ color: green;
1155
+ }
1156
+ .swagger-section #api_information_panel p .api-msg-disabled {
1157
+ color: red;
1158
+ }
1159
+ .swagger-section .api-ic {
1160
+ height: 18px;
1161
+ vertical-align: middle;
1162
+ display: inline-block;
1163
+ background: image-url("swaggard/explorer_icons.png") no-repeat;
1164
+ }
1165
+ .swagger-section .ic-info {
1166
+ background-position: 0 0;
1167
+ width: 18px;
1168
+ margin-top: -7px;
1169
+ margin-left: 4px;
1170
+ }
1171
+ .swagger-section .ic-warning {
1172
+ background-position: -60px 0;
1173
+ width: 18px;
1174
+ margin-top: -7px;
1175
+ margin-left: 4px;
1176
+ }
1177
+ .swagger-section .ic-error {
1178
+ background-position: -30px 0;
1179
+ width: 18px;
1180
+ margin-top: -7px;
1181
+ margin-left: 4px;
1182
+ }
1183
+ .swagger-section .ic-off {
1184
+ background-position: -90px 0;
1185
+ width: 58px;
1186
+ margin-top: -4px;
1187
+ cursor: pointer;
1188
+ }
1189
+ .swagger-section .ic-on {
1190
+ background-position: -160px 0;
1191
+ width: 58px;
1192
+ margin-top: -4px;
1193
+ cursor: pointer;
1194
+ }
1195
+ .swagger-section #header {
1196
+ background-color: #89bf04;
1197
+ padding: 14px;
1198
+ }
1199
+ .swagger-section #header a#logo {
1200
+ font-size: 1.5em;
1201
+ font-weight: bold;
1202
+ text-decoration: none;
1203
+ background: transparent image-url("swaggard/logo_small.png") no-repeat left center;
1204
+ padding: 20px 0 20px 40px;
1205
+ color: white;
1206
+ }
1207
+ .swagger-section #header form#api_selector {
1208
+ display: block;
1209
+ clear: none;
1210
+ float: right;
1211
+ }
1212
+ .swagger-section #header form#api_selector .input {
1213
+ display: block;
1214
+ clear: none;
1215
+ float: left;
1216
+ margin: 0 10px 0 0;
1217
+ }
1218
+ .swagger-section #header form#api_selector .input input#input_apiKey {
1219
+ width: 200px;
1220
+ }
1221
+ .swagger-section #header form#api_selector .input input#input_baseUrl {
1222
+ width: 400px;
1223
+ }
1224
+ .swagger-section #header form#api_selector .input a#explore {
1225
+ display: block;
1226
+ text-decoration: none;
1227
+ font-weight: bold;
1228
+ padding: 6px 8px;
1229
+ font-size: 0.9em;
1230
+ color: white;
1231
+ background-color: #547f00;
1232
+ -moz-border-radius: 4px;
1233
+ -webkit-border-radius: 4px;
1234
+ -o-border-radius: 4px;
1235
+ -ms-border-radius: 4px;
1236
+ -khtml-border-radius: 4px;
1237
+ border-radius: 4px;
1238
+ }
1239
+ .swagger-section #header form#api_selector .input a#explore:hover {
1240
+ background-color: #547f00;
1241
+ }
1242
+ .swagger-section #header form#api_selector .input input {
1243
+ font-size: 0.9em;
1244
+ padding: 3px;
1245
+ margin: 0;
1246
+ }
1247
+ .swagger-section #content_message {
1248
+ margin: 10px 15px;
1249
+ font-style: italic;
1250
+ color: #999999;
1251
+ }
1252
+ .swagger-section #message-bar {
1253
+ min-height: 30px;
1254
+ text-align: center;
1255
+ padding-top: 10px;
1256
+ }